Update README.md
Browse files
README.md
CHANGED
@@ -1,8 +1,33 @@
|
|
1 |
-
|
2 |
-
Here, we provide a single json file with a mapping from episode ID to three natural language annotations, for 75k success episodes in DROID (95% of all DROID success episodes).
|
3 |
|
4 |
-
|
5 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
|
7 |
```
|
8 |
import tensorflow as tf
|
|
|
1 |
+
# DROID Annotations
|
|
|
2 |
|
3 |
+
This repo contains additional annotation data for the DROID dataset which we completed after the initial dataset release.
|
4 |
+
|
5 |
+
Concretely, it contains the following information:
|
6 |
+
- the full language annotations for the DROID dataset (3x annotations for 95+% of the 75k successful demonstrations)
|
7 |
+
- higher-accuracy camera calibrations (for 36k episodes)
|
8 |
+
|
9 |
+
|
10 |
+
## Language Annotations
|
11 |
+
The released RLDS dataset only contains a subset of the language labels.
|
12 |
+
Here, we provide a single json file with a mapping from episode ID to three natural language annotations,
|
13 |
+
for 75k success episodes in DROID (95% of all DROID success episodes).
|
14 |
+
|
15 |
+
|
16 |
+
## Camera Calibrations
|
17 |
+
The original DROID release included noisy camera calibrations. In post-hoc processing, we generated more accurate extrinsic camera calibration parameters
|
18 |
+
for a subset of the DROID episodes. Concretely, we provide the following three calibration files:
|
19 |
+
- `cam2base_extrinsics.json`: Contains ~36k entries with either the left or right camera calibrated with respect to base.
|
20 |
+
- `cam2cam_extrinsics.json`: Contains ~90k entries with cam2cam relative poses and camera parameters for all of DROID.
|
21 |
+
- `cam2base_extrinsic_superset.json`: Contains ~24k unique entries, total ~48k poses for both left and right camera calibrated with respect to the base.
|
22 |
+
|
23 |
+
|
24 |
+
## Accessing Annotation Data
|
25 |
+
|
26 |
+
All annotations are stored in `json` files which you can download from this repository.
|
27 |
+
To access the respective annotation for a particular episode, you can compute the episode's ID.
|
28 |
+
It corresponds to the file name `metadata_<episode_id>.json` in every episode's folder in the raw DROID data.
|
29 |
+
To extract episode IDs and corresponding file paths, you can use the code below.
|
30 |
+
You can then e.g. match the filepath to the one stored in the RLDS dataset if you want to match language annotations / camera extrinsics to RLDS episodes.
|
31 |
|
32 |
```
|
33 |
import tensorflow as tf
|