VariationalRecurrentNeuralNetwork icon indicating copy to clipboard operation
VariationalRecurrentNeuralNetwork copied to clipboard

The dim of the data

Open RuifMaxx opened this issue 4 years ago • 0 comments

When load the data from the dataloader, the dim is transposed: data = Variable(data.squeeze().transpose(0, 1)).to(device) So in model.py line 82

 for t in range(x.size(0)):

	phi_x_t = self.phi_x(x[t])

the size of phi_x_t is ( batch_size, h_dim ), is that correct ?

RuifMaxx avatar Dec 23 '20 12:12 RuifMaxx