Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request introduces the new
Tangosmodel to the Mambular library, along with updates to the documentation, versioning, and configuration files. The most important changes include adding theTangosmodel, updating the version number, and modifying thelightning_wrapper.pyandpretraining.pyfiles to use the new model.New Model Addition:
mambular/base_models/tangos.py: Added theTangosmodel, which is an MLP model with optional GLU activation, batch normalization, layer normalization, and dropout, including a penalty term for specialization and orthogonality.mambular/base_models/__init__.py: Included theTangosmodel in the module imports and__all__list.mambular/configs/tangos_config.py: Added configuration class for theTangosmodel with predefined hyperparameters.Documentation Updates:
README.md: Updated to include the newTangosmodel in the list of new models and added a description of the model. [1] [2]Version Update:
mambular/__version__.py: Incremented the version number from 1.3.0 to 1.3.1 to reflect the new changes.Code Refactoring:
mambular/base_models/utils/lightning_wrapper.py: Replaced instances ofbase_modelwithestimatorto accommodate the newTangosmodel. [1] [2] [3] [4] [5] [6] [7] [8] [9]mambular/base_models/utils/pretraining.py: Replaced instances ofbase_modelwithestimatorto reflect the new model structure. [1] [2] [3] [4]Configuration Updates:
mambular/configs/__init__.py: AddedDefaultTangosConfigto the module imports and__all__list.mambular/models/__init__.py: IncludedTangosClassifier,TangosLSS, andTangosRegressorin the module imports and__all__list.