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
Thanks for the library. I was wondering if I could get some insight into what these hyperparameters "are"? I've downloaded the dataset and played around with it setting breakpoints, but the names are confusing me.
I'm guessing that output_time_horizon is the length of the prediction? E.g if output_time_horizon == 1, output a scalar, if output_time_horizon == 2 output a vector of length 2?
temporal stride
Given some input timeseries of [1,2,3,4,5,6, 7] with stride 2 and size 3
T1 = [1,2,3]
T2 = [3,4,5]
?
temporal_frames
Is this the window size as mentioned above?
The text was updated successfully, but these errors were encountered:
Hey there!
Thanks for the library. I was wondering if I could get some insight into what these hyperparameters "are"? I've downloaded the dataset and played around with it setting breakpoints, but the names are confusing me.
input_time_window
I'm not sure what this is....
output_time_horizon
I'm guessing that
output_time_horizon
is the length of the prediction? E.g ifoutput_time_horizon
== 1, output a scalar, ifoutput_time_horizon
== 2 output a vector of length 2?temporal stride
Given some input timeseries of
[1,2,3,4,5,6, 7]
with stride 2 and size 3T1 = [1,2,3]
T2 = [3,4,5]
?
temporal_frames
Is this the window size as mentioned above?
The text was updated successfully, but these errors were encountered: