-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #173 from basf/doc-fix
adjust docs to new version
- Loading branch information
Showing
9 changed files
with
588 additions
and
142 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
Configurations | ||
=============== | ||
|
||
.. autoclass:: mambular.configs.DefaultMambularConfig | ||
:members: | ||
:undoc-members: | ||
|
||
.. autoclass:: mambular.configs.DefaultFTTransformerConfig | ||
:members: | ||
:undoc-members: | ||
|
||
.. autoclass:: mambular.configs.DefaultResNetConfig | ||
:members: | ||
:undoc-members: | ||
|
||
.. autoclass:: mambular.configs.DefaultMLPConfig | ||
:members: | ||
:undoc-members: | ||
|
||
.. autoclass:: mambular.configs.DefaultTabTransformerConfig | ||
:members: | ||
:undoc-members: | ||
|
||
.. autoclass:: mambular.configs.DefaultMambaTabConfig | ||
:members: | ||
:undoc-members: | ||
|
||
.. autoclass:: mambular.configs.DefaultTabulaRNNConfig | ||
:members: | ||
:undoc-members: | ||
|
||
.. autoclass:: mambular.configs.DefaultMambAttentionConfig | ||
:members: | ||
:undoc-members: | ||
|
||
.. autoclass:: mambular.configs.DefaultNDTFConfig | ||
:members: | ||
:undoc-members: | ||
|
||
.. autoclass:: mambular.configs.DefaultNODEConfig | ||
:members: | ||
:undoc-members: | ||
|
||
.. autoclass:: mambular.configs.DefaultTabMConfig | ||
:members: | ||
:undoc-members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
.. -*- mode: rst -*- | ||
.. currentmodule:: mambular.configs | ||
|
||
Configurations | ||
============== | ||
|
||
This module provides default configurations for Mambular models. Each configuration is implemented as a dataclass, offering a structured way to define model-specific hyperparameters. | ||
|
||
Mambular | ||
-------- | ||
======================================= ======================================================================================================= | ||
Dataclass Description | ||
======================================= ======================================================================================================= | ||
:class:`DefaultMambularConfig` Default configuration for the Mambular model. | ||
======================================= ======================================================================================================= | ||
|
||
FTTransformer | ||
------------- | ||
======================================= ======================================================================================================= | ||
Dataclass Description | ||
======================================= ======================================================================================================= | ||
:class:`DefaultFTTransformerConfig` Default configuration for the FTTransformer model. | ||
======================================= ======================================================================================================= | ||
|
||
ResNet | ||
------ | ||
======================================= ======================================================================================================= | ||
Dataclass Description | ||
======================================= ======================================================================================================= | ||
:class:`DefaultResNetConfig` Default configuration for the ResNet model. | ||
======================================= ======================================================================================================= | ||
|
||
MLP | ||
--- | ||
======================================= ======================================================================================================= | ||
Dataclass Description | ||
======================================= ======================================================================================================= | ||
:class:`DefaultMLPConfig` Default configuration for the MLP model. | ||
======================================= ======================================================================================================= | ||
|
||
TabTransformer | ||
-------------- | ||
======================================= ======================================================================================================= | ||
Dataclass Description | ||
======================================= ======================================================================================================= | ||
:class:`DefaultTabTransformerConfig` Default configuration for the TabTransformer model. | ||
======================================= ======================================================================================================= | ||
|
||
MambaTab | ||
-------- | ||
======================================= ======================================================================================================= | ||
Dataclass Description | ||
======================================= ======================================================================================================= | ||
:class:`DefaultMambaTabConfig` Default configuration for the MambaTab model. | ||
======================================= ======================================================================================================= | ||
|
||
RNN | ||
--- | ||
======================================= ======================================================================================================= | ||
Dataclass Description | ||
======================================= ======================================================================================================= | ||
:class:`DefaultTabulaRNNConfig` Default configuration for RNN models (LSTM, GRU). | ||
======================================= ======================================================================================================= | ||
|
||
MambAttention | ||
------------- | ||
======================================= ======================================================================================================= | ||
Dataclass Description | ||
======================================= ======================================================================================================= | ||
:class:`DefaultMambAttentionConfig` Default configuration for the MambAttention model. | ||
======================================= ======================================================================================================= | ||
|
||
NDTF | ||
---- | ||
======================================= ======================================================================================================= | ||
Dataclass Description | ||
======================================= ======================================================================================================= | ||
:class:`DefaultNDTFConfig` Default configuration for the Neural Decision Tree Forest (NDTF) model. | ||
======================================= ======================================================================================================= | ||
|
||
NODE | ||
---- | ||
======================================= ======================================================================================================= | ||
Dataclass Description | ||
======================================= ======================================================================================================= | ||
:class:`DefaultNODEConfig` Default configuration for the Neural Oblivious Decision Ensembles (NODE) model. | ||
======================================= ======================================================================================================= | ||
|
||
TabM | ||
---- | ||
======================================= ======================================================================================================= | ||
Dataclass Description | ||
======================================= ======================================================================================================= | ||
:class:`DefaultTabMConfig` Default configuration for the TabM model (Batch-Ensembling MLP). | ||
======================================= ======================================================================================================= | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
|
||
Configurations |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.