Juelg commited on
Commit
ee41cdc
·
verified ·
1 Parent(s): 4f82ad2

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +36 -1
README.md CHANGED
@@ -1,3 +1,38 @@
1
  ---
2
- license: mit
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - benchmark
7
+ - manipulation
8
+ - vla
9
  ---
10
+
11
+ # DuoBench Raw Dataset
12
+
13
+ This is the raw dataset collected for the FR3 Duo Benchmark [DuoBench](https://arxiv.org/abs/2606.11901).
14
+ The format is a raw parquet format that includes additional information such as robot state (real) and sim state (sim) which are filtered out for training.
15
+ If you are looking for the converted hugging face dataset ready for training, see [this dataset](https://huggingface.co/datasets/RobotControlStack/duobench).
16
+
17
+ You can also manually convert this raw dataset to the hugging face format with the following command:
18
+ ```shell
19
+ # install rcs: https://github.com/RobotControlStack/robot-control-stack
20
+ python -m rcs lerobot-convert <output_path> --dataset-path <path> --repo-id duobench/<task_id> --no-joints --camera head@224x224 --camera left_wrist@224x224 --camera right_wrist@224x224 --video-encoding --video-backend torchcodec --binarize-gripper --n 50
21
+ ```
22
+
23
+
24
+
25
+ Project page: https://duobench.github.io/
26
+ DuoBench Code: https://github.com/RobotControlStack/duobench
27
+
28
+
29
+ ## Citation
30
+ If you find this dataset or DuoBench useful for your work, please consider citing it:
31
+ ```
32
+ @misc{duobench,
33
+ title={{DuoBench}: A Reproducible Benchmark for Bimanual Manipulation in Simulation and the Real World},
34
+ author={Tobias J{\"u}lg and Seongjin Bien and Simon Hilber and Yannik Blei and Pierre Krack and Maximilian Li and Sven Parusel and Rudolf Lioutikov and Florian Walter and Wolfram Burgard},
35
+ year={2026},
36
+ url={https://arxiv.org/abs/2606.11901}
37
+ }
38
+ ```