This is my first post. So i’m sorry if my question was already answered.
Analysing the nupic code for the example of the cpu, the script retrieves cpu info periodically and makes an append of that timestamp and that value and makes a prediction on that event. The score and input values are then appended to the previous scored events. My question is… Is this scoring being made assuming always the same initial training? or is this score built through the chain of events previously scored… In other words is this scored event now be used on the next scoring event?
This is true. Whether csv or stream the model learns online, accumulating a memory and making predictions based on the current input and the state of the accumulated memory.
To be clear, each row of data you send into the model must have a timestamp. That is where the time is derived, not from the time of the data being processed.