You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, you should be able to reproduce the issue by copy pasting the following code.
python : 3.8
sktime : 0.8.1
from pycaret.time_series import *
from sktime.forecasting.model_selection import ExpandingWindowSplitter
from pycaret.datasets import get_data
data = get_data('airline')
my_custom_cv = ExpandingWindowSplitter(fh=12,initial_window=100 ,step_length=1)
s = setup(data, fold_strategy=my_custom_cv)
s.compare_models()
The text was updated successfully, but these errors were encountered:
Hi, you should be able to reproduce the issue by copy pasting the following code.
python : 3.8
sktime : 0.8.1
The text was updated successfully, but these errors were encountered: