Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -44,16 +44,18 @@ size_categories:
|
|
44 |
|
45 |
# Soup Can Object Detection Dataset Sample
|
46 |
|
47 |
-
|
48 |
|
49 |
-
|
50 |
|
51 |
This HuggingFace dataset is a 20 image and label sample, but you can get the rest at no cost by [creating a FalconCloud account](https://falcon.duality.ai/secure/documentation/ex2-dataset?sidebarMode=learn&highlight=dataset&utm_source=huggingface&utm_medium=dataset&utm_campaign=soupCan). Once you verify your email, the link will redirect you to the dataset page.
|
52 |
|
|
|
|
|
53 |
# Dataset Overview
|
54 |
This dataset consists of high-quality images of soup cans captured in various poses and lighting conditions .This dataset is structured to train and test object detection models, specifically YOLO-based and other object detection frameworks.
|
55 |
|
56 |
-
|
57 |
- Single Object Detection: Specifically curated for detecting soup cans, making it ideal for fine-tuning models for retail, inventory management, or robotics applications.
|
58 |
|
59 |
- Varied Environments: The dataset contains images with different lighting conditions, poses, and occlusions to help solve traditional recall problems in real world object detection.
|
@@ -78,28 +80,37 @@ Multiclass Object Detection Dataset/
|
|
78 |
| |-- ...
|
79 |
```
|
80 |
|
81 |
-
Components
|
82 |
-
Images: RGB images of the soup can in .png format.
|
83 |
-
Labels: .txt files containing bounding box annotations in the YOLO format.
|
84 |
-
0 = soup can
|
85 |
-
Example Annotation (YOLO Format):
|
86 |
|
87 |
-
|
88 |
|
89 |
-
|
90 |
-
0
|
91 |
-
The next four values represent the bounding box coordinates (normalized x_center, y_center, width, height).
|
92 |
-
Usage
|
93 |
-
This dataset is designed to be used with popular deep learning frameworks:
|
94 |
|
95 |
-
|
96 |
|
97 |
-
|
|
|
|
|
98 |
|
99 |
-
|
|
|
100 |
|
101 |
-
|
|
|
102 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
103 |
|
104 |
Licensing
|
105 |
License: Apache 2.0
|
|
|
44 |
|
45 |
# Soup Can Object Detection Dataset Sample
|
46 |
|
47 |
+
[Duality.ai](https://www.duality.ai/edu) just released a 1000 image dataset used to train a YOLOv8 model for object detection -- and it's 100% free!
|
48 |
|
49 |
+
Just [create an EDU account here](https://falcon.duality.ai/secure/documentation/ex2-dataset?sidebarMode=learn&highlight=dataset&utm_source=huggingface&utm_medium=dataset&utm_campaign=soupCan).
|
50 |
|
51 |
This HuggingFace dataset is a 20 image and label sample, but you can get the rest at no cost by [creating a FalconCloud account](https://falcon.duality.ai/secure/documentation/ex2-dataset?sidebarMode=learn&highlight=dataset&utm_source=huggingface&utm_medium=dataset&utm_campaign=soupCan). Once you verify your email, the link will redirect you to the dataset page.
|
52 |
|
53 |
+

|
54 |
+
|
55 |
# Dataset Overview
|
56 |
This dataset consists of high-quality images of soup cans captured in various poses and lighting conditions .This dataset is structured to train and test object detection models, specifically YOLO-based and other object detection frameworks.
|
57 |
|
58 |
+
#### Why Use This Dataset?
|
59 |
- Single Object Detection: Specifically curated for detecting soup cans, making it ideal for fine-tuning models for retail, inventory management, or robotics applications.
|
60 |
|
61 |
- Varied Environments: The dataset contains images with different lighting conditions, poses, and occlusions to help solve traditional recall problems in real world object detection.
|
|
|
80 |
| |-- ...
|
81 |
```
|
82 |
|
83 |
+
### Components
|
|
|
|
|
|
|
|
|
84 |
|
85 |
+
Images: RGB images of the object in `.png` format.
|
86 |
|
87 |
+
Labels: Text files (`.txt`) containing bounding box annotations for each class:
|
88 |
+
- 0 = soup
|
|
|
|
|
|
|
89 |
|
90 |
+
### Example Annotation (YOLO Format):
|
91 |
|
92 |
+
```plaintext
|
93 |
+
0 0.475 0.554 0.050 0.050
|
94 |
+
```
|
95 |
|
96 |
+
- 0 represents the object class (soup can).
|
97 |
+
- The next four values represent the bounding box coordinates (normalized x_center, y_center, width, height).
|
98 |
|
99 |
+
### Usage
|
100 |
+
This dataset is designed to be used with popular deep learning frameworks. Run these commands:
|
101 |
|
102 |
+
```plaintext
|
103 |
+
from datasets import load_dataset
|
104 |
+
```
|
105 |
+
```plaintext
|
106 |
+
dataset = load_dataset("your-huggingface-username/YOLOv8-Object-Detection-02-Dataset")
|
107 |
+
```
|
108 |
+
|
109 |
+
To train a YOLOv8 model, you can use Ultralytics' yolo package:
|
110 |
+
|
111 |
+
```plaintext
|
112 |
+
yolo train model=yolov8n.pt data=soup_can.yaml epochs=50 imgsz=640
|
113 |
+
```
|
114 |
|
115 |
Licensing
|
116 |
License: Apache 2.0
|