File size: 1,423 Bytes
4abaa59 e77a353 4abaa59 7d983cd f1a30eb 7d983cd e77a353 7d983cd e77a353 7d983cd e77a353 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
---
license: cc-by-4.0
task_categories:
- robotics
- reinforcement-learning
language:
- en
tags:
- Robotics
pretty_name: Open X-Embodiment Dataset
size_categories:
- 1M<n<10M
---
# Open X-Embodiment Dataset (unofficial)
RLDS dataset for train vla
### use this dataset
download the dataset by hf: (`<THE DATASET NAME>` can be `bridge_orig, dorid,fmb,...etc.`)
```shell
cd <PATH TO BASE DATASETS DIR>
huggingface-cli download WeiChow/VLATrainingDataset --include <THE DATASET NAME>/* --local-dir . --local-dir-use-symlinks False --repo-type dataset
```
### prepare by yourself
The code modified from [rlds_dataset_mod](https://github.com/moojink/rlds_dataset_mod/blob/main/README.md)
We upload the precessed dataset in this repository ❤
below is the code for processing ⚙
##### prepare gsutil
```shell
# https://cloud.google.com/sdk/docs/install-sdk?hl=zh-cn#linux
curl -O https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-cli-linux-x86_64.tar.gz
tar -xf google-cloud-cli-linux-x86_64.tar.gz
./google-cloud-sdk/install.sh
./google-cloud-sdk/bin/gcloud init --console-only
./google-cloud-sdk/bin/gcloud components install gsutil
# check gsutil
export PATH=$PATH:/path/to/google-cloud-sdk/bin
ls ./google-cloud-sdk/bin/gsutil
```
##### prepare environment
```
conda env create -f environment_ubuntu.yml
conda activate rlds
mkdir data_download
mkdir data_tmp
```
All the rights are reserved. |