Consistent California (#245)

This commit is contained in:
Christoph Deil 2021-10-09 16:52:07 +02:00 committed by GitHub
parent f48ca2618f
commit 948f688742
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 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

@ -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,