Skip to content

Commit

Permalink
PyTorch Implementation Added
Browse files Browse the repository at this point in the history
  • Loading branch information
myunusseker committed Oct 19, 2020
1 parent 0136a4f commit 0c95f39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CNMP_PyTorch.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@
" \n",
" # Encoder takes observations which are (X,Y) tuples and produces latent representations for each of them\n",
" self.encoder = nn.Sequential(\n",
" nn.Linear(d_x+d_x,128),nn.ReLU(),\n",
" nn.Linear(d_x+d_y,128),nn.ReLU(),\n",
" nn.Linear(128,128),nn.ReLU(),\n",
" nn.Linear(128,128)\n",
" )\n",
Expand Down

0 comments on commit 0c95f39

Please sign in to comment.