This document provides instructions for downloading the MimicDroid datasets used in the RoboCasa environment.
The MimicDroid dataset consists of two main components:
- Task Demos Dataset: Contains demonstration data for few-shot learning (~250MB)
- Play Data: Contains the full dataset with all task demonstrations (~8GB)
Use the Hugging Face CLI to download the datasets:
# Install huggingface_hub if not already installed
pip install huggingface_hub
# Download the complete dataset
huggingface-cli download Rutav/MimicDroidDataset --repo-type dataset --local-dir ./MimicDroidDatasetThis will:
- Download the complete MimicDroid dataset from Hugging Face
- Store it in the specified local directory
- Handle authentication and progress indicators automatically
- Allow you to resume interrupted downloads
Use the provided Python script to download the datasets:
python robocasa/scripts/download_mimicdroid_dataset.pyThis script will:
- Download the complete MimicDroid dataset
- Handle extraction and organization automatically
- Provide progress indicators during download
- Allow you to choose which components to download
If you prefer to download manually, you can access the dataset directly:
- Repository: https://huggingface.co/datasets/Rutav/MimicDroidDataset
- Description: Contains the complete MimicDroid dataset with all task demonstrations
- Size: ~8GB total
To download via web interface:
- Visit the repository URL above
- Click "Files and versions" tab
- Download individual files or use the "Download repository" button
After downloading, the datasets will be organized as follows:
The main dataset containing comprehensive robotic manipulation demonstrations:
MimicDroidDataset/
└── training/ # Training data and metadata
├── 003/ # Training episode directories
│ ├── demo_im128_notp.hdf5
│ └── demo.hdf5
├── 004/
├── 005/
├── 006/
├── 007/
├── 008/
├── 009/
├── 010/
├── 011/
├── 012/
├── 013/
├── 015/
├── 017/
├── 018/
├── 019/
├── 020/
TaskDemos/
├── CloseLeftCabinetDoor/
│ └── 003/
│ ├── demo_im128_notp.hdf5
│ └── demo.hdf5
├── CloseLeftCabinetDoorL2/
├── CloseLeftCabinetDoorL3/
├── CloseRightCabinetDoorL2/
├── PnPSinkToCabinet/
├── PnPSinkToCabinetL2/
├── PnPSinkToMicrowaveTopL3/
├── PnPSinkToRightCounterPlate/
├── PnPSinkToRightCounterPlateL2/
├── PnPSinkToRightCounterPlateL3/
├── TurnOnFaucet/
└── TurnOnFaucetL3/
- Python 3.7+
huggingface_hubpackage (pip install huggingface_hub)- Sufficient disk space (at least 10GB recommended)
- Internet connection for download
If the dataset requires authentication:
- Create a Hugging Face account at https://huggingface.co
- Generate an access token in your account settings
- Login using:
huggingface-cli login - Enter your access token when prompted
If you encounter issues during download:
- Ensure you have sufficient disk space
- Check your internet connection
- Verify you have the
huggingface_hubpackage installed - Try logging in again with
huggingface-cli login - Use
--resume-downloadflag to resume interrupted downloads - Check the dataset repository for any access restrictions
For issues related to dataset download or usage, please create an issue in the repository.