mirror of
https://github.com/microsoft/autogen.git
synced 2025-08-09 09:12:41 +00:00
Update README.md
This commit is contained in:
parent
0fb3e04fc3
commit
bea2ba8135
@ -9,7 +9,7 @@ hyperparameter optimization and learner selection method invented by
|
||||
Microsoft Research.
|
||||
FLAML is easy to use:
|
||||
|
||||
1. With three lines of code, you can start using this economical and fast
|
||||
* With three lines of code, you can start using this economical and fast
|
||||
AutoML engine as a scikit-learn style estimator.
|
||||
```python
|
||||
from flaml import AutoML
|
||||
@ -17,13 +17,13 @@ automl = AutoML()
|
||||
automl.fit(X_train, y_train, task="classification")
|
||||
```
|
||||
|
||||
2. You can restrict the learners and use FLAML as a fast hyperparameter tuning
|
||||
* You can restrict the learners and use FLAML as a fast hyperparameter tuning
|
||||
tool for XGBoost, LightGBM, Random Forest etc. or a customized learner.
|
||||
```python
|
||||
automl.fit(X_train, y_train, task="classification", estimator_list=["lgbm"])
|
||||
```
|
||||
|
||||
3. You can embed FLAML in self-tuning software for just-in-time tuning with
|
||||
* You can embed FLAML in self-tuning software for just-in-time tuning with
|
||||
low latency & resource consumption.
|
||||
```python
|
||||
automl.fit(X_train, y_train, task="regression", time_budget=60)
|
||||
|
Loading…
x
Reference in New Issue
Block a user