Datasets:
Add dataset card + metadata for TACO
Browse files- README.md +126 -0
- train/metadata.jsonl +0 -0
README.md
ADDED
|
@@ -0,0 +1,126 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-4.0
|
| 3 |
+
pretty_name: "TACO"
|
| 4 |
+
task_categories:
|
| 5 |
+
- object-detection
|
| 6 |
+
- image-segmentation
|
| 7 |
+
tags:
|
| 8 |
+
- computer-vision
|
| 9 |
+
- pictograph
|
| 10 |
+
annotations_creators:
|
| 11 |
+
- expert-generated
|
| 12 |
+
size_categories:
|
| 13 |
+
- 1K<n<10K
|
| 14 |
+
source_datasets:
|
| 15 |
+
- extended
|
| 16 |
+
configs:
|
| 17 |
+
- config_name: default
|
| 18 |
+
data_files:
|
| 19 |
+
- split: train
|
| 20 |
+
path: "train/*"
|
| 21 |
+
---
|
| 22 |
+
|
| 23 |
+
# TACO
|
| 24 |
+
|
| 25 |
+
> 1,500 images and 4,784 annotations across 60 classes, annotated as bounding box and polygon.
|
| 26 |
+
|
| 27 |
+
**[View on Pictograph](https://pictograph.io/datasets/pictograph-research/taco)** · Pictograph Research · [Creative Commons Attribution 4.0](https://creativecommons.org/licenses/by/4.0/)
|
| 28 |
+
|
| 29 |
+
## About
|
| 30 |
+
|
| 31 |
+
**TACO** is a computer-vision dataset curated and annotated on [Pictograph](https://pictograph.io/datasets/pictograph-research/taco). On Pictograph you can browse every annotated image, fork it into your own workspace in one click, export it in a dozen formats, or train a model on it directly: [open the dataset](https://pictograph.io/datasets/pictograph-research/taco).
|
| 32 |
+
|
| 33 |
+
## At a glance
|
| 34 |
+
|
| 35 |
+
| Metric | Value |
|
| 36 |
+
| :--- | ---: |
|
| 37 |
+
| Images | 1,500 |
|
| 38 |
+
| Annotations | 4,784 |
|
| 39 |
+
| Classes | 60 |
|
| 40 |
+
| Annotation types | bounding box, polygon |
|
| 41 |
+
| Splits | train |
|
| 42 |
+
|
| 43 |
+
## Dataset structure
|
| 44 |
+
|
| 45 |
+
This dataset uses the Hugging Face `imagefolder` layout: each split directory holds the images plus a `metadata.jsonl` that links every image to its annotations by `file_name`.
|
| 46 |
+
|
| 47 |
+
| Field | Description |
|
| 48 |
+
| :--- | :--- |
|
| 49 |
+
| `file_name` | Path to the image within the split directory. |
|
| 50 |
+
| `objects.bbox` | Bounding boxes as `[x, y, width, height]` (pixels). |
|
| 51 |
+
| `objects.categories` | Integer class index per box (matches the class list below). |
|
| 52 |
+
| `objects.category_names` | Human class name per box. |
|
| 53 |
+
| `segmentation` | Polygon rings as `[[x, y], ...]` with class label. |
|
| 54 |
+
|
| 55 |
+
## Use it
|
| 56 |
+
|
| 57 |
+
```python
|
| 58 |
+
from datasets import load_dataset
|
| 59 |
+
|
| 60 |
+
ds = load_dataset("pictograph/taco")
|
| 61 |
+
print(ds)
|
| 62 |
+
```
|
| 63 |
+
|
| 64 |
+
Prefer a full annotation editor, one-click fork, multi-format export, and one-click training? [Open this dataset on Pictograph](https://pictograph.io/datasets/pictograph-research/taco).
|
| 65 |
+
|
| 66 |
+
## Classes
|
| 67 |
+
|
| 68 |
+
Class index matches `objects.categories` in `metadata.jsonl`.
|
| 69 |
+
|
| 70 |
+
| # | Class | Annotations |
|
| 71 |
+
| ---: | :--- | ---: |
|
| 72 |
+
| 0 | Aerosol | 10 |
|
| 73 |
+
| 1 | Aluminium blister pack | 6 |
|
| 74 |
+
| 2 | Aluminium foil | 62 |
|
| 75 |
+
| 3 | Battery | 2 |
|
| 76 |
+
| 4 | Broken glass | 138 |
|
| 77 |
+
| 5 | Carded blister pack | 1 |
|
| 78 |
+
| 6 | Cigarette | 667 |
|
| 79 |
+
| 7 | Clear plastic bottle | 285 |
|
| 80 |
+
| 8 | Corrugated carton | 64 |
|
| 81 |
+
| 9 | Crisp packet | 39 |
|
| 82 |
+
| 10 | Disposable food container | 38 |
|
| 83 |
+
| 11 | Disposable plastic cup | 104 |
|
| 84 |
+
| 12 | Drink can | 229 |
|
| 85 |
+
| 13 | Drink carton | 45 |
|
| 86 |
+
| 14 | Egg carton | 11 |
|
| 87 |
+
| 15 | Foam cup | 13 |
|
| 88 |
+
| 16 | Foam food container | 15 |
|
| 89 |
+
| 17 | Food Can | 34 |
|
| 90 |
+
| 18 | Food waste | 8 |
|
| 91 |
+
| 19 | Garbage bag | 31 |
|
| 92 |
+
| 20 | Glass bottle | 104 |
|
| 93 |
+
| 21 | Glass cup | 6 |
|
| 94 |
+
| 22 | Glass jar | 6 |
|
| 95 |
+
| 23 | Magazine paper | 12 |
|
| 96 |
+
| 24 | Meal carton | 30 |
|
| 97 |
+
| 25 | Metal bottle cap | 80 |
|
| 98 |
+
| 26 | Metal lid | 10 |
|
| 99 |
+
| 27 | Normal paper | 82 |
|
| 100 |
+
| 28 | Other carton | 93 |
|
| 101 |
+
| 29 | Other plastic | 273 |
|
| 102 |
+
| 30 | Other plastic bottle | 50 |
|
| 103 |
+
| 31 | Other plastic container | 6 |
|
| 104 |
+
| 32 | Other plastic cup | 2 |
|
| 105 |
+
| 33 | Other plastic wrapper | 260 |
|
| 106 |
+
| 34 | Paper bag | 27 |
|
| 107 |
+
| 35 | Paper cup | 67 |
|
| 108 |
+
| 36 | Paper straw | 4 |
|
| 109 |
+
| 37 | Pizza box | 3 |
|
| 110 |
+
| 38 | Plastic bottle cap | 209 |
|
| 111 |
+
| 39 | Plastic film | 451 |
|
| 112 |
+
|
| 113 |
+
Showing the first 40 of 60 classes (by class index).
|
| 114 |
+
|
| 115 |
+
## License
|
| 116 |
+
|
| 117 |
+
Released under [Creative Commons Attribution 4.0](https://creativecommons.org/licenses/by/4.0/). When you use this data, please credit **Pedro F. Proenca and Pedro Simoes (2020)**.
|
| 118 |
+
|
| 119 |
+
## Source and attribution
|
| 120 |
+
|
| 121 |
+
This dataset is derived from [TACO (Trash Annotations in Context)](http://tacodataset.org), created by Pedro F. Proenca and Pedro Simoes (2020), originally licensed Creative Commons Attribution 4.0. We are grateful to the original authors. If you use this data, please cite the original source above.
|
| 122 |
+
|
| 123 |
+
---
|
| 124 |
+
|
| 125 |
+
*Published from [Pictograph](https://pictograph.io/datasets/pictograph-research/taco) - annotate, train, and deploy from one API.*
|
| 126 |
+
|
train/metadata.jsonl
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|