mirror of https://github.com/microsoft/autogen.git
v0.6.8 (#247)
This commit is contained in:
parent
ddc1a63a76
commit
fe65fa143d
|
@ -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
|
||||
|
|
|
@ -1 +1 @@
|
|||
__version__ = "0.6.7"
|
||||
__version__ = "0.6.8"
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue