Skip to content

Commit

Permalink
0.6.3 a38
Browse files Browse the repository at this point in the history
  • Loading branch information
winedarksea committed Nov 27, 2023
1 parent 3ca0453 commit 06c05fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions autots/models/sklearn.py
Original file line number Diff line number Diff line change
Expand Up @@ -649,7 +649,7 @@ def retrieve_classifier(
'RadiusNeighbors': 0.05,
'MultioutputGPR': 0.0001,
}
gpu = ['Transformer', 'KerasRNN']
gpu = ['Transformer', 'KerasRNN', 'MLP'] # or more accurately, no dnn
gradient_boosting = {
'xgboost': 0.09,
'HistGradientBoost': 0.03,
Expand Down Expand Up @@ -777,7 +777,7 @@ def generate_regressor_params(
model_dict = {method: sklearn_model_dict[method]}
elif model_dict is None:
model_dict = sklearn_model_dict
# used in Cassandra
# used in Cassandra to remove slowest models
if method == "no_gpu":
model_dict = {x: y for (x, y) in model_dict.items() if x not in gpu}
model_list = list(model_dict.keys())
Expand Down

0 comments on commit 06c05fe

Please sign in to comment.