Replies: 3 comments
-
This issue might be solvable through interpolation. There are various types of interpolations (such as linear and polynomial) that can handle different scenarios for filling out missing values. I used linear interpolation in a paper I wrote about forecasting stock movements with ARIMA models, as the method I used could not handle missing values. I hope this is helpful. -Mads |
Beta Was this translation helpful? Give feedback.
-
For nan value case, currently I use fbprophet( forward predict and fill value), but this case is a bit complicated and only learn pattern form single stock. And model need learn the missing pattern across multiple stocks, and make the whole pipeline much more heavy.
The ideal way I thought was fillna on model training and determine timeseries pattern from every certain window, didn't see similar research. ( Maybe my though is wrong, I am not reseacher with many paper reading ) Maybe it is way to create a embedding for each category ( to mock cluasting seasonality or trending accross stocks) train with many for loop with hirerachy structure, too heavy again. |
Beta Was this translation helpful? Give feedback.
-
I'll move this issue to discussion since there doesn't seem to be any specific issue related to the tsai library but more a general discussion on how to approach a certain type of tasks. |
Beta Was this translation helpful? Give feedback.
-
Hello,
I am facing some challenges in predicting time-series classification for stock data.
Some are resolvable, though I'm not sure is there any better solution.
After thinking of these problem, I'm confused about how to get started..
Beta Was this translation helpful? Give feedback.
All reactions