Skip to content

Commit

Permalink
Merge pull request udacity#54 from chvlyl/patch-2
Browse files Browse the repository at this point in the history
you're network -> your network
  • Loading branch information
mcleonard authored Apr 3, 2017
2 parents 5613211 + 863d51b commit 72268b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sentiment-rnn/Sentiment RNN.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -754,7 +754,7 @@
"drop = tf.contrib.rnn.DropoutWrapper(cell, output_keep_prob=keep_prob)\n",
"```\n",
"\n",
"Most of the time, you're network will have better performance with more layers. That's sort of the magic of deep learning, adding more layers allows the network to learn really complex relationships. Again, there is a simple way to create multiple layers of LSTM cells with `tf.contrib.rnn.MultiRNNCell`:\n",
"Most of the time, your network will have better performance with more layers. That's sort of the magic of deep learning, adding more layers allows the network to learn really complex relationships. Again, there is a simple way to create multiple layers of LSTM cells with `tf.contrib.rnn.MultiRNNCell`:\n",
"\n",
"```\n",
"cell = tf.contrib.rnn.MultiRNNCell([drop] * lstm_layers)\n",
Expand Down

0 comments on commit 72268b0

Please sign in to comment.