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
It's critical issue in my opinion.
I created the arima web worker. So for each data set i create new worker. and I terminate old one. I removed the console.logs too.
But for the optimization to not create and compile arima for each data set it should be resolved.
The text was updated successfully, but these errors were encountered:
How to reproduce ?
`const ARIMA = require('arima')
for(let i of Array(50)) {
const ts = [81, 123, 175, 174, 130, 134, 150, 211, 240, 222, 159, 219, 109, 128, 155, 149, 98, 116, 93, 136, 201, 194, 195, 308];
}`
Like you see i create the new model each time. And the data set does not change.
i got two times correct result :
After third time i got the wrong one
And fourth is completly broken:
It's critical issue in my opinion.
I created the arima web worker. So for each data set i create new worker. and I terminate old one. I removed the console.logs too.
But for the optimization to not create and compile arima for each data set it should be resolved.
The text was updated successfully, but these errors were encountered: