Datasets:
Tasks:
Video-Text-to-Text
Modalities:
Text
Formats:
json
Languages:
English
Size:
10K - 100K
ArXiv:
License:
Upload folder using huggingface_hub
Browse files- .gitattributes +3 -0
- README.md +55 -0
- jsonl/part-00000.jsonl +3 -0
- raw_json/primo-bench/agibot/id.json +0 -0
- raw_json/primo-bench/agibot/ood.json +0 -0
- raw_json/primo-bench/behavior-1k/id.json +3 -0
- raw_json/primo-bench/behavior-1k/ood.json +0 -0
- raw_json/primo-bench/real-humanoid/ood.json +3 -0
- raw_json/primo-bench/robotwin/id.json +0 -0
- raw_json/primo-bench/robotwin/ood.json +0 -0
- summary.json +15 -0
.gitattributes
CHANGED
|
@@ -58,3 +58,6 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 58 |
# Video files - compressed
|
| 59 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 60 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
| 58 |
# Video files - compressed
|
| 59 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 60 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
| 61 |
+
jsonl/part-00000.jsonl filter=lfs diff=lfs merge=lfs -text
|
| 62 |
+
raw_json/primo-bench/behavior-1k/id.json filter=lfs diff=lfs merge=lfs -text
|
| 63 |
+
raw_json/primo-bench/real-humanoid/ood.json filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
pretty_name: PRIMO Bench JSON
|
| 4 |
+
task_categories:
|
| 5 |
+
- video-text-to-text
|
| 6 |
+
language:
|
| 7 |
+
- en
|
| 8 |
+
---
|
| 9 |
+
|
| 10 |
+
# PRIMO Bench JSON
|
| 11 |
+
|
| 12 |
+
This repository contains JSON annotations for **PRIMO**.
|
| 13 |
+
|
| 14 |
+
## What Is Included
|
| 15 |
+
|
| 16 |
+
- `raw_json/`: original JSON files copied from the PRIMO release layout
|
| 17 |
+
- `jsonl/`: flattened JSONL shards for better Hugging Face Data Studio preview
|
| 18 |
+
- `summary.json`: row/shard metadata generated at build time
|
| 19 |
+
|
| 20 |
+
## Split Type
|
| 21 |
+
|
| 22 |
+
- Task: Evaluation / Benchmark
|
| 23 |
+
- Source pattern: `primo-bench/*/{id,ood}.json`
|
| 24 |
+
|
| 25 |
+
## Media Mapping
|
| 26 |
+
|
| 27 |
+
This repo stores annotations only.
|
| 28 |
+
|
| 29 |
+
Media files (videos/frames) should be prepared in a local folder like:
|
| 30 |
+
|
| 31 |
+
- `./primo-video/...`
|
| 32 |
+
|
| 33 |
+
The `path`, `init_frame_path`, and `current_frame_path` fields are expected to resolve against your local `PRIMO-Data` root.
|
| 34 |
+
|
| 35 |
+
## Quick Load Example
|
| 36 |
+
|
| 37 |
+
```python
|
| 38 |
+
import json
|
| 39 |
+
from pathlib import Path
|
| 40 |
+
|
| 41 |
+
root = Path(".")
|
| 42 |
+
jsonl_dir = root / "jsonl"
|
| 43 |
+
rows = []
|
| 44 |
+
for fp in sorted(jsonl_dir.glob("part-*.jsonl")):
|
| 45 |
+
with fp.open("r", encoding="utf-8") as f:
|
| 46 |
+
for line in f:
|
| 47 |
+
rows.append(json.loads(line))
|
| 48 |
+
print(len(rows))
|
| 49 |
+
```
|
| 50 |
+
|
| 51 |
+
## Build Metadata
|
| 52 |
+
|
| 53 |
+
- Total rows: **23704**
|
| 54 |
+
- Shards: **1**
|
| 55 |
+
- Shard size: **50000**
|
jsonl/part-00000.jsonl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f21d3014ae0f0feb8ac0bfde3be7436bd7e8f814867e211d2220d2a830c23c84
|
| 3 |
+
size 56302618
|
raw_json/primo-bench/agibot/id.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
raw_json/primo-bench/agibot/ood.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
raw_json/primo-bench/behavior-1k/id.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:64ef5f4836d3135acf435918f02da4dcd4082073127a12c01f7ed1267f41f42d
|
| 3 |
+
size 19068468
|
raw_json/primo-bench/behavior-1k/ood.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
raw_json/primo-bench/real-humanoid/ood.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c25c20b621515f063edfa44555143d8a9f5402fb1f9e052fba59218f3ffb4902
|
| 3 |
+
size 17919199
|
raw_json/primo-bench/robotwin/id.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
raw_json/primo-bench/robotwin/ood.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
summary.json
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"repo": "primo-bench-json",
|
| 3 |
+
"total_rows": 23704,
|
| 4 |
+
"jsonl_shards": 1,
|
| 5 |
+
"shard_size": 50000,
|
| 6 |
+
"source_json": [
|
| 7 |
+
"primo-bench/agibot/id.json",
|
| 8 |
+
"primo-bench/agibot/ood.json",
|
| 9 |
+
"primo-bench/behavior-1k/id.json",
|
| 10 |
+
"primo-bench/behavior-1k/ood.json",
|
| 11 |
+
"primo-bench/robotwin/id.json",
|
| 12 |
+
"primo-bench/robotwin/ood.json",
|
| 13 |
+
"primo-bench/real-humanoid/ood.json"
|
| 14 |
+
]
|
| 15 |
+
}
|