Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: "3.12"

- name: Install Poetry
run: pipx install poetry
Expand All @@ -49,7 +49,7 @@ jobs:
uses: actions/cache@v4
with:
path: .venv
key: venv-docs-${{ runner.os }}-3.10-${{ hashFiles('poetry.lock') }}
key: venv-docs-${{ runner.os }}-3.12-${{ hashFiles('poetry.lock') }}

- name: Install package and docs dependencies
run: poetry install --with docs
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div align="center">
<img src="./docs/images/logo/deeptab-v1.png" width="520"/>
<img src="./docs/images/logo/deeptab-v1.png" width="550"/>

[![PyPI](https://img.shields.io/pypi/v/deeptab)](https://pypi.org/project/deeptab)
![PyPI - Downloads](https://img.shields.io/pypi/dm/deeptab)
Expand All @@ -15,7 +15,7 @@
</div>

<div style="text-align: center;">
<h1>deeptab: Tabular Deep Learning Made Simple</h1>
<h1>DeepTab: Tabular Deep Learning Made Simple</h1>
</div>

deeptab 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.
Expand Down
Loading
Loading