Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
### GOAG -- Checkpoints and Data
|
| 2 |
+
|
| 3 |
+
See https://github.com/CEA-LIST/GOAG for full code and instructions.
|
| 4 |
+
|
| 5 |
+
|
| 6 |
+
|
| 7 |
+
Extract the files `ckpts.zip` and `GOAG_DATA.zip`. Your directory tree should strictly follow this structure:
|
| 8 |
+
```bash
|
| 9 |
+
# Model Checkpoints
|
| 10 |
+
GOAG # Main folder
|
| 11 |
+
├── ...
|
| 12 |
+
├── logs # ckpts folder
|
| 13 |
+
├── allegro_cvae
|
| 14 |
+
├── allegro_pointnet
|
| 15 |
+
├── barrett_cvae
|
| 16 |
+
├── barrett_pointnet
|
| 17 |
+
├── shadowhand_cvae
|
| 18 |
+
└── shadowhand_pointnet
|
| 19 |
+
└── ...
|
| 20 |
+
|
| 21 |
+
# Dataset Directory
|
| 22 |
+
GOAG_DATA
|
| 23 |
+
├── handprints
|
| 24 |
+
├── pointclouds
|
| 25 |
+
├── dexgrab
|
| 26 |
+
├── dexgraspnet
|
| 27 |
+
├── multidex
|
| 28 |
+
├── realdex
|
| 29 |
+
└── unidexgrasp
|
| 30 |
+
├── urdf
|
| 31 |
+
├── objects
|
| 32 |
+
│ ├── dexgrab
|
| 33 |
+
│ ├── dexgraspnet
|
| 34 |
+
│ ├── multidex
|
| 35 |
+
│ ├── realdex
|
| 36 |
+
│ └── unidexgrasp
|
| 37 |
+
└── robot
|
| 38 |
+
├── allegro
|
| 39 |
+
├── barrett
|
| 40 |
+
└── shadowhand
|
| 41 |
+
└── workspaces
|
| 42 |
+
```
|