Skip to content

Commit

Permalink
docs: Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
HanzTantiangco authored Jul 20, 2021
1 parent 7ecaecc commit 3b429ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sentiment-rnn/Sentiment_RNN_Exercise.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@
"\n",
"We'll create an [LSTM](https://pytorch.org/docs/stable/nn.html#lstm) to use in our recurrent network, which takes in an input_size, a hidden_dim, a number of layers, a dropout probability (for dropout between multiple layers), and a batch_first parameter.\n",
"\n",
"Most of the time, you're network will have better performance with more layers; between 2-3. Adding more layers allows the network to learn really complex relationships. \n",
"Most of the time, your network will have better performance with more layers; between 2-3. Adding more layers allows the network to learn really complex relationships. \n",
"\n",
"> **Exercise:** Complete the `__init__`, `forward`, and `init_hidden` functions for the SentimentRNN model class.\n",
"\n",
Expand Down

0 comments on commit 3b429ea

Please sign in to comment.