Skip to content

Commit

Permalink
Remove others' shit from my code
Browse files Browse the repository at this point in the history
  • Loading branch information
Atcold committed Apr 16, 2019
1 parent d0d928a commit 2a2485f
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion 11-VAE.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,6 @@
"code = torch.Tensor(N, 20).to(device)\n",
"for i in range(N):\n",
" code[i] = i / (N - 1) * mu[B].data + (1 - i / (N - 1) ) * mu[A].data\n",
"code = torch.tensor(code, requires_grad=True)\n",
"sample = model.decoder(code)\n",
"display_images(None, sample, N // 4, count=True)"
]
Expand Down

0 comments on commit 2a2485f

Please sign in to comment.