We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8123bc6 + 0af108a commit 1f31d3bCopy full SHA for 1f31d3b
articles/machine-learning/how-to-configure-auto-train.md
@@ -149,7 +149,7 @@ Some examples include:
149
task='classification',
150
primary_metric='AUC_weighted',
151
experiment_timeout_minutes=30,
152
- blacklist_models='XGBoostClassifier',
+ blacklist_models=['XGBoostClassifier'],
153
training_data=train_data,
154
label_column_name=label,
155
n_cross_validations=2)
@@ -160,7 +160,7 @@ Some examples include:
160
automl_regressor = AutoMLConfig(
161
task='regression',
162
experiment_timeout_minutes=60,
163
- whitelist_models='kNN regressor'
+ whitelist_models=['kNN regressor'],
164
primary_metric='r2_score',
165
166
0 commit comments