Skip to content

Commit

Permalink
Update neural_network.ipynb (aymericdamien#361)
Browse files Browse the repository at this point in the history
Add the missing fully connected layer 2 in the RNN example
  • Loading branch information
Dragon-Yu authored May 16, 2020
1 parent 39d9d0e commit 2cf9bfd
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@
" # Set forward pass.\n",
" def call(self, x, is_training=False):\n",
" x = self.fc1(x)\n",
" x = self.fc2(x)\n",
" x = self.out(x)\n",
" if not is_training:\n",
" # tf cross entropy expect logits without softmax, so only\n",
Expand Down

0 comments on commit 2cf9bfd

Please sign in to comment.