Skip to content

Commit

Permalink
v0.6.8 (microsoft#247)
Browse files Browse the repository at this point in the history
  • Loading branch information
sonichi authored Oct 12, 2021
1 parent ddc1a63 commit fe65fa1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion flaml/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.6.7"
__version__ = "0.6.8"
4 changes: 2 additions & 2 deletions test/test_automl.py
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,7 @@ def test_regression(self):
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,
Expand Down Expand Up @@ -625,7 +625,7 @@ def test_parallel(self, hpo_method=None):
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,
Expand Down

0 comments on commit fe65fa1

Please sign in to comment.