Hello!
I've been working with the _TCNModule of the library, and only noticed now that the size of the output is the following shape:
x = x.view(batch_size, self.input_chunk_length, self.target_size, self.nr_params)
This strikes me as a bit odd; why would we want to produce target predictions for the past? In that case the model ought to just output the targets it has access to directly.
Best regards,
Daniel
Hello!
I've been working with the _TCNModule of the library, and only noticed now that the size of the output is the following shape:
x = x.view(batch_size, self.input_chunk_length, self.target_size, self.nr_params)This strikes me as a bit odd; why would we want to produce target predictions for the past? In that case the model ought to just output the targets it has access to directly.
Best regards,
Daniel