Add dataset card, link to paper and GitHub

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +73 -0
README.md CHANGED
@@ -1,3 +1,76 @@
1
  ---
2
  license: apache-2.0
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - vla
7
+ - vision-language-action
8
+ - benchmark
9
+ - semantic-grounding
10
  ---
11
+
12
+ # RoboSemanticBench (RSB)
13
+
14
+ [RoboSemanticBench (RSB)](https://huggingface.co/papers/2606.02277) is an embodied benchmark for diagnosing **semantic grounding in action prediction** for vision-language-action (VLA) models.
15
+
16
+ In each episode, a robot receives a multiple-choice math or general-knowledge question, observes candidate answer blocks, and must grasp the block corresponding to the correct answer. RSB is designed to separate low-level grasping ability from the model's capacity to use instruction semantics to select the correct physical target.
17
+
18
+ ## Links
19
+
20
+ - **Paper:** [RoboSemanticBench: Diagnosing Semantic Grounding in Action Prediction for VLA Models](https://huggingface.co/papers/2606.02277)
21
+ - **Repository:** [https://github.com/ZGC-EmbodyAI/RoboSemanticBench](https://github.com/ZGC-EmbodyAI/RoboSemanticBench)
22
+ - **Project Page:** [https://robotwin-platform.github.io/](https://robotwin-platform.github.io/)
23
+
24
+ ## Benchmark Suites
25
+
26
+ RSB covers six embodied semantic-answering suites:
27
+
28
+ | Suite | Task name | Choices | Semantic source |
29
+ | --- | --- | ---: | --- |
30
+ | RSB-Math-4 | `rsb_math` | 4 | Procedural arithmetic |
31
+ | RSB-Math-10 | `rsb_math_10blocks` | 10 | Procedural arithmetic |
32
+ | RSB-HardMath-4 | `rsb_hardmath` | 4 | GSM8K |
33
+ | RSB-HardMath-10 | `rsb_hardmath_10blocks` | 10 | GSM8K |
34
+ | RSB-General-4 | `rsb_general` | 4 | MMLU-style QA |
35
+ | RSB-General-10 | `rsb_general_10blocks` | 10 | MMLU-style QA |
36
+
37
+ ## Metrics
38
+
39
+ The benchmark reports three diagnostic metrics:
40
+ - **Task Success Rate (TSR)**: The episode succeeds only when the robot selects the correct block and places it in the answer zone.
41
+ - **Grasp Success Rate (GSR)**: The robot successfully grasps any candidate block, regardless of correctness.
42
+ - **Normalized Semantic Grounding (nSG)**: Semantic target selection conditioned on successful grasping, revealing the gap between motor competence and semantic grounding.
43
+
44
+ ## Sample Usage
45
+
46
+ ### Data Collection
47
+ To collect expert trajectories (e.g., for `rsb_math`):
48
+ ```bash
49
+ bash collect_data.sh rsb_math rsb_math_train_500 0 --skip_instructions
50
+ ```
51
+
52
+ ### Policy Evaluation
53
+ To evaluate a policy using the RoboTwin interface:
54
+ ```bash
55
+ python script/eval_policy.py --config policy/Your_Policy/deploy_policy.yml \
56
+ --overrides \
57
+ --task_name rsb_general_10blocks \
58
+ --task_config rsb_general_10blocks_test_500 \
59
+ --ckpt_setting your_checkpoint_name \
60
+ --seed 0 \
61
+ --policy_name Your_Policy
62
+ ```
63
+
64
+ ## Citation
65
+
66
+ ```bibtex
67
+ @misc{RoboSemanticBench,
68
+ title={RoboSemanticBench: Diagnosing Semantic Grounding in Action Prediction for VLA Models},
69
+ 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},
70
+ year={2026},
71
+ eprint={2606.02277},
72
+ archivePrefix={arXiv},
73
+ primaryClass={cs.RO},
74
+ url={https://arxiv.org/abs/2606.02277},
75
+ }
76
+ ```