Skip to content

Commit c216ef0

Browse files
committed
[fix] Change the total runtime for single config in the example
Since the training sometimes does not finish in time, I increased the total runtime for the training so that we can accomodate the training in the given amount of time.
1 parent 92d5c86 commit c216ef0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/40_advanced/example_single_configuration.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@
6666
pipeline, run_info, run_value, dataset = estimator.fit_pipeline(dataset=dataset,
6767
configuration=configuration,
6868
budget_type='epochs',
69-
budget=10,
70-
run_time_limit_secs=100
69+
budget=5,
70+
run_time_limit_secs=75
7171
)
7272

7373
# The fit_pipeline command also returns a named tuple with the pipeline constraints

0 commit comments

Comments
 (0)