We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Trying to fit an AutoMFLES/FLES model and I get a
TypeError: clip() takes at most 4 arguments (5 given)
when cap_outliers method is called in fit()
cap_outliers
fit()
statsforecast==1.7.6 pandas==2.2.2
from statsforecast.models import MFLES y = pd.Series(range(0, 12*7)) m = MFLES( season_length = [48], ) m.fit(y=y)
Medium: It is a significant difficulty but I can work around it.
The text was updated successfully, but these errors were encountered:
Hey. If you use the model isolated like that you have to provide a numpy array, not a pandas series.
Sorry, something went wrong.
OMG, the type hinting is so clear...
No branches or pull requests
What happened + What you expected to happen
Trying to fit an AutoMFLES/FLES model and I get a
when
cap_outliers
method is called infit()
Versions / Dependencies
statsforecast==1.7.6
pandas==2.2.2
Reproduction script
Issue Severity
Medium: It is a significant difficulty but I can work around it.
The text was updated successfully, but these errors were encountered: