-
Hello there,
so if i use contextlen=512 and pred_len=64 with numtimeseries=100; my additional question would be is there a way to setup the timestep so the model knows the timegaps between datapoints if its 10min one tick or 5min |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Okay so it might be possible the timestep setup in the train.py changing the freq param
|
Beta Was this translation helpful? Give feedback.
-
@CoCoNuTeK I'm not sure I get your question. The dataset is a list of dictionaries: each dictionary has a
You can store it in some attribute, but it will not be used anywhere by the model, neither at training nor prediction time. What you see here is just putting some fake frequency information to be able to use gluonts' |
Beta Was this translation helpful? Give feedback.
@CoCoNuTeK I'm not sure I get your question. The dataset is a list of dictionaries: each dictionary has a
"start"
attribute (of typenp.datetime64
) and a"target"
attribute (anp.ndarray
object with a single axis).You can store it in some attribute, but it will not be used anywhere by the model, neither at training nor prediction time. What you see here is just putting some fake frequency information to be able to use gluonts'
FileDataset
class, but it's not used.