Skip to content

Commit

Permalink
Fix typo in chapter 3: ch03.py and ch03.ipynb
Browse files Browse the repository at this point in the history
  • Loading branch information
mrtnbrst committed Apr 6, 2020
1 parent e9a26d7 commit f692741
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ch03/ch03.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@
"source": [
"**Note**\n",
"\n",
"- You can replace `Perceptron(n_iter, ...)` by `Perceptron(max_iter, ...)` in scikit-learn >= 0.19. The `n_iter` parameter is used here deriberately, because some people still use scikit-learn 0.18."
"- You can replace `Perceptron(n_iter, ...)` by `Perceptron(max_iter, ...)` in scikit-learn >= 0.19. The `n_iter` parameter is used here deliberately, because some people still use scikit-learn 0.18."
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion ch03/ch03.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@

# **Note**
#
# - You can replace `Perceptron(n_iter, ...)` by `Perceptron(max_iter, ...)` in scikit-learn >= 0.19. The `n_iter` parameter is used here deriberately, because some people still use scikit-learn 0.18.
# - You can replace `Perceptron(n_iter, ...)` by `Perceptron(max_iter, ...)` in scikit-learn >= 0.19. The `n_iter` parameter is used here deliberately, because some people still use scikit-learn 0.18.



Expand Down

0 comments on commit f692741

Please sign in to comment.