Add files using upload-large-folder tool
Browse files- README.md +104 -0
- train-00000-of-00003.parquet +3 -0
- train-00001-of-00003.parquet +3 -0
- train-00002-of-00003.parquet +3 -0
- validation-00000-of-00003.parquet +3 -0
- validation-00001-of-00003.parquet +3 -0
- validation-00002-of-00003.parquet +3 -0
README.md
ADDED
|
@@ -0,0 +1,104 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
license: unknown
|
| 5 |
+
task_categories:
|
| 6 |
+
- image-segmentation
|
| 7 |
+
- object-detection
|
| 8 |
+
tags:
|
| 9 |
+
- object-detection
|
| 10 |
+
- bounding-boxes
|
| 11 |
+
- relation-ordering
|
| 12 |
+
- ADE20K
|
| 13 |
+
- COCO
|
| 14 |
+
pretty_name: ROPE
|
| 15 |
+
size_categories:
|
| 16 |
+
- 1K<n<10K
|
| 17 |
+
---
|
| 18 |
+
|
| 19 |
+
# ROPE: Robust Object Pose Estimation through Relation Ordering
|
| 20 |
+
|
| 21 |
+
This dataset is a reformatted version of [sled-umich/ROPE](https://huggingface.co/datasets/sled-umich/ROPE),
|
| 22 |
+
originally from the paper **"ROPE: Robust Object Pose Estimation through Relation Ordering"**.
|
| 23 |
+
|
| 24 |
+
## Dataset Description
|
| 25 |
+
|
| 26 |
+
ROPE is an object detection benchmark that combines images from ADE20K and COCO datasets.
|
| 27 |
+
Each image contains objects with bounding box annotations and object set information.
|
| 28 |
+
The dataset evaluates models on their ability to handle different spatial relationship patterns
|
| 29 |
+
between objects.
|
| 30 |
+
|
| 31 |
+
### Splits
|
| 32 |
+
|
| 33 |
+
| Split | Rows |
|
| 34 |
+
|-------------|-------|
|
| 35 |
+
| train | 2,587 |
|
| 36 |
+
| validation | 2,574 |
|
| 37 |
+
|
| 38 |
+
### Split Types
|
| 39 |
+
|
| 40 |
+
Each image belongs to one of five split types based on the spatial relationship pattern:
|
| 41 |
+
|
| 42 |
+
| Split Type | Train | Validation | Description |
|
| 43 |
+
|-----------------|-------|------------|------------------------------------------|
|
| 44 |
+
| AAAAB | 168 | 334 | Five objects, one different from the rest |
|
| 45 |
+
| BAAAA | 168 | 334 | Five objects, first is different |
|
| 46 |
+
| homogenous | 400 | 490 | Objects from same category |
|
| 47 |
+
| heterogenous | 312 | 246 | Objects from different categories |
|
| 48 |
+
| mixed | 1,539 | 1,170 | Mixed category composition |
|
| 49 |
+
|
| 50 |
+
### Labels (Source Dataset)
|
| 51 |
+
|
| 52 |
+
| Source | Train | Validation |
|
| 53 |
+
|--------|-------|------------|
|
| 54 |
+
| ADE | 1,379 | 1,322 |
|
| 55 |
+
| COCO | 1,208 | 1,252 |
|
| 56 |
+
|
| 57 |
+
## Schema
|
| 58 |
+
|
| 59 |
+
| Column | Type | Description |
|
| 60 |
+
|-------------|-----------------------------|----------------------------------------------------------------|
|
| 61 |
+
| image | struct\<bytes, path\> | The image in HF image format (binary bytes + filename) |
|
| 62 |
+
| label | string | Source dataset: "ADE" or "COCO" |
|
| 63 |
+
| split_type | string | Relationship pattern: "AAAAB", "BAAAA", "homogenous", "heterogenous", or "mixed" |
|
| 64 |
+
| objects | string (JSON) | JSON-encoded list of objects with bounding boxes (name, object_id, bndbox) |
|
| 65 |
+
| object_set | string (JSON) | JSON-encoded list of all object names present in the image |
|
| 66 |
+
| relations | string (JSON) | JSON-encoded list of spatial relations between objects |
|
| 67 |
+
| size | string (JSON) | JSON-encoded image dimensions (width, height, depth) |
|
| 68 |
+
|
| 69 |
+
### Example Objects Format
|
| 70 |
+
|
| 71 |
+
```json
|
| 72 |
+
[
|
| 73 |
+
{
|
| 74 |
+
"name": "person",
|
| 75 |
+
"object_id": "13",
|
| 76 |
+
"difficult": "0",
|
| 77 |
+
"bndbox": {"xmin": 244, "ymin": 0, "xmax": 290, "ymax": 123},
|
| 78 |
+
"bbox_number": 1
|
| 79 |
+
}
|
| 80 |
+
]
|
| 81 |
+
```
|
| 82 |
+
|
| 83 |
+
## Differences from Original
|
| 84 |
+
|
| 85 |
+
This version differs from the original `sled-umich/ROPE` dataset:
|
| 86 |
+
|
| 87 |
+
1. **Annotations merged**: The original stored JSON annotation files separately from the image dataset.
|
| 88 |
+
This version embeds the annotations directly as columns.
|
| 89 |
+
2. **Raw images removed**: The original included both "bbox" (with bounding box overlays) and "raw" (original)
|
| 90 |
+
versions of each image. This version only includes the bbox images.
|
| 91 |
+
3. **Corrected labels**: The original imagefolder-based labels were all "ADE" due to directory structure.
|
| 92 |
+
This version uses the actual `data_source` field from annotations.
|
| 93 |
+
4. **Unified schema**: All metadata is available in a single table rather than requiring separate file lookups.
|
| 94 |
+
|
| 95 |
+
## Citation
|
| 96 |
+
|
| 97 |
+
```bibtex
|
| 98 |
+
@inproceedings{shan2024rope,
|
| 99 |
+
title={ROPE: Robust Object Pose Estimation through Relation Ordering},
|
| 100 |
+
author={Shan, Sijie and others},
|
| 101 |
+
booktitle={Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition},
|
| 102 |
+
year={2024}
|
| 103 |
+
}
|
| 104 |
+
```
|
train-00000-of-00003.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:38918c732315f26148a13b8ea162f11a0675cf8399db463f15aadbf6de89db80
|
| 3 |
+
size 380536049
|
train-00001-of-00003.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:00d659139e4ba02c1428e6e082ff24813c26d82680eab8c1317930845f0d347b
|
| 3 |
+
size 411825718
|
train-00002-of-00003.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:80ebbf7591f63d213f6bde24e7fbff12aa7ec32694cedd2d0139baf762eab09e
|
| 3 |
+
size 242263461
|
validation-00000-of-00003.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:76630a3f7a4736c72ad4fb77e00ec40572343ba3546e6f43c64df6e02555f802
|
| 3 |
+
size 388330930
|
validation-00001-of-00003.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6adf0f3f2231d2f452cb42e62ce079c596c2b01fbc6ce7f69bf20619dbd7773f
|
| 3 |
+
size 419918392
|
validation-00002-of-00003.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ce1bc8b5b42f332fc3635744d60d6cf3f48d5d83fd977a5ce7c1535c22459cce
|
| 3 |
+
size 241519504
|