Skip to content

Commit

Permalink
fix scale warning (#709)
Browse files Browse the repository at this point in the history
  • Loading branch information
pplonski committed Mar 4, 2024
1 parent 7399bbf commit 3e6c5b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/scripts/binary_classifier_Titanic.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
y = train["Survived"]

# automl = AutoML(mode="Compete") # default mode is Explain
automl = AutoML(algorithms=["Neural Network"], total_time_limit=120) # default mode is Explain
automl = AutoML(total_time_limit=120) # default mode is Explain

automl.fit(X, y)

Expand Down

0 comments on commit 3e6c5b6

Please # to comment.