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
When using Prophet with sktime, it was detected that the parameter k has a single dimension when the timeseries is constant, otherwise has two dimensions, which could be an unexpected behaviour.
Code to reproduce:
importpandasaspdfromsktime.forecasting.fbprophetimportProphety=pd.DataFrame(index=pd.period_range(start="2022-01", periods=18, freq="Q"),
data={"value": 0})
# By removing the comment from the line below# the error disappears#y.iloc[-1] = 1forecaster=Prophet(freq="Q").fit(y)
forecaster.get_fitted_params()
When using Prophet with sktime, it was detected that the parameter
k
has a single dimension when the timeseries is constant, otherwise has two dimensions, which could be an unexpected behaviour.Code to reproduce:
Related issue sktime/sktime#6982
The text was updated successfully, but these errors were encountered: