Skip to content

Commit 99dde4e

Browse files
committed
time budget fix
1 parent dd4a936 commit 99dde4e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/operators/forecast/test_datasets.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ def test_load_datasets(model, dataset_name):
165165
if model == "autots":
166166
yaml_i["spec"]["model_kwargs"] = {"model_list": "superfast"}
167167
if model == "automlx":
168-
yaml_i["spec"]["model_kwargs"] = {"time_budget": 1}
168+
yaml_i["spec"]["model_kwargs"] = {"time_budget": 50}
169169

170170
forecast_yaml_filename = f"{tmpdirname}/forecast.yaml"
171171
# with open(f"{tmpdirname}/forecast.yaml", "w") as f:
@@ -218,7 +218,7 @@ def run_operator(
218218
if model == "autots":
219219
yaml_i["spec"]["model_kwargs"] = {"model_list": "superfast"}
220220
if model == "automlx":
221-
yaml_i["spec"]["model_kwargs"] = {"time_budget": 1}
221+
yaml_i["spec"]["model_kwargs"] = {"time_budget": 50}
222222

223223
forecast_yaml_filename = f"{tmpdirname}/forecast.yaml"
224224
with open(f"{tmpdirname}/forecast.yaml", "w") as f:

0 commit comments

Comments
 (0)