ManuelMC commited on
Commit
b377c58
·
verified ·
1 Parent(s): ec67f5e

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +68 -0
README.md ADDED
@@ -0,0 +1,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc0-1.0
3
+ ---
4
+
5
+ # Dataset Card for Iris Dataset
6
+
7
+ ## Dataset Summary
8
+
9
+ The Iris dataset is a classic benchmark dataset in machine learning, introduced by Ronald Fisher in 1936. It contains measurements of 150 iris flowers from three species: *Iris setosa*, *Iris versicolor*, and *Iris virginica*. Each sample is described by four features: sepal length, sepal width, petal length, and petal width, all measured in centimeters. The dataset is widely used for classification tasks and data visualization practices due to its simplicity and balanced structure.
10
+
11
+ ## Supported Tasks and Leaderboards
12
+
13
+ The Iris dataset supports the following tasks:
14
+ - **Classification**: Predict the species of an iris flower based on its features.
15
+ - **Visualization**: Explore relationships between features using scatter plots and other methods.
16
+
17
+ No active leaderboard is associated with this dataset.
18
+
19
+ ## Languages
20
+
21
+ The dataset does not contain textual data; it consists entirely of numerical measurements and categorical labels.
22
+
23
+ ## Dataset Structure
24
+
25
+ ### Data Instances
26
+
27
+ Each instance represents an iris flower with the following attributes:
28
+ - Sepal length (float)
29
+ - Sepal width (float)
30
+ - Petal length (float)
31
+ - Petal width (float)
32
+ - Species (categorical: 0 = *Iris setosa*, 1 = *Iris versicolor*, 2 = *Iris virginica*)
33
+
34
+ ### Data Splits
35
+
36
+ The dataset consists of 150 samples with no predefined splits. Users can create custom splits for training, validation, and testing.
37
+
38
+ ## Dataset Creation
39
+
40
+ The dataset was originally collected by Edgar Anderson and introduced by Ronald Fisher to demonstrate linear discriminant analysis. It has since become a standard benchmark for testing classification algorithms.
41
+
42
+ ## Considerations for Using the Data
43
+
44
+ ### Social Impact of Dataset
45
+
46
+ The Iris dataset is primarily used for educational purposes and algorithm benchmarking. It does not contain sensitive or personal information.
47
+
48
+ ### Limitations
49
+
50
+ The dataset is small in size (150 samples) and may not represent real-world complexities in classification tasks. Additionally, its simplicity may limit its applicability to advanced machine learning models.
51
+
52
+ ## Additional Information
53
+
54
+ ### Homepage
55
+
56
+ Not applicable.
57
+
58
+ ### Repository
59
+
60
+ Available through [scikit-learn](https://scikit-learn.org/stable/auto_examples/datasets/plot_iris_dataset.html).
61
+
62
+ ### Paper
63
+
64
+ Fisher, R.A. (1936). "The use of multiple measurements in taxonomic problems."
65
+
66
+ ### Citation
67
+
68
+ If you use this dataset, please cite Fisher's original paper: