Rules on setting num_feat_*
for models
#3104
Unanswered
Drewniacki
asked this question in
Q&A
Replies: 1 comment
-
After some investigation I understood, that model uses I have a question however. Also another question still remains - why is there no requirement to pass number of dynamic categorical features? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
What is the rule on setting
num_feat_dynamic_real
,num_feat_static_real
andnum_feat_static_cat
(+cardinality
) when defining a model? Is it required to define it every time I want to create model with some external features? Or would model automatically read it from the dataset?I am creating training and testing datasets via
gluonts.dataset.common.ListDataset
class:Do I then need to also pass
num_feat_dynamic_real = k
when creating the model? What happens if I don't do that - does model disregard my dynamic features completely?If I have to set
num_feat_dynamic_real
,num_feat_static_real
andnum_feat_static_cat
, why is there no requirement to pass number of dynamic categorical features?Thanks for your help!
Beta Was this translation helpful? Give feedback.
All reactions