Skip to content

Commit

Permalink
Update test_probabilistic_models.py
Browse files Browse the repository at this point in the history
  • Loading branch information
cnhwl committed Dec 9, 2024
1 parent a25f513 commit a966b2c
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions darts/tests/models/forecasting/test_probabilistic_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
LightGBMModel,
LinearRegressionModel,
NotImportedModule,
StatsForecastAutoTBATS,
XGBModel,
)
from darts.tests.conftest import TORCH_AVAILABLE, tfm_kwargs
Expand Down Expand Up @@ -92,6 +93,18 @@
0.04,
0.04,
),
(
StatsForecastAutoTBATS,
{
"season_length": 1,
"use_trend": False,
"use_damped_trend": False,
"use_boxcox": True,
"use_arma_errors": False,
},
0.04,
0.04,
),
]

xgb_test_params = {
Expand Down

0 comments on commit a966b2c

Please sign in to comment.