Skip to content

Commit

Permalink
u
Browse files Browse the repository at this point in the history
  • Loading branch information
chriscremer committed Sep 7, 2017
1 parent 6f5dbe8 commit d7921a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions VAE/pytorch_cifar/vae.py
Original file line number Diff line number Diff line change
Expand Up @@ -673,9 +673,9 @@ def decode(self, z):


z = F.relu(self.deconv1(z))
print z.size()
# print z.size()
z = self.conv2(z)
print z.size()
# print z.size()

# z = nn.Upsample(size=[3,32,32])(z)

Expand Down

0 comments on commit d7921a7

Please sign in to comment.