Update Task-Oriented-AutoML.md

Fix Typo for issue 443
This commit is contained in:
vvijayalakshmi21 2022-02-03 12:22:43 +05:30 committed by Chi Wang
parent ba5d4d19f0
commit 6d7c2e3e9b

View File

@ -373,7 +373,7 @@ The best model can be obtained by the `model` property of an `AutoML` instance.
```python
automl.fit(X_train, y_train, task="regression")
print(automl.mdoel)
print(automl.model)
# <flaml.model.LGBMEstimator object at 0x7f9b502c4550>
```