From 0b678a5b55000863625bc9de2557ec61569fe1a0 Mon Sep 17 00:00:00 2001 From: Derrick Nyaga Date: Mon, 2 Jan 2023 12:39:32 +0300 Subject: [PATCH] Update Linear_Regression_with_tf_keras_Intermediates.ipynb # test_size = 0.20: 20% of the data will go for test set and 70% of the data will go for train set\n" this what was on the code but it should 80% of the data will go for training --- .../Linear_Regression_with_tf_keras_Intermediates.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Linear_Regression/Linear_Regression_with_tf_keras_Intermediates.ipynb b/Linear_Regression/Linear_Regression_with_tf_keras_Intermediates.ipynb index b104e6b..e05240c 100644 --- a/Linear_Regression/Linear_Regression_with_tf_keras_Intermediates.ipynb +++ b/Linear_Regression/Linear_Regression_with_tf_keras_Intermediates.ipynb @@ -398,7 +398,7 @@ "# X_test: independent/input feature data for testing the model; will be used to predict the output values\n", "# y_test: original dependent/output values of X_test; We will compare this values with our predicted values to check the performance of our built model.\n", " \n", - "# test_size = 0.20: 20% of the data will go for test set and 70% of the data will go for train set\n", + "# test_size = 0.20: 20% of the data will go for test set and 80% of the data will go for train set\n", "# random_state = 42: this will fix the split i.e. there will be same split for each time you run the code" ], "execution_count": null, @@ -2818,4 +2818,4 @@ ] } ] -} \ No newline at end of file +}