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 found the answer myself.
For temporal prediction it is something like
R1 = reconstruct(train1[1:end-1], em)
R2 = reconstruct(train2[1:end-1], em)
R3 = reconstruct(train3[1:end-1], em)
R_combined = vcat(R1, R2, R3)
tree = KDTree(R_combined)
train_combined = vcat(train1, train2[1+τmax:end], train3[1+τmax:end])
prediction_starter = "this needs to be passed explicitly or it is taken from the end of train3"
If we prepare the training sets in this way, we do not need to change the prediction algorithm.
We need a way to combine multiple time series of one system
with different initial conditions into a single training set.
How could this best be done?
Want to back this issue? Post a bounty on it! We accept bounties via Bountysource.
The text was updated successfully, but these errors were encountered: