Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -44,6 +44,30 @@ This dataset is intentionally provided as a **single training split** containing
|
|
| 44 |
You are responsible for creating appropriate validation and test splits using the provided training data. We recommend using 70-80% for training, 10-15% for validation, and 10-15% for testing, depending on your requirements.
|
| 45 |
|
| 46 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 47 |
|
| 48 |
# <span style="font-size: 1.5em; font-weight: bold;">Loading the Dataset with Hugging Face 🤗</span>
|
| 49 |
This dataset is in COCO format and can be easily loaded using the <u>datasets library</u> distributed by HuggingFace.
|
|
@@ -101,17 +125,6 @@ coco_dataset = CocoDetection(
|
|
| 101 |
```
|
| 102 |
|
| 103 |
|
| 104 |
-
# <span style="font-size: 1.5em; font-weight: bold;">Key features</span>
|
| 105 |
-
- 72,317 images of close-up eyes, people's faces, and real-life scenes.
|
| 106 |
-
- All bounding boxes have been **completely re-annotated manually** with **Roboflow** to ensure maximum accuracy.
|
| 107 |
-
- Annotations provided in **ready-to-use COCO format** for easy integration with most object detection frameworks.
|
| 108 |
-
- **Single Training Split:** The dataset is provided as a single training split to allow maximum flexibility in creating custom train/validation/test splits for different research needs.
|
| 109 |
-
- <u>Various Image acquisition conditions</u>:
|
| 110 |
-
- Single person (1 or 2 eyes), whole people, groups, ...
|
| 111 |
-
- Open and closed eyes.
|
| 112 |
-
- Diversity of lighting and poses.
|
| 113 |
-
|
| 114 |
-
|
| 115 |
# <span style="font-size: 1.5em; font-weight: bold;">Preprocessing e Augmentation applied</span>
|
| 116 |
|
| 117 |
1. **<u>Preprocessing</u>**:
|
|
@@ -129,20 +142,6 @@ coco_dataset = CocoDetection(
|
|
| 129 |
- Cutout: 7 boxes, each with a size of 2%.
|
| 130 |
|
| 131 |
|
| 132 |
-
# <span style="font-size: 1.5em; font-weight: bold;">Repository File Structure</span>
|
| 133 |
-
The repository contains the following files. The standard structure for a COCO dataset on Hugging Face is automatically created when loaded.
|
| 134 |
-
|
| 135 |
-
```text
|
| 136 |
-
Eyes-Detection/
|
| 137 |
-
├── README.md # This dataset card
|
| 138 |
-
├── dataset_info.json # Dataset metadata for Hugging Face
|
| 139 |
-
├── annotations.coco.json # Annotations in COCO format
|
| 140 |
-
├── images.zip # All images in a single compressed archive
|
| 141 |
-
├── README.dataset.txt # Marginal info
|
| 142 |
-
└── LICENSE # The CC BY-NC-SA 4.0 license file
|
| 143 |
-
```
|
| 144 |
-
|
| 145 |
-
|
| 146 |
|
| 147 |
# <span style="font-size: 1.5em; font-weight: bold;">License - CC BY-NC-SA 4.0</span>
|
| 148 |
|
|
|
|
| 44 |
You are responsible for creating appropriate validation and test splits using the provided training data. We recommend using 70-80% for training, 10-15% for validation, and 10-15% for testing, depending on your requirements.
|
| 45 |
|
| 46 |
|
| 47 |
+
# <span style="font-size: 1.5em; font-weight: bold;">Key features</span>
|
| 48 |
+
- 72,317 images of close-up eyes, people's faces, and real-life scenes.
|
| 49 |
+
- All bounding boxes have been **completely re-annotated manually** with **Roboflow** to ensure maximum accuracy.
|
| 50 |
+
- Annotations provided in **ready-to-use COCO format** for easy integration with most object detection frameworks.
|
| 51 |
+
- **Single Training Split:** The dataset is provided as a single training split to allow maximum flexibility in creating custom train/validation/test splits for different research needs.
|
| 52 |
+
- <u>Various Image acquisition conditions</u>:
|
| 53 |
+
- Single person (1 or 2 eyes), whole people, groups, ...
|
| 54 |
+
- Open and closed eyes.
|
| 55 |
+
- Diversity of lighting and poses.
|
| 56 |
+
|
| 57 |
+
|
| 58 |
+
# <span style="font-size: 1.5em; font-weight: bold;">Repository File Structure</span>
|
| 59 |
+
The repository contains the following files. The standard structure for a COCO dataset on Hugging Face is automatically created when loaded.
|
| 60 |
+
|
| 61 |
+
```text
|
| 62 |
+
Eyes-Detection/
|
| 63 |
+
├── README.md # This dataset card
|
| 64 |
+
├── dataset_info.json # Dataset metadata for Hugging Face
|
| 65 |
+
├── annotations.coco.json # Annotations in COCO format
|
| 66 |
+
├── images.zip # All images in a single compressed archive
|
| 67 |
+
├── README.dataset.txt # Marginal info
|
| 68 |
+
└── LICENSE # The CC BY-NC-SA 4.0 license file
|
| 69 |
+
```
|
| 70 |
+
|
| 71 |
|
| 72 |
# <span style="font-size: 1.5em; font-weight: bold;">Loading the Dataset with Hugging Face 🤗</span>
|
| 73 |
This dataset is in COCO format and can be easily loaded using the <u>datasets library</u> distributed by HuggingFace.
|
|
|
|
| 125 |
```
|
| 126 |
|
| 127 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 128 |
# <span style="font-size: 1.5em; font-weight: bold;">Preprocessing e Augmentation applied</span>
|
| 129 |
|
| 130 |
1. **<u>Preprocessing</u>**:
|
|
|
|
| 142 |
- Cutout: 7 boxes, each with a size of 2%.
|
| 143 |
|
| 144 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 145 |
|
| 146 |
# <span style="font-size: 1.5em; font-weight: bold;">License - CC BY-NC-SA 4.0</span>
|
| 147 |
|