johnatanvq commited on
Commit
58f5cad
Β·
verified Β·
1 Parent(s): 7505fc6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +57 -3
README.md CHANGED
@@ -1,3 +1,57 @@
1
- ---
2
- license: cc-by-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - computer-vision
4
+ - object-detection
5
+ - yolo
6
+ - fruits
7
+ library_name: ultralytics
8
+ license: cc-by-4.0
9
+ datasets:
10
+ - Johnatanvq/fruitsdata
11
+ ---
12
+
13
+ # 🍎πŸ₯•πŸŠ Fruits Detection Models (YOLOv11 + OAK Deployment)
14
+
15
+ This repository provides two versions of a YOLO-based model trained to detect **apples, carrots, and oranges**.
16
+ The models were trained on the [Fruits Dataset](https://huggingface.co/datasets/johnatanvq/fruits-dataset), which contains **160 annotated images** with variations in **angles, distances, lighting, shadows, quantities, and surfaces**.
17
+
18
+ ---
19
+
20
+ ## πŸ“‚ Repository Structure
21
+
22
+ fruits-yolo-model/ </br>
23
+ β”œβ”€β”€ my_model_PC/ </br>
24
+ β”‚ └── my_model.pt </br>
25
+ └── my_model_CAMERA/ </br>
26
+ β”œβ”€β”€ my_model_openvino_2022.1_6shave.blob </br>
27
+ β”œβ”€β”€ my_model-simplified.onnx </br>
28
+ β”œβ”€β”€ my_model.bin </br>
29
+ β”œβ”€β”€ my_model.xml </br>
30
+ └── my_model.json </br>
31
+ ---
32
+
33
+ ## 🧾 Training & Conversion
34
+ Training: The model was trained with the Fruits Dataset.
35
+
36
+ Conversion: The .pt weights were exported to ONNX and then converted via Luxonis tools into the .blob format for OAK deployment.
37
+
38
+ Source Code: Training scripts and conversion pipeline are documented here:
39
+ πŸ‘‰ GitHub: [fruit_detection_model](https://github.com/Johnatanvq/fruit_detection_model)
40
+
41
+ ## πŸ“‘ License
42
+ This model is released under the CC-BY 4.0 license.
43
+ You are free to share, use, and adapt the models, including for commercial purposes, as long as you provide proper attribution.
44
+
45
+ ## Attribution
46
+ If you use these models, please cite them as:
47
+
48
+ *Fruits Detection Models (YOLOv11 + OAK Deployment), by **Johnatanvq**, trained on the Fruits Dataset, licensed under CC-BY 4.0.*
49
+
50
+ ## πŸ“ Notes
51
+ The dataset is compact (160 images) but provides strong variation for robust training.
52
+
53
+ my_model.pt is suitable for PyTorch inference and further training.
54
+
55
+ my_model_openvino_2022.1_6shave.blob is optimized for real-time inference on OAK devices.
56
+
57
+ Supporting files (.onnx, .bin, .xml, .json) are included for reproducibility.