rjgpinel commited on
Commit
aa19799
ยท
verified ยท
1 Parent(s): 7fb51ce

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +74 -5
README.md CHANGED
@@ -1,11 +1,82 @@
1
  # Dataset Card for GEMBench dataset
2
 
3
- **GE**neralizable vision-language robotic **M**anipulation **Bench**mark Dataset
4
 
5
  A benchmark to systematically evaluate generalization capabilities of vision-and-language robotic manipulation policies. Built upon the RLBench simulator.
6
 
7
  ![GEMBench](dataset_overview.png)
8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  ## Citation
10
 
11
  If you use our GemBench benchmark or find our code helpful, please kindly cite our [work](https://arxiv.org/abs/2410.01345):
@@ -21,8 +92,6 @@ If you use our GemBench benchmark or find our code helpful, please kindly cite o
21
  }
22
  ```
23
 
24
- ## Dataset Card Contact
25
-
26
- [Ricardo Garcia-Pinel](mailto:rjgpinel@gmail.com)
27
 
28
- ๐Ÿ’ป **GEMBench Project Webpage:** https://www.di.ens.fr/willow/research/gembench/
 
1
  # Dataset Card for GEMBench dataset
2
 
3
+ ๐Ÿ’Ž **GE**neralizable vision-language robotic **M**anipulation **Bench**mark Dataset
4
 
5
  A benchmark to systematically evaluate generalization capabilities of vision-and-language robotic manipulation policies. Built upon the RLBench simulator.
6
 
7
  ![GEMBench](dataset_overview.png)
8
 
9
+ ๐Ÿ’ป **GEMBench Project Webpage:** https://www.di.ens.fr/willow/research/gembench/
10
+
11
+ ๐Ÿ“ˆ **Leaderboard:** https://paperswithcode.com/sota/robot-manipulation-generalization-on-gembench
12
+
13
+ ## Dataset Structure
14
+ Dataset structure is as follows:
15
+ ```
16
+ - gembench
17
+ - train_dataset
18
+ - microsteps: 567M, initial configurations for each episode
19
+ - keysteps_bbox: 160G, extracted keysteps data
20
+ - keysteps_bbox_pcd: (used to train 3D-LOTUS)
21
+ - voxel1cm: 10G, processed point clouds
22
+ - instr_embeds_clip.npy: instructions encoded by CLIP text encoder
23
+ - motion_keysteps_bbox_pcd: (used to train 3D-LOTUS++ motion planner)
24
+ - voxel1cm: 2.8G, processed point clouds
25
+ - action_embeds_clip.npy: action names encoded by CLIP text encoder
26
+ - val_dataset
27
+ - microsteps: 110M, initial configurations for each episode
28
+ - keysteps_bbox_pcd:
29
+ - voxel1cm: 941M, processed point clouds
30
+ - test_dataset
31
+ - microsteps: 2.2G, initial configurations for each episode
32
+ ```
33
+
34
+ ## ๐Ÿ› ๏ธ Benchmark Installation
35
+
36
+ 1. Create and activate your conda environment:
37
+ ```bash
38
+ conda create -n gembench python==3.10
39
+
40
+ conda activate gembench
41
+ ```
42
+ 2. Install RLBench
43
+ Download CoppeliaSim (see instructions [here](https://github.com/stepjam/PyRep?tab=readme-ov-file#install))
44
+ ```bash
45
+ # change the version if necessary
46
+ wget https://www.coppeliarobotics.com/files/V4_1_0/CoppeliaSim_Edu_V4_1_0_Ubuntu20_04.tar.xz
47
+ tar -xvf CoppeliaSim_Edu_V4_1_0_Ubuntu20_04.tar.xz
48
+ ```
49
+
50
+ Add the following to your ~/.bashrc file:
51
+ ```bash
52
+ export COPPELIASIM_ROOT=$(pwd)/CoppeliaSim_Edu_V4_1_0_Ubuntu20_04
53
+ export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$COPPELIASIM_ROOT
54
+ export QT_QPA_PLATFORM_PLUGIN_PATH=$COPPELIASIM_ROOT
55
+ ```
56
+
57
+ Install Pyrep and RLBench
58
+ ```bash
59
+ git clone https://github.com/cshizhe/PyRep.git
60
+ cd PyRep
61
+ pip install -r requirements.txt
62
+ pip install .
63
+ cd ..
64
+
65
+ # Our modified version of RLBench to support new tasks in GemBench
66
+ git clone https://github.com/rjgpinel/RLBench
67
+ cd RLBench
68
+ pip install -r requirements.txt
69
+ pip install .
70
+ cd ..
71
+ ```
72
+
73
+ ## Evaluation
74
+
75
+ Please, check 3D-LOTUS++ official repository code for evaluation:
76
+
77
+ https://github.com/vlc-robot/robot-3dlotus?tab=readme-ov-file#evaluation
78
+
79
+
80
  ## Citation
81
 
82
  If you use our GemBench benchmark or find our code helpful, please kindly cite our [work](https://arxiv.org/abs/2410.01345):
 
92
  }
93
  ```
94
 
95
+ ## Contact
 
 
96
 
97
+ [Ricardo Garcia-Pinel](mailto:rjgpinel@gmail.com)