Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

retrain model #965

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions flaml/automl/automl.py
Original file line number Diff line number Diff line change
Expand Up @@ -2876,3 +2876,12 @@ def _select_estimator(self, estimator_list):
q += inv[i] / s
if p < q:
return estimator_list[i]

def retrain(self, X_train, y_train, config=None):
if config is None:
config = self.best_config

automl = AutoML()
automl.fit(X_train, y_train, **config)

return automl
32 changes: 32 additions & 0 deletions test/automl/test_classification.py
Original file line number Diff line number Diff line change
Expand Up @@ -408,6 +408,38 @@ def test_sparse_matrix_lr(self):
print(automl_experiment.best_iteration)
print(automl_experiment.best_estimator)

def test_retrain(self):
from flaml.automl.data import load_openml_dataset

X_train, X_test, y_train, y_test = load_openml_dataset(
dataset_id=187, data_dir="./"
)

automl_settings = {
"task": "classification",
"estimator_list": ["xgboost"],
# "max_iter": 1,
}

automl_settings["starting_points"] = {
"xgboost": {
"n_estimators": 4,
"max_leaves": 4,
"min_child_weight": 0.26208115308159446,
"learning_rate": 0.25912534572860507,
"subsample": 0.9266743941610592,
"colsample_bylevel": 1.0,
"colsample_bytree": 1.0,
"reg_alpha": 0.0013933617380144255,
"reg_lambda": 0.18096917948292954,
"FLAML_sample_size": 20000,
},
}

automl = AutoML()
automl2 = automl.retrain(X_train, y_train, automl_settings)
print(automl2.model.model)


if __name__ == "__main__":
test = TestClassification()
Expand Down