Yannik019 commited on
Commit
c645508
·
verified ·
1 Parent(s): b90eb2e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +87 -6
README.md CHANGED
@@ -39,19 +39,100 @@ dataset_info:
39
  ---
40
 
41
  # LLM-Pack: Grocery Detection Dataset
42
- A dataset, showing scenes of grocery items on a table. Each item is annotated by location and name.
43
 
44
- ## Hub Usage
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
45
 
46
  ```python
47
  from datasets import load_dataset
48
 
49
- dataset = load_dataset("Yannik019/llm_pack_detection", split="train")
 
 
 
 
50
  print(dataset)
51
  ```
52
 
53
- Please find a detailed example [here](https://huggingface.co/datasets/Yannik019/llm_pack_detection/blob/main/example.py).
 
 
54
 
55
- ## Row count
56
- - Rows: 40
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
57
 
 
39
  ---
40
 
41
  # LLM-Pack: Grocery Detection Dataset
 
42
 
43
+ A small object detection and scene understanding dataset containing tabletop grocery scenes with annotated item names and object locations.
44
+ The dataset consists of 40 images with varying object counts, designed for evaluating object detection, counting, and multimodal reasoning systems in cluttered grocery scenarios.
45
+
46
+ ## Dataset Overview
47
+
48
+ - **Total scenes:** 40
49
+ - **Object counts per scene:** 6, 8, 10, 12, 14, 16, 18, or 20 items
50
+ - **Samples per object-count category:** 5
51
+ - **Annotations:** Object names + object center coordinates
52
+ - **Image resolution:** 1920×1080
53
+ - **Task type:** Object detection / scene understanding / counting
54
+
55
+ ## Dataset Structure
56
+
57
+ Each sample contains:
58
+
59
+ ```python
60
+ {
61
+ "image": PIL.Image,
62
+ "caption": str,
63
+ "bucket": str, # number of items on the image
64
+ "sample_id": str,
65
+
66
+ "labels": List[str],
67
+ "annotation_indices": List[int],
68
+ "annotation_x": List[int],
69
+ "annotation_y": List[int],
70
+
71
+ "annotation_count": int
72
+ }
73
+ ```
74
+
75
+ ## Annotation Format
76
+
77
+ Object annotations are stored as aligned lists.
78
+
79
+ Example:
80
+
81
+ ```python
82
+ {
83
+ "labels": [
84
+ "Glass Beer Bottle",
85
+ "Apples",
86
+ "Noodles in Plastic Bag"
87
+ ],
88
+
89
+ "annotation_x": [1480, 1251, 1123],
90
+ "annotation_y": [445, 822, 810]
91
+ }
92
+ ```
93
+
94
+ Each `(annotation_x[i], annotation_y[i])` pair corresponds to the center position of `labels[i]` in the image.
95
+
96
+ ## Usage
97
 
98
  ```python
99
  from datasets import load_dataset
100
 
101
+ dataset = load_dataset(
102
+ "Yannik019/llm_pack_detection",
103
+ split="train"
104
+ )
105
+
106
  print(dataset)
107
  ```
108
 
109
+ ## Example
110
+
111
+ A full usage example is available here:
112
 
113
+ - [example.py](https://huggingface.co/datasets/Yannik019/llm_pack_detection/blob/main/example.py)
114
+
115
+ ## Intended Use
116
+
117
+ This dataset is intended for:
118
+
119
+ - Object detection benchmarking
120
+ - Vision-language model evaluation
121
+ - Scene understanding research
122
+ - Tabletop grocery perception
123
+ - Referring object localization
124
+
125
+ ## Citation
126
+
127
+ ```bibtex
128
+ @misc{blei2025llmpackintuitivegroceryhandling,
129
+ title={LLM-Pack: Intuitive Grocery Handling for Logistics Applications},
130
+ author={Yannik Blei and Michael Krawez and Tobias Jülg and Pierre Krack and Florian Walter and Wolfram Burgard},
131
+ year={2025},
132
+ eprint={2503.08445},
133
+ archivePrefix={arXiv},
134
+ primaryClass={cs.RO},
135
+ url={https://arxiv.org/abs/2503.08445},
136
+ }
137
+ ```
138