Skip to content

Commit

Permalink
Merge pull request #56 from basf/version_fix
Browse files Browse the repository at this point in the history
Version fix
  • Loading branch information
AnFreTh authored Jul 1, 2024
2 parents 420ee6b + 3f42104 commit 150fd17
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions docs/api/utils/Preprocessor.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
mambular.utils
==============

.. autoclass:: mambular.preprocessing.Preprocessor
:members:
2 changes: 1 addition & 1 deletion mambular/__version__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Version information."""

# The following line *must* be the last in the module, exactly as formatted:
__version__ = "0.1.4"
__version__ = "0.1.5"
6 changes: 3 additions & 3 deletions mambular/models/resnet.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ class ResNetRegressor(SklearnBaseRegressor):
Examples
--------
>>> from mambular.models import ResNetRegressor
>>> model = ResNetRegressor(d_model=64, n_layers=8)
>>> model = ResNetRegressor()
>>> model.fit(X_train, y_train)
>>> preds = model.predict(X_test)
>>> model.evaluate(X_test, y_test)
Expand Down Expand Up @@ -165,7 +165,7 @@ class ResNetClassifier(SklearnBaseClassifier):
Examples
--------
>>> from mambular.models import ResNetClassifier
>>> model = ResNetClassifier(d_model=64, n_layers=8)
>>> model = ResNetClassifier()
>>> model.fit(X_train, y_train)
>>> preds = model.predict(X_test)
>>> model.evaluate(X_test, y_test)
Expand Down Expand Up @@ -253,7 +253,7 @@ class ResNetLSS(SklearnBaseLSS):
Examples
--------
>>> from mambular.models import ResNetLSS
>>> model = ResNetLSS(d_model=64, n_layers=8)
>>> model = ResNetLSS()
>>> model.fit(X_train, y_train, family="normal")
>>> preds = model.predict(X_test)
>>> model.evaluate(X_test, y_test)
Expand Down

0 comments on commit 150fd17

Please sign in to comment.