Use of rtdl package for multiple target variables. #43
-
Hi , Can we use rtdl package for multiple target variables (in a vector form) ? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 5 replies
-
Hi, yes you can, Does this help? |
Beta Was this translation helpful? Give feedback.
-
Hi, as per our discussion I tried to predict 3 target variables (made it NumPy 2D array) from 134 predictors variables but I m getting the following error: - ===============================================================================================
|
Beta Was this translation helpful? Give feedback.
-
It worked. |
Beta Was this translation helpful? Give feedback.
Hi, yes you can,
rtdl
only provides PyTorch modules and does not impose any restrictions on the target. You can use the tutorial as a starting point: you will need to make targets 2-dimensional vectors instead of 1-dimensional. It is also possible to adjust the training loss and metrics if needed.Does this help?