Skip to content

Commit

Permalink
Update Part 1 - Introduction to Machine Learning with scikit-learn.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ajstensland authored Apr 2, 2019
1 parent 0966b31 commit 7445f39
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,8 @@ X_train, X_test, y_train, y_test = train_test_split(digits.data,
digits.target,
test_size=0.50,
random_state=42)
# Note: random_state=42 seeds the random value with 42, meaning that
# everyone that runs this code will have the same accuracy.
# Machine learning algorithms have a degree of randomness to them,
# Note: random_state=42 seeds the random value with 42, meaning that everyone that runs this code
# will have the same accuracy. Machine learning algorithms have a degree of randomness to them,
# which can be mitigated by using the same random seed.
# Disregard this if you don't know what that means.
```
Expand Down

0 comments on commit 7445f39

Please sign in to comment.