This commit is contained in:
Chi Wang 2021-10-12 15:08:40 -07:00 committed by GitHub
parent ddc1a63a76
commit fe65fa143d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View File

@ -111,7 +111,7 @@ automl_settings = {
"time_budget": 10, # in seconds
"metric": 'r2',
"task": 'regression',
"log_file_name": "test/boston.log",
"log_file_name": "test/california.log",
}
X_train, y_train = fetch_california_housing(return_X_y=True)
# Train with labeled input data

View File

@ -1 +1 @@
__version__ = "0.6.7"
__version__ = "0.6.8"

View File

@ -503,7 +503,7 @@ class TestAutoML(unittest.TestCase):
automl_settings = {
"time_budget": 2,
"task": "regression",
"log_file_name": "test/boston.log",
"log_file_name": "test/california.log",
"log_training_metric": True,
"n_jobs": 1,
"model_history": True,
@ -625,7 +625,7 @@ class TestAutoML(unittest.TestCase):
automl_settings = {
"time_budget": 10,
"task": "regression",
"log_file_name": "test/boston.log",
"log_file_name": "test/california.log",
"log_type": "all",
"n_jobs": 1,
"n_concurrent_trials": 2,