diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 69cbd48b..acc60370 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -22,7 +22,7 @@ If applicable, add screenshots to help explain your problem. **Desktop (please complete the following information):** - OS: [e.g. Ubuntu] - Python version [e.g. 3.8] - - Mambular Version [e.g. 0.1.2] + - DeepTabular Version [e.g. 1.6.0] **Additional context** Add any other context about the problem here. diff --git a/.github/workflows/pr-tests.yml b/.github/workflows/pr-tests.yml index c8b4f778..ba39542f 100644 --- a/.github/workflows/pr-tests.yml +++ b/.github/workflows/pr-tests.yml @@ -36,7 +36,13 @@ jobs: - name: Install Dependencies run: | python -m pip install --upgrade pip - poetry install --with dev + poetry install + pip install pytest + + - name: Install Package Locally + run: | + poetry build + pip install dist/*.whl # Install the built package to fix "No module named 'deeptabular'" - name: Run Unit Tests env: diff --git a/README.md b/README.md index fdea79a4..70651f57 100644 --- a/README.md +++ b/README.md @@ -2,24 +2,24 @@ -[![PyPI](https://img.shields.io/pypi/v/mambular)](https://pypi.org/project/mambular) -![PyPI - Downloads](https://img.shields.io/pypi/dm/mambular) -[![docs build](https://readthedocs.org/projects/mambular/badge/?version=latest)](https://mambular.readthedocs.io/en/latest/?badge=latest) -[![docs](https://img.shields.io/badge/docs-latest-blue)](https://mambular.readthedocs.io/en/latest/) -[![open issues](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat)](https://github.com/basf/mamba-tabular/issues) +[![PyPI](https://img.shields.io/pypi/v/deeptabular)](https://pypi.org/project/deeptabular) +![PyPI - Downloads](https://img.shields.io/pypi/dm/deeptabular) +[![docs build](https://readthedocs.org/projects/deeptabular/badge/?version=latest)](https://deeptabular.readthedocs.io/en/latest/?badge=latest) +[![docs](https://img.shields.io/badge/docs-latest-blue)](https://deeptabular.readthedocs.io/en/latest/) +[![open issues](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat)](https://github.com/OpenTabular/DeepTabular/issues) -[📘Documentation](https://mambular.readthedocs.io/en/latest/index.html) | -[🛠️Installation](https://mambular.readthedocs.io/en/latest/installation.html) | -[Models](https://mambular.readthedocs.io/en/latest/api/models/index.html) | -[🤔Report Issues](https://github.com/basf/mamba-tabular/issues) +[📘Documentation](https://deeptabular.readthedocs.io/en/latest/index.html) | +[🛠️Installation](https://deeptabular.readthedocs.io/en/latest/installation.html) | +[Models](https://deeptabular.readthedocs.io/en/latest/api/models/index.html) | +[🤔Report Issues](https://github.com/OpenTabular/DeepTabular/issues)
-

Mambular: Tabular Deep Learning Made Simple

+

DeepTabular: Tabular Deep Learning Made Simple

-Mambular is a Python library for tabular deep learning. It includes models that leverage the Mamba (State Space Model) architecture, as well as other popular models like TabTransformer, FTTransformer, TabM and tabular ResNets. Check out our paper `Mambular: A Sequential Model for Tabular Deep Learning`, available [here](https://arxiv.org/abs/2408.06291). Also check out our paper introducing [TabulaRNN](https://arxiv.org/pdf/2411.17207) and analyzing the efficiency of NLP inspired tabular models. +DeepTabular is a Python library for tabular deep learning. It includes models that leverage the Mamba (State Space Model) architecture, as well as other popular models like TabTransformer, FTTransformer, TabM and tabular ResNets. Check out our paper `Mambular: A Sequential Model for Tabular Deep Learning`, available [here](https://arxiv.org/abs/2408.06291). Also check out our paper introducing [TabulaRNN](https://arxiv.org/pdf/2411.17207) and analyzing the efficiency of NLP inspired tabular models.

⚡ What's New ⚡