Skip to content

Commit

Permalink
Merge pull request #176 from basf/bug-fix
Browse files Browse the repository at this point in the history
Bug fix
  • Loading branch information
AnFreTh authored Dec 4, 2024
2 parents 46df5e7 + c5eedc9 commit af1ea08
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 4 deletions.
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__ = "1.0.1"
__version__ = "1.0.2"
1 change: 0 additions & 1 deletion mambular/models/sklearn_base_classifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,6 @@ def build_model(
X = pd.DataFrame(X)
if isinstance(y, pd.Series):
y = y.values
if X_val is not None:
if X_val is not None:
if not isinstance(X_val, pd.DataFrame):
X_val = pd.DataFrame(X_val)
Expand Down
1 change: 0 additions & 1 deletion mambular/models/sklearn_base_lss.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,6 @@ def build_model(
X = pd.DataFrame(X)
if isinstance(y, pd.Series):
y = y.values
if X_val is not None:
if X_val is not None:
if not isinstance(X_val, pd.DataFrame):
X_val = pd.DataFrame(X_val)
Expand Down
1 change: 0 additions & 1 deletion mambular/models/sklearn_base_regressor.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,6 @@ def build_model(
X = pd.DataFrame(X)
if isinstance(y, pd.Series):
y = y.values
if X_val is not None:
if X_val is not None:
if not isinstance(X_val, pd.DataFrame):
X_val = pd.DataFrame(X_val)
Expand Down

0 comments on commit af1ea08

Please sign in to comment.