Skip to content

Commit 6b5bcda

Browse files
committed
update autopytorch version number and the example file
1 parent 2801c7a commit 6b5bcda

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

autoPyTorch/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
"""Version information."""
22

33
# The following line *must* be the last in the module, exactly as formatted:
4-
__version__ = "0.2"
4+
__version__ = "0.2.1"

examples/20_basics/example_tabular_regression.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
optimize_metric='r2',
5151
total_walltime_limit=300,
5252
func_eval_time_limit_secs=50,
53+
dataset_name="Boston"
5354
)
5455

5556
############################################################################
@@ -72,8 +73,8 @@
7273
X_test=X_test,
7374
y_test=y_test,
7475
dataset_name="Boston",
75-
total_walltime_limit=1000,
76-
run_time_limit_secs=200
76+
total_walltime_limit=500,
77+
run_time_limit_secs=50
7778
# you can change the resampling strategy to
7879
# for example, CrossValTypes.k_fold_cross_validation
7980
# to fit k fold models and have a voting classifier

0 commit comments

Comments
 (0)