Skip to content

Commit

Permalink
Merge pull request #170 from basf/resolved-develop
Browse files Browse the repository at this point in the history
Resolved develop
  • Loading branch information
AnFreTh authored Dec 4, 2024
2 parents d127835 + 872404c commit 7e22659
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docs/requirements_docs.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ sphinx-book-theme==1.1.2
pandoc==2.3
sphinx-rtd-theme==2.0.0
readthedocs-sphinx-ext==2.2.5
lxml-html-clean==0.1.1
lxml-html-clean==0.4.0
pydata-sphinx-theme==0.15.2
1 change: 1 addition & 0 deletions mambular/models/sklearn_base_classifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,7 @@ 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: 1 addition & 0 deletions mambular/models/sklearn_base_lss.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,7 @@ 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: 1 addition & 0 deletions mambular/models/sklearn_base_regressor.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,7 @@ 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 7e22659

Please sign in to comment.