From 7445f391e59d0daa984638f2831356fc3de38b32 Mon Sep 17 00:00:00 2001 From: AJ Stensland Date: Tue, 2 Apr 2019 05:53:55 +0000 Subject: [PATCH] Update Part 1 - Introduction to Machine Learning with scikit-learn.md --- ...1 - Introduction to Machine Learning with scikit-learn.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Part 1 - Introduction to Machine Learning with scikit-learn.md b/Part 1 - Introduction to Machine Learning with scikit-learn.md index ac14fd3..01325a9 100644 --- a/Part 1 - Introduction to Machine Learning with scikit-learn.md +++ b/Part 1 - Introduction to Machine Learning with scikit-learn.md @@ -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. ```