Name | deeptlf JSON |
Version |
0.3.0
JSON |
| download |
home_page | None |
Summary | Deep Tabular Learning Framework |
upload_time | 2024-10-29 16:40:52 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.7 |
license | MIT License Copyright (c) 2024 Vadim Borisov Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
keywords |
deep-learning
machine-learning
neural-networks
tabular-data
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# DeepTLF: A Framework for Enhanced Deep Learning on Tabular Data
![DeepTLF Pipeline](pipeline.png)
## Overview
**DeepTLF** significantly outperforms traditional Deep Neural Networks (DNNs) in handling tabular data. Using our novel TreeDrivenEncoder, we transform complex, heterogeneous data into a format highly compatible with DNNs. This enables a 19.6% average performance increase compared to conventional DNNs.
## Installation
You can install DeepTLF directly from PyPI:
```bash
pip install deeptlf
```
## Quick Start
Seamlessly integrate DeepTLF into your workflow through its scikit-learn-compatible API:
```python
from deeptlf import DeepTFL
# Initialize and train model
dtlf_model = DeepTFL(n_est=23, max_depth=3, drop=0.23, n_layers=4, task='class')
dtlf_model.fit(X_train, y_train)
# Make predictions
dtlf_y_hat = dtlf_model.predict(X_test)
```
## Features
- Transforms heterogeneous data into DNN-friendly format
- Supports multimodal learning
- Adheres to the scikit-learn API for effortless integration
- Features advanced options like custom layers, dropout rates, and more
## Citation
To cite DeepTLF in your work:
```bib
@article{borisov2022deeptlf,
title={DeepTLF: robust deep neural networks for heterogeneous tabular data},
author={Borisov, Vadim and Broelemann, Klaus and Kasneci, Enkelejda and Kasneci, Gjergji},
journal={International Journal of Data Science and Analytics},
pages={1--16},
year={2022},
publisher={Springer}
}
Raw data
{
"_id": null,
"home_page": null,
"name": "deeptlf",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.7",
"maintainer_email": null,
"keywords": "deep-learning, machine-learning, neural-networks, tabular-data",
"author": null,
"author_email": "Vadim Borisov <vadim.borisov@uni-tuebingen.de>",
"download_url": "https://files.pythonhosted.org/packages/96/ea/4a4b4b79977dad7cb360de190efa4ad65f412d8d2bfa84d02dd9b627e10f/deeptlf-0.3.0.tar.gz",
"platform": null,
"description": "# DeepTLF: A Framework for Enhanced Deep Learning on Tabular Data\n\n![DeepTLF Pipeline](pipeline.png)\n\n## Overview\n\n**DeepTLF** significantly outperforms traditional Deep Neural Networks (DNNs) in handling tabular data. Using our novel TreeDrivenEncoder, we transform complex, heterogeneous data into a format highly compatible with DNNs. This enables a 19.6% average performance increase compared to conventional DNNs.\n\n## Installation\n\nYou can install DeepTLF directly from PyPI:\n\n```bash\npip install deeptlf\n```\n\n## Quick Start\n\nSeamlessly integrate DeepTLF into your workflow through its scikit-learn-compatible API:\n\n```python\nfrom deeptlf import DeepTFL\n\n# Initialize and train model\ndtlf_model = DeepTFL(n_est=23, max_depth=3, drop=0.23, n_layers=4, task='class')\ndtlf_model.fit(X_train, y_train)\n\n# Make predictions\ndtlf_y_hat = dtlf_model.predict(X_test)\n```\n\n## Features\n- Transforms heterogeneous data into DNN-friendly format\n- Supports multimodal learning\n- Adheres to the scikit-learn API for effortless integration\n- Features advanced options like custom layers, dropout rates, and more\n\n\n## Citation\nTo cite DeepTLF in your work:\n```bib\n@article{borisov2022deeptlf,\n title={DeepTLF: robust deep neural networks for heterogeneous tabular data},\n author={Borisov, Vadim and Broelemann, Klaus and Kasneci, Enkelejda and Kasneci, Gjergji},\n journal={International Journal of Data Science and Analytics},\n pages={1--16},\n year={2022},\n publisher={Springer}\n}\n",
"bugtrack_url": null,
"license": "MIT License Copyright (c) 2024 Vadim Borisov Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.",
"summary": "Deep Tabular Learning Framework",
"version": "0.3.0",
"project_urls": {
"Homepage": "https://github.com/unnir/deeptlf"
},
"split_keywords": [
"deep-learning",
" machine-learning",
" neural-networks",
" tabular-data"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "469e2bcd6063afd16482f0eb1a85d3324d758aca2ef679701e61a4dbcf1f52c8",
"md5": "14638896947a302adba30505e4225266",
"sha256": "563be06f2964d02b0ca11240ba14c6022260e7656b7eeab0ca5995cc43e179e5"
},
"downloads": -1,
"filename": "deeptlf-0.3.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "14638896947a302adba30505e4225266",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.7",
"size": 3337,
"upload_time": "2024-10-29T16:40:50",
"upload_time_iso_8601": "2024-10-29T16:40:50.704935Z",
"url": "https://files.pythonhosted.org/packages/46/9e/2bcd6063afd16482f0eb1a85d3324d758aca2ef679701e61a4dbcf1f52c8/deeptlf-0.3.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "96ea4a4b4b79977dad7cb360de190efa4ad65f412d8d2bfa84d02dd9b627e10f",
"md5": "fae4ee8123d72ccf62ff3159357e1105",
"sha256": "597f65948095d3dc48f971a272bf703bd944eee60407625c734886361bd00047"
},
"downloads": -1,
"filename": "deeptlf-0.3.0.tar.gz",
"has_sig": false,
"md5_digest": "fae4ee8123d72ccf62ff3159357e1105",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.7",
"size": 6104,
"upload_time": "2024-10-29T16:40:52",
"upload_time_iso_8601": "2024-10-29T16:40:52.093812Z",
"url": "https://files.pythonhosted.org/packages/96/ea/4a4b4b79977dad7cb360de190efa4ad65f412d8d2bfa84d02dd9b627e10f/deeptlf-0.3.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-10-29 16:40:52",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "unnir",
"github_project": "deeptlf",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"lcname": "deeptlf"
}