DualityAI-RebekahBogdanoff commited on
Commit
0a53517
·
verified ·
1 Parent(s): 4b4b6b7

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +29 -18
README.md CHANGED
@@ -44,16 +44,18 @@ size_categories:
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
  # 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
- ## Why Use This Dataset?
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
- 0 0.475 0.554 0.050 0.050
88
 
89
- Where:
90
- 0 represents the object class (soup can).
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
- from datasets import load_dataset
96
 
97
- dataset = load_dataset("your-huggingface-username/Soup-Can-Object-Detection")
 
 
98
 
99
- To train a YOLOv8 model, you can use Ultralytics' yolo package:
 
100
 
101
- yolo train model=yolov8n.pt data=soup_can.yaml epochs=50 imgsz=640
 
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
+ ![image/png](https://cdn-uploads.huggingface.co/production/uploads/66c8dc99951843ca6762fe02/ieA6xPKurg_zObz7lOk7N.png)
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