Closed k-pine closed 3 years ago
Yes, thanks for the information and sorry for missing the question. The current implementation assume the input_dim equals to the output dimension, and you can self._labels to have output_dim to accommodate the new scenario.
I am implementing this algorithm for another scenario where I have a different number of input features (12) and output features (2). I was running into the error:
I believe it can be fixed by changing
input_dim
in line 39 ofdcrnn_model.py
tooutput_dim
(see code excerpt below). Everywhere else in the code the labels seem to have the output dimensions.