Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -11,9 +11,24 @@
|
|
| 11 |
-----------------------------------------------------------------------
|
| 12 |
|
| 13 |
|
| 14 |
-
## Dataset Description
|
| 15 |
|
| 16 |
-
This dataset is designed for real-time "precise eye detection" under various conditions. It contains highly accurate bounding box annotations, manually retraced to ensure maximum precision.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 17 |
|
| 18 |
## **Key features**
|
| 19 |
- 72,317 images of close-up eyes, people's faces, and real-life scenes.
|
|
|
|
| 11 |
-----------------------------------------------------------------------
|
| 12 |
|
| 13 |
|
| 14 |
+
## **Dataset Description**
|
| 15 |
|
| 16 |
+
This COCO dataset is designed for real-time "precise eye detection" under various conditions. It contains highly accurate bounding box annotations, manually retraced to ensure maximum precision.
|
| 17 |
+
|
| 18 |
+
|
| 19 |
+
## **Loading the Dataset with Hugging Face 🤗**
|
| 20 |
+
This dataset is in COCO format and can be easily loaded using the <u>datasets library</u> distributed by HuggingFace.
|
| 21 |
+
|
| 22 |
+
**Important Note on Images**: The images are provided in a compressed <u>ZIP file</u> (**images.zip**). The load_dataset function will automatically handle the extraction for you. You do not need to extract them manually.
|
| 23 |
+
|
| 24 |
+
1. **Example Code**: from datasets import load_dataset
|
| 25 |
+
|
| 26 |
+
/# Load the dataset (automatically extracts images from the zip file)
|
| 27 |
+
dataset = load_dataset("AndreaPorri/Eyes-Detection")
|
| 28 |
+
|
| 29 |
+
/# You can now access the training split
|
| 30 |
+
train_dataset = dataset['train']
|
| 31 |
+
|
| 32 |
|
| 33 |
## **Key features**
|
| 34 |
- 72,317 images of close-up eyes, people's faces, and real-life scenes.
|