Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MAE & RMSE give the exact same results when using custom fold_strategy in pycaret.time_series #211

Open
NasreddineD opened this issue Jan 1, 2023 · 0 comments

Comments

@NasreddineD
Copy link

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()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant