From 41d3bdea75357ee5105cb93e05a36e022f1d90e9 Mon Sep 17 00:00:00 2001 From: Oscar Araque Date: Mon, 5 Sep 2022 18:20:29 +0200 Subject: [PATCH] minor typos in ml1 --- 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 13dbee3..dc61966 100644 --- a/ml1/2_2_Read_Data.ipynb +++ b/ml1/2_2_Read_Data.ipynb @@ -54,7 +54,7 @@ "source": [ "The [Iris flower dataset](https://en.wikipedia.org/wiki/Iris_flower_data_set), available at [UCI dataset repository](https://archive.ics.uci.edu/ml/datasets/Iris), is a classic dataset for classification.\n", "\n", - "The dataset consists of 50 samples from each of three species of Iris (Iris setosa, Iris virginica and Iris versicolor). Four features were measured from each sample: the length and the width of the sepals and petals, in centimetres. Based on the combination of these four features.\n", + "The dataset consists of 50 samples from each of three species of Iris (Iris setosa, Iris virginica and Iris versicolor). Four features were measured from each sample: the length and the width of the sepals and petals, in centimetres. Based on the combination of these four features, a machine learning model will learn to differentiate the species of Iris.\n", "\n", "![Iris](files/images/iris-dataset.jpg)" ] @@ -63,7 +63,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "In ordert to read the dataset, we import the datasets bundle and then load the Iris dataset. " + "In order to read the dataset, we import the datasets bundle and then load the Iris dataset. " ] }, {