From ec021253966df2a765de5865606aaf8184f918ce Mon Sep 17 00:00:00 2001 From: "Carlos A. Iglesias" Date: Mon, 2 Jun 2025 16:04:57 +0300 Subject: [PATCH] Update 2_2_Read_Data.ipynb --- ml1/2_2_Read_Data.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ml1/2_2_Read_Data.ipynb b/ml1/2_2_Read_Data.ipynb index 6f4cf70..c9f227f 100644 --- a/ml1/2_2_Read_Data.ipynb +++ b/ml1/2_2_Read_Data.ipynb @@ -38,7 +38,7 @@ "\n", "Scikit-learn comes with some bundled [datasets](https://scikit-learn.org/stable/datasets.html): iris, digits, boston, etc.\n", "\n", - "In this notebook, we are going to use the Iris dataset." + "In this notebook, we will use the Iris dataset." ] }, { @@ -180,7 +180,7 @@ "metadata": {}, "outputs": [], "source": [ - "#Using numpy, I can print the dimensions (here we are working with 2D matrix)\n", + "#Using numpy, I can print the dimensions (here we are working with a 2D matrix)\n", "print(iris.data.ndim)" ] },