Skip to content

Commit 879d768

Browse files
Add Iris to TOC/README
1 parent 54c14bd commit 879d768

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ Hi there, and welcome to the `extra-keras-datasets` module! This extension to th
2323
* [SVHN-Normal](#svhn-normal)
2424
* [SVHN-Extra](#svhn-extra)
2525
* [STL-10](#stl-10)
26+
* [Iris](#iris)
2627
- [Contributors and other references](#contributors-and-other-references)
2728
- [License](#license)
2829

@@ -167,6 +168,20 @@ from extra-keras-datasets import stl10
167168

168169
---
169170

171+
### Iris
172+
This is perhaps the best known database to be found in the pattern recognition literature. Fisher's paper is a classic in the field and is referenced frequently to this day. (See Duda & Hart, for example.) The data set contains 3 classes of 50 instances each, where each class refers to a type of iris plant. One class is linearly separable from the other 2; the latter are NOT linearly separable from each other.
173+
174+
Predicted attribute: class of iris plant.
175+
176+
```
177+
from extra-keras-datasets import iris
178+
(input_train, target_train), (input_test, target_test) = iris.load_data(test_split=0.2)
179+
```
180+
181+
<a href="./assets/iris.png"><img src="./assets/iris.png" width="100%" style="border: 3px solid #f6f8fa;" /></a>
182+
183+
---
184+
170185
## Contributors and other references
171186
* **EMNIST dataset:**
172187
* Cohen, G., Afshar, S., Tapson, J., & van Schaik, A. (2017). EMNIST: an extension of MNIST to handwritten letters. Retrieved from http://arxiv.org/abs/1702.05373

assets/iris.png

38.9 KB
Loading

0 commit comments

Comments
 (0)