Let's say I am during swarming for prediction steps 1, 5, 10 (based on the
hot gym example). When swarm for prediction steps 1,5,10 is done, is there
a file(s) that tells me the prediction models for all these steps are
generated? Also, currently, you use the original data file to do swarm and
then run prediction analysis with the same file. For example, I have a
file with data from 11 am to 12 pm, with data points per minute. I use
that file to generate swarm model, and then run prediction analysis with
the same file in my run.py, which will stop at 12 pm even if I am using the
10 step ahead prediction model. If I want to predict the values from 12:01
to 12:10, I will need to create a file with those additional time slots to
be used by run.py, ie 12:01, 12:02, 12:03 ...12:10. So do I put 0 as the
value for those additional time slots? Or am I missing something here?
Thanks.