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
I tried to train/fit ARIMA & Auto ARIMA model with sin pattern datasets but it gives an invalid prediction, even in the first data point is invalid/not meaningful at all. can I get the solution or someone helps me out? I truly need this fix.
const model = new ARIMA({
auto: true,
verbose: true,
});
model.train(trainDatasets);
const [preds, errors] = model.predict(testLen);
below is the plotted data.
The text was updated successfully, but these errors were encountered:
muazhari
changed the title
Wrong/invalid prediction
Need fix for broken prediction
Mar 8, 2021
It's issue with auto mode. The api in library is created based on sarimmax function. There are few bugs with the parameters estimation. For your usage you can use the arima with p:2, d:1, q:2 parameters. It should produce the meaningfull result if no, add the seasonal s parameter. You need to count it by your own. It could be 16 or 8. This is the only one solution for you currently.
I tried to train/fit ARIMA & Auto ARIMA model with sin pattern datasets but it gives an invalid prediction, even in the first data point is invalid/not meaningful at all. can I get the solution or someone helps me out? I truly need this fix.
below is the plotted data.
The text was updated successfully, but these errors were encountered: