johnatanvq commited on
Commit
239302b
·
verified ·
1 Parent(s): 6e8e98e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +86 -3
README.md CHANGED
@@ -1,3 +1,86 @@
1
- ---
2
- license: cc-by-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: Fruits (Apples, Carrots, Oranges) – YOLO Annotations
3
+ tags:
4
+ - computer-vision
5
+ - object-detection
6
+ - yolo
7
+ - fruits
8
+ task_categories:
9
+ - object-detection
10
+ annotations_creators:
11
+ - expert-generated
12
+ language:
13
+ - en
14
+ license: cc-by-4.0
15
+ size_categories:
16
+ - 1K<n<10K
17
+ ---
18
+
19
+ # Fruits Dataset (Apples / Carrots / Oranges)
20
+
21
+ This dataset contains **160 original images** of apples, carrots, and oranges, captured in different scenarios.
22
+ The pictures include **variations in angles, distances, lighting conditions, shadows, quantities, and surfaces**, providing dynamic and diverse samples for training.
23
+
24
+ Annotations were created using **Label Studio** and are formatted for direct use with **YOLO** object detection models.
25
+
26
+ ---
27
+
28
+ ## Structure
29
+
30
+ The dataset is organized under the `fruitsdata/` folder:
31
+
32
+ fruitsdata/
33
+ ├── images/ # original fruit photos (.jpg)
34
+ ├── labels/ # YOLO annotation files (.txt, one per image)
35
+ ├── classes.txt # class list (apple, carrot, orange)
36
+ └── notes.json # dataset metadata and notes
37
+
38
+ yaml
39
+ Copiar código
40
+
41
+ ---
42
+
43
+ ## How to Use
44
+
45
+ ### Option A — Use my notebook (recommended)
46
+ 1. Download this dataset.
47
+ 2. Run the Jupyter Notebook available on GitHub, which performs **train/val splitting and training**:
48
+ 👉 [Fruit Detection Model with YOLO](https://github.com/Johnatanvq/fruit_detection_model)
49
+
50
+ ### Option B — Manual usage
51
+ If you want to manually prepare a YOLO-compatible dataset, split `images/` and `labels/` into `train/` and `val/`, then create a `dataset.yaml`.
52
+
53
+ ---
54
+
55
+ ## Annotation Format (YOLO)
56
+
57
+ Each line in `labels/*.txt` follows:
58
+ class_id x_center y_center width height
59
+
60
+ ---
61
+
62
+ ## Classes
63
+
64
+ 1. apple
65
+ 2. carrot
66
+ 3. orange
67
+
68
+ ---
69
+
70
+ ## License
71
+
72
+ This dataset is released under the [CC-BY 4.0](https://creativecommons.org/licenses/by/4.0/) license.
73
+ You are free to **share, use, and adapt** the dataset, including for commercial purposes, as long as you provide appropriate attribution.
74
+
75
+ ### Copyright & Attribution
76
+ The images and annotations are original work created by the author.
77
+
78
+ If you use this dataset, please cite it as:
79
+ > **Fruits (Apples/Carrots/Oranges) – YOLO Annotations**, by Johnatanvq, licensed under CC-BY 4.0.
80
+
81
+ ---
82
+
83
+ ## Notes
84
+ - The dataset is intentionally compact (**160 images**) but highly varied.
85
+ - Designed for quick prototyping and benchmarking object detection models.
86
+ - Optimized for YOLO but can be adapted to other frameworks.