aegarciaherrera commited on
Commit
9029fc8
·
verified ·
1 Parent(s): 878e40a

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +77 -0
README.md ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ annotations_creators:
3
+ - expert-generated
4
+ language_creators:
5
+ - found
6
+ language:
7
+ - en
8
+ license:
9
+ - cc0-1.0
10
+ multilinguality:
11
+ - monolingual
12
+ pretty_name: Iris
13
+ size_categories:
14
+ - n<1K
15
+ source_datasets:
16
+ - original
17
+ task_categories:
18
+ - tabular-classification
19
+ task_ids:
20
+ - multi-class-classification
21
+ ---
22
+
23
+ # Dataset Card for "iris"
24
+
25
+ ## Dataset Description
26
+
27
+ - **Dataset Name**: Iris
28
+ - **Dataset Type**: Tabular
29
+ - **Source**: UCI Machine Learning Repository
30
+ - **Languages**: English (feature labels)
31
+ - **License**: Public Domain (freely usable)
32
+
33
+ ### Dataset Summary
34
+
35
+ The Iris dataset is one of the most classic datasets in machine learning, often used for classification and clustering tasks. It contains 150 samples of iris flowers, each described by four features: sepal length, sepal width, petal length, and petal width. The task is to classify the samples into one of three species: *Iris setosa*, *Iris versicolor*, or *Iris virginica*.
36
+
37
+ This dataset is especially useful for:
38
+ - Supervised learning (classification)
39
+ - Unsupervised learning (clustering)
40
+ - Model explainability techniques
41
+ - Feature selection and dimensionality reduction
42
+
43
+ ### Supported Tasks and Leaderboards
44
+
45
+ - **Classification**: Predict the species of iris based on the four numerical features.
46
+ - **Clustering**: Unsupervised grouping of samples into natural clusters.
47
+
48
+ ### Languages
49
+
50
+ - The feature and label names are in English.
51
+
52
+ ## Dataset Structure
53
+
54
+ ### Data Fields
55
+
56
+ | Feature | Type | Description |
57
+ |----------------|---------|-----------------------------------------|
58
+ | sepal_length | float32 | Sepal length in centimeters |
59
+ | sepal_width | float32 | Sepal width in centimeters |
60
+ | petal_length | float32 | Petal length in centimeters |
61
+ | petal_width | float32 | Petal width in centimeters |
62
+ | label | class label (str) | Species of the flower (`setosa`, `versicolor`, `virginica`) |
63
+
64
+ ### Data Splits
65
+
66
+ There are no predefined splits, but you can randomly split the dataset for training and evaluation (e.g., 80/20 or 70/30).
67
+
68
+ ### Example Row
69
+
70
+ ```json
71
+ {
72
+ "sepal_length": 5.1,
73
+ "sepal_width": 3.5,
74
+ "petal_length": 1.4,
75
+ "petal_width": 0.2,
76
+ "label": "setosa"
77
+ }