Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Nit: fix a typo on matplotlib accuracy plot. #44

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix a typo on matplotlib accuracy plot.
  • Loading branch information
Amit Patankar committed Mar 14, 2018
commit 535c2c6df75ef42908d77bf430dbf9ddde23eb6f
2 changes: 1 addition & 1 deletion 3.5-classifying-movie-reviews.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -856,7 +856,7 @@
"plt.plot(epochs, val_acc, 'b', label='Validation acc')\n",
"plt.title('Training and validation accuracy')\n",
"plt.xlabel('Epochs')\n",
"plt.ylabel('Loss')\n",
"plt.ylabel('Accuracy')\n",
"plt.legend()\n",
"\n",
"plt.show()"
Expand Down