diff options
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..02d4f18 --- /dev/null +++ b/README.md @@ -0,0 +1,23 @@ +# Iris + +Different ML Techniques on the Iris dataset. For more information, see [this](https://en.wikipedia.org/wiki/Iris_flower_data_set) Wikipedia article. + +## Data + +### About the data + +Iris dataset is a multivariate data set with 150 samples and 4 features. The data set is named after the iris plant. The data set is loaded from [this](https://archive.ics.uci.edu/ml/machine-learning-databases/iris/iris.data) link. It comes pre-installed with the Python package `sklearn`. + + +### Features + +The data set contains the following features: + +| Feature | Description | +| --- | --- | +| sepal length in cm | the length of the sepals | +| sepal width in cm | the width of the sepals | +| petal length in cm | the length of the petals | +| petal width in cm | the width of the petals | + + |
