narugo1992 commited on
Commit
5be8716
·
verified ·
1 Parent(s): 12ec0f7

Auto-update README.md via abstractor, on 2025-11-18 02:06:58 CST

Browse files
Files changed (1) hide show
  1. README.md +91 -0
README.md ADDED
@@ -0,0 +1,91 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ task_categories: [object-detection]
3
+ language: [en, ja, zh]
4
+ license: cc-by-4.0
5
+ tags: [object-detection, computer-vision, anime, eye-detection, ultralytics, yolov8]
6
+ size_categories: n<1K
7
+ source_datasets: [original]
8
+ version: 1.0
9
+ ---
10
+
11
+ # Anime Eye Detection Dataset
12
+
13
+ ## Summary
14
+
15
+ This repository provides an **ultralytics-compatible** dataset specifically designed for **anime character eye detection**. The dataset contains annotated bounding boxes for eyes in anime-style character images, making it ideal for training computer vision models to detect and localize eyes in anime artwork. The dataset is formatted to work seamlessly with **YOLOv8** and other Ultralytics frameworks, enabling researchers and developers to quickly implement and experiment with eye detection models for anime content.
16
+
17
+ The dataset includes multiple format versions to accommodate different training pipelines and requirements. The **v1.0** release contains cleaned and processed annotations, while the **v1.0-raw** versions provide the original unprocessed data for researchers who prefer to apply their own preprocessing pipelines. This dual-format approach ensures flexibility for various use cases, from rapid prototyping to detailed research experiments.
18
+
19
+ Each dataset version is available in both **COCO** and **YOLOv8** formats, providing compatibility with a wide range of object detection frameworks. The COCO format supports general-purpose detection pipelines, while the YOLOv8 format is optimized specifically for Ultralytics implementations. This comprehensive format coverage makes the dataset accessible to researchers using different technical stacks and preferences.
20
+
21
+ The dataset focuses on the challenging task of **anime eye detection**, which presents unique characteristics compared to real-world eye detection. Anime eyes often feature exaggerated proportions, diverse artistic styles, and non-realistic color schemes, making this dataset particularly valuable for studying domain-specific computer vision applications. Keywords: **anime**, **eye-detection**, **object-detection**, **ultralytics**, **yolov8**.
22
+
23
+ ## Usage
24
+
25
+ The dataset is provided in multiple formats for different use cases:
26
+
27
+ ### For YOLOv8 Users
28
+ ```bash
29
+ # Download and extract the YOLOv8 formatted dataset
30
+ wget https://huggingface.co/datasets/deepghs/anime_eye_detection/resolve/main/v1.0.yolov8.zip
31
+ unzip v1.0.yolov8.zip
32
+
33
+ # Use with Ultralytics YOLOv8
34
+ from ultralytics import YOLO
35
+
36
+ # Load and train model
37
+ model = YOLO('yolov8n.pt')
38
+ model.train(data='path/to/extracted/dataset/data.yaml', epochs=100, imgsz=640)
39
+ ```
40
+
41
+ ### For COCO Format Users
42
+ ```bash
43
+ # Download and extract the COCO formatted dataset
44
+ wget https://huggingface.co/datasets/deepghs/anime_eye_detection/resolve/main/v1.0.coco.zip
45
+ unzip v1.0.coco.zip
46
+
47
+ # Use with any COCO-compatible framework
48
+ import json
49
+
50
+ with open('path/to/annotations/instances_train.json', 'r') as f:
51
+ coco_annotations = json.load(f)
52
+ ```
53
+
54
+ ### Raw Data Versions
55
+ For researchers who prefer to apply custom preprocessing:
56
+ ```bash
57
+ # Raw YOLOv8 format
58
+ wget https://huggingface.co/datasets/deepghs/anime_eye_detection/resolve/main/v1.0-raw.yolov8.zip
59
+
60
+ # Raw COCO format
61
+ wget https://huggingface.co/datasets/deepghs/anime_eye_detection/resolve/main/v1.0-raw.coco.zip
62
+ ```
63
+
64
+ ## Dataset Structure
65
+
66
+ The repository contains the following files:
67
+
68
+ - **v1.0.coco.zip**: Processed dataset in COCO format
69
+ - **v1.0.yolov8.zip**: Processed dataset in YOLOv8 format
70
+ - **v1.0-raw.coco.zip**: Raw dataset in COCO format
71
+ - **v1.0-raw.yolov8.zip**: Raw dataset in YOLOv8 format
72
+
73
+ Each zip file contains the complete dataset with images and annotations in the specified format, ready for immediate use in training object detection models.
74
+
75
+ ## Original Content
76
+
77
+ ultralytics-compatible dataset for anime character eyes bboxes
78
+
79
+ # Citation
80
+
81
+ ```bibtex
82
+ @misc{anime_eye_detection,
83
+ title = {Anime Eye Detection Dataset},
84
+ author = {deepghs},
85
+ howpublished = {\url{https://huggingface.co/datasets/deepghs/anime_eye_detection}},
86
+ year = {2023},
87
+ note = {Ultralytics-compatible dataset for anime character eye detection with bounding box annotations},
88
+ abstract = {This repository provides an ultralytics-compatible dataset specifically designed for anime character eye detection. The dataset contains annotated bounding boxes for eyes in anime-style character images, making it ideal for training computer vision models to detect and localize eyes in anime artwork. The dataset is formatted to work seamlessly with YOLOv8 and other Ultralytics frameworks, enabling researchers and developers to quickly implement and experiment with eye detection models for anime content. The dataset includes multiple format versions to accommodate different training pipelines and requirements, with both processed and raw data available in COCO and YOLOv8 formats.},
89
+ keywords = {anime, eye-detection, object-detection, ultralytics, yolov8}
90
+ }
91
+ ```