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

[DOC] ExponentialSmoothing default method change from L-BFGS-B to SLSQP #6186

Merged
merged 2 commits into from Mar 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 9 additions & 0 deletions .all-contributorsrc
Expand Up @@ -2695,6 +2695,15 @@
"contributions": [
"doc"
]
},
{
"login": "manuel-munoz-aguirre",
"name": "Manuel Muñoz Aguirre",
"avatar_url": "https://avatars.githubusercontent.com/u/5576458?v=4",
"profile": "https://github.com/manuel-munoz-aguirre",
"contributions": [
"doc"
]
}
]
}
2 changes: 1 addition & 1 deletion sktime/forecasting/exp_smoothing.py
Expand Up @@ -70,7 +70,7 @@ class ExponentialSmoothing(_StatsModelsAdapter):
starting values are determined using a combination of grid search
and reasonable values based on the initial values of the data. See
the notes for the structure of the model parameters.
method : str, default "L-BFGS-B"
method : str, default "SLSQP"
The minimizer used. Valid options are "L-BFGS-B" , "TNC",
"SLSQP" (default), "Powell", "trust-constr", "basinhopping" (also
"bh") and "least_squares" (also "ls"). basinhopping tries multiple
Expand Down