PrashantDixit0 commited on
Commit
8cd58f9
·
verified ·
1 Parent(s): 9e0a172

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +45 -3
README.md CHANGED
@@ -1,3 +1,45 @@
1
- ---
2
- license: cc-by-nc-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-2.0
3
+ ---
4
+ # SKU-110k Dataset
5
+
6
+ The [SKU-110k](https://github.com/eg4000/SKU110K_CVPR19) dataset is a collection of densely packed retail shelf images, designed to support research in [object detection](https://www.ultralytics.com/glossary/object-detection) tasks. Developed by Eran Goldman et al., the dataset contains over 110,000 unique store keeping unit (SKU) categories with densely packed objects, often looking similar or even identical, positioned in proximity.
7
+
8
+ ## Key Features
9
+
10
+ - SKU-110k contains images of store shelves from around the world, featuring densely packed objects that pose challenges for state-of-the-art object detectors.
11
+ - The dataset includes over 110,000 unique SKU categories, providing a diverse range of object appearances.
12
+ - Annotations include bounding boxes for objects and SKU category labels.
13
+
14
+
15
+ ![image](https://cdn-uploads.huggingface.co/production/uploads/60f6ff297666eeb11bc2b8d7/b6kK4hUjFIbR3dB34XyWf.png)
16
+
17
+ ### Usage
18
+
19
+ ```python
20
+ from datasets import load_dataset
21
+
22
+ # Load the dataset
23
+ dataset = load_dataset("PrashantDixit0/SKU-110K")
24
+
25
+ # Access splits
26
+ train_data = dataset['train']
27
+
28
+ # Example: Load first image
29
+ from PIL import Image
30
+ import io
31
+
32
+ sample = train_data[0]
33
+ image = Image.open(BytesIO(base64.b64decode(sample["image"]["bytes"]))
34
+ image.show()
35
+ ```
36
+
37
+ ## Applications
38
+
39
+ The SKU-110k dataset is widely used for training and evaluating [deep learning](https://www.ultralytics.com/glossary/deep-learning-dl) models in object detection tasks, especially in densely packed scenes such as retail shelf displays. Its applications include:
40
+
41
+ - Retail inventory management and automation
42
+ - Product recognition in e-commerce platforms
43
+ - Planogram compliance verification
44
+ - Self-checkout systems in stores
45
+ - Robotic picking and sorting in warehouses