Skip to content

Commit e1e16a8

Browse files
authored
Merge pull request #111314 from Aniththa/patch-44
Update how-to-configure-auto-train.md
2 parents 122d397 + e1f9ffe commit e1e16a8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/machine-learning/how-to-configure-auto-train.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -451,7 +451,7 @@ To understand the scaling/normalization and algorithm/hyperparameter values for
451451
[('RobustScaler', RobustScaler(copy=True, quantile_range=[10, 90], with_centering=True, with_scaling=True)), ('LogisticRegression', LogisticRegression(C=0.18420699693267145, class_weight='balanced', dual=False, fit_intercept=True, intercept_scaling=1, max_iter=100, multi_class='multinomial', n_jobs=1, penalty='l2', random_state=None, solver='newton-cg', tol=0.0001, verbose=0, warm_start=False))
452452
```
453453

454-
To get more details, use this helper function shown in [this sample notebook](https://github.com/Azure/MachineLearningNotebooks/blob/master/how-to-use-azureml/automated-machine-learning/classification/auto-ml-classification.ipynb).
454+
To get more details, use this helper function:
455455

456456
```python
457457
from pprint import pprint
@@ -471,7 +471,7 @@ def print_model(model, prefix=""):
471471
print()
472472

473473

474-
print_model(fitted_model)
474+
print_model(model)
475475
```
476476

477477
The following sample output is for a pipeline using a specific algorithm (LogisticRegression with RobustScalar, in this case).

0 commit comments

Comments
 (0)