TriWorldBench commited on
Commit
caf28ad
·
verified ·
1 Parent(s): efb5c8a

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +91 -0
README.md ADDED
@@ -0,0 +1,91 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: TriWorldBench Dataset
3
+ tags:
4
+ - benchmark
5
+ - embodied-ai
6
+ - world-model
7
+ - robotics
8
+ - evaluation
9
+ ---
10
+
11
+ # TriWorldBench Dataset
12
+
13
+ Welcome to TriWorldBench, a benchmark for evaluating triple-view embodied world models.
14
+
15
+ - Benchmark homepage: [https://www.triworldbench.com](https://www.triworldbench.com)
16
+ - Benchmark code repository: [TriWorldBench/TriWorldBench](https://github.com/TriWorldBench/TriWorldBench)
17
+
18
+ ## Overview
19
+
20
+ TriWorldBench evaluates world models from three synchronized robot views: head,
21
+ left wrist, and right wrist. The benchmark focuses on whether a model can generate
22
+ one coherent robot world across all three cameras while preserving task alignment,
23
+ physical and 3D coherence, motion quality, temporal consistency, and visual quality.
24
+
25
+ ## Released Files
26
+
27
+ This Hugging Face dataset provides two compressed dataset bundles:
28
+
29
+ - `test_dataset`: the official 500-episode test set for leaderboard submission.
30
+ - `val_dataset`: a 100-episode validation bundle for local development and quick evaluation.
31
+
32
+ ## `test_dataset` Structure
33
+
34
+ After extraction, the official test dataset is organized as:
35
+
36
+ ```text
37
+ test_dataset/
38
+ +-- data/
39
+ | +-- episode1.hdf5
40
+ | +-- episode2.hdf5
41
+ | +-- ...
42
+ | +-- episode500.hdf5
43
+ +-- first_frame/
44
+ | +-- episode1_head.jpg
45
+ | +-- episode1_left.jpg
46
+ | +-- episode1_right.jpg
47
+ | +-- ...
48
+ | +-- episode500_right.jpg
49
+ +-- instructions/
50
+ +-- episode1.json
51
+ +-- episode2.json
52
+ +-- ...
53
+ +-- episode500.json
54
+ ```
55
+
56
+ The test set contains 500 episodes indexed from `episode1` to `episode500`.
57
+ For each episode, `data/episodeN.hdf5` contains the trajectory/action sequence,
58
+ `first_frame/` provides the initial 320x240 observations for the head, left wrist,
59
+ and right wrist cameras, and `instructions/episodeN.json` contains the task instruction.
60
+
61
+ Participants should run their models on this test set and submit generated videos
62
+ for all three views: `head.mp4`, `left.mp4`, and `right.mp4`.
63
+
64
+ ## `val_dataset` Structure
65
+
66
+ The validation bundle contains 100 episodes derived from RoboTwin2.0, together
67
+ with the corresponding ground-truth data and processed state annotations.
68
+ After extraction, it is organized as:
69
+
70
+ ```text
71
+ val_dataset/
72
+ +-- test_dataset/
73
+ | +-- data/
74
+ | +-- first_frame/
75
+ | +-- instructions/
76
+ +-- STATE/
77
+ | +-- episode*.json
78
+ +-- gt_dataset/
79
+ +-- episode*/
80
+ ```
81
+
82
+ The `val_dataset/test_dataset` folder provides the same type of model inputs as
83
+ the official test set. The bundled `gt_dataset` and `STATE` folders are already
84
+ formatted for the TriWorldBench evaluation code. Matching VQA question annotations
85
+ for this validation set are included in the benchmark code repository under
86
+ `metrics/VQA/qa_val/`.
87
+
88
+ ## Evaluation and Submission
89
+
90
+ Please refer to the benchmark homepage and code repository for environment setup,
91
+ inference, evaluation, and leaderboard submission instructions.