Add dataset card for RoboSemanticBench

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +75 -0
README.md ADDED
@@ -0,0 +1,75 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ task_categories:
3
+ - robotics
4
+ tags:
5
+ - vla
6
+ - semantic-grounding
7
+ - benchmark
8
+ license: other
9
+ ---
10
+
11
+ # RoboSemanticBench
12
+
13
+ [Paper](https://huggingface.co/papers/2606.02277) | [GitHub](https://github.com/ZGC-EmbodyAI/RoboSemanticBench)
14
+
15
+ RoboSemanticBench (RSB) is an embodied benchmark for diagnosing **semantic grounding in action prediction** for vision-language-action (VLA) models. In each episode, the robot receives a multiple-choice math or general-knowledge question, observes candidate answer blocks, and must pick the physical block corresponding to the correct answer. This setup isolates the model's semantic decision-making from its low-level manipulation capability.
16
+
17
+ ## Benchmark Suites
18
+
19
+ The benchmark consists of six suites with 4-choice and 10-choice variants:
20
+
21
+ | Suite | Task name | Choices | Semantic source |
22
+ | --- | --- | ---: | --- |
23
+ | RSB-Math-4 | `rsb_math` | 4 | Procedural arithmetic |
24
+ | RSB-Math-10 | `rsb_math_10blocks` | 10 | Procedural arithmetic |
25
+ | RSB-HardMath-4 | `rsb_hardmath` | 4 | GSM8K |
26
+ | RSB-HardMath-10 | `rsb_hardmath_10blocks` | 10 | GSM8K |
27
+ | RSB-General-4 | `rsb_general` | 4 | MMLU-style QA |
28
+ | RSB-General-10 | `rsb_general_10blocks` | 10 | MMLU-style QA |
29
+
30
+ ## Metrics
31
+
32
+ RSB reports three diagnostic metrics:
33
+
34
+ - 🎯 **Task Success Rate (TSR)**: The episode succeeds only when the robot selects the semantically correct answer block and places it in the answer zone.
35
+ - ✋ **Grasp Success Rate (GSR)**: The robot successfully grasps any candidate answer block, regardless of whether it is correct.
36
+ - 🧭 **Normalized Semantic Grounding (nSG)**: Semantic target selection conditioned on successful grasping, where 0 corresponds to random target selection.
37
+
38
+ ## Sample Usage
39
+
40
+ ### Data Collection
41
+
42
+ To collect trajectories for a specific task (e.g., RSB-Math-4):
43
+
44
+ ```bash
45
+ # RSB-Math-4
46
+ bash collect_data.sh rsb_math rsb_math_train_500 0 --skip_instructions
47
+ ```
48
+
49
+ ### Policy Evaluation
50
+
51
+ To evaluate a policy using the simulation evaluation entry:
52
+
53
+ ```bash
54
+ python script/eval_policy.py --config policy/Your_Policy/deploy_policy.yml \
55
+ --overrides \
56
+ --task_name rsb_general_10blocks \
57
+ --task_config rsb_general_10blocks_test_500 \
58
+ --ckpt_setting your_checkpoint_name \
59
+ --seed 0 \
60
+ --policy_name Your_Policy
61
+ ```
62
+
63
+ ## Citation
64
+
65
+ ```bibtex
66
+ @misc{RoboSemanticBench,
67
+ title={RoboSemanticBench: Diagnosing Semantic Grounding in Action Prediction for VLA Models},
68
+ author={Bin Yu and Yao Zhang and Haishan Liu and Shijie Lian and Yuliang Wei and Xiaopeng Lin and Zhaolong Shen and Changti Wu and Ruina Hu and Bailing Wang and Cong Huang and Kai Chen},
69
+ year={2026},
70
+ eprint={2606.02277},
71
+ archivePrefix={arXiv},
72
+ primaryClass={cs.RO},
73
+ url={https://arxiv.org/abs/2606.02277},
74
+ }
75
+ ```