locuslab/TCN

Using TCN as an Encoder

jlim13 opened this issue · 2 comments

How can we use the TCN as an encoder? How can we use the network to produce a single vector representation of the input like the context vector for RNNs? Do we take the last timestep of the output like here?

o = self.linear(y1[:, :, -1])

Yup, I'd say that's a natural way of doing this.

cool. thanks for the prompt response!