Datasets:
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,38 +1,33 @@
|
|
| 1 |
---
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
path: data/train-*
|
| 34 |
-
- split: validation
|
| 35 |
-
path: data/validation-*
|
| 36 |
-
- split: test
|
| 37 |
-
path: data/test-*
|
| 38 |
---
|
|
|
|
| 1 |
---
|
| 2 |
+
license: unknown
|
| 3 |
+
task_categories:
|
| 4 |
+
- object-detection
|
| 5 |
+
---
|
| 6 |
+
|
| 7 |
+
# Dataset Card
|
| 8 |
+
|
| 9 |
+
Uploaded using [coco2hf](https://github.com/benjamintli/coco2hf)
|
| 10 |
+
|
| 11 |
+
This dataset contains object detection annotations in COCO format, converted to HuggingFace image dataset format.
|
| 12 |
+
|
| 13 |
+
## Dataset Details
|
| 14 |
+
|
| 15 |
+
- **Number of classes**: 1
|
| 16 |
+
- **Splits**: train, test, validation
|
| 17 |
+
- **Format**: Images with bounding box annotations
|
| 18 |
+
|
| 19 |
+
## Classes
|
| 20 |
+
|
| 21 |
+
The dataset contains the following 1 classes:
|
| 22 |
+
|
| 23 |
+
- barcode
|
| 24 |
+
|
| 25 |
+
## Usage
|
| 26 |
+
|
| 27 |
+
```python
|
| 28 |
+
from datasets import load_dataset
|
| 29 |
+
|
| 30 |
+
dataset = load_dataset("benjamintli/barcode-object-detection")
|
| 31 |
+
```
|
| 32 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
---
|