It seems the flattened output of self.conv2
and F.max_pool
seems to be [batch_size, 5184]
, while self.fc1
expects an input of [batch_size, 400]
.
Which input size are you using?
1 Like
It seems the flattened output of self.conv2
and F.max_pool
seems to be [batch_size, 5184]
, while self.fc1
expects an input of [batch_size, 400]
.
Which input size are you using?