Skip to content

Commit

Permalink
update autopytorch version number and the example file
Browse files Browse the repository at this point in the history
  • Loading branch information
ravinkohli committed Aug 23, 2022
1 parent 2801c7a commit 6b5bcda
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion autoPyTorch/__version__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Version information."""

# The following line *must* be the last in the module, exactly as formatted:
__version__ = "0.2"
__version__ = "0.2.1"
5 changes: 3 additions & 2 deletions examples/20_basics/example_tabular_regression.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
optimize_metric='r2',
total_walltime_limit=300,
func_eval_time_limit_secs=50,
dataset_name="Boston"
)

############################################################################
Expand All @@ -72,8 +73,8 @@
X_test=X_test,
y_test=y_test,
dataset_name="Boston",
total_walltime_limit=1000,
run_time_limit_secs=200
total_walltime_limit=500,
run_time_limit_secs=50
# you can change the resampling strategy to
# for example, CrossValTypes.k_fold_cross_validation
# to fit k fold models and have a voting classifier
Expand Down

0 comments on commit 6b5bcda

Please sign in to comment.