From 3f69c661ee2638e43c4f11af5cae2fc697a07933 Mon Sep 17 00:00:00 2001 From: Marcus Fey Date: Sat, 16 Nov 2024 20:12:52 +0100 Subject: [PATCH] add missing "use" in text --- ml/cc/exercises/linear_regression_taxi.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ml/cc/exercises/linear_regression_taxi.ipynb b/ml/cc/exercises/linear_regression_taxi.ipynb index 9e81039..09c5955 100644 --- a/ml/cc/exercises/linear_regression_taxi.ipynb +++ b/ml/cc/exercises/linear_regression_taxi.ipynb @@ -852,8 +852,8 @@ "FARE = 2.25 * TRIP_MILES + 0.12 * TRIP_MINUTES + 3.25\n", "\n", "Typically with machine learning problems you would not know the 'correct'\n", - "formula, but in this case you can this knowledge to evaluate your model. Take a\n", - "look at your model output (the weights and bias) and determine how well it\n", + "formula, but in this case you can use this knowledge to evaluate your model. Take\n", + "a look at your model output (the weights and bias) and determine how well it\n", "matches the ground truth fare calculation. You should find that the model is\n", "roughly close to this formula.\n", "'''\n",