Update README.md
Browse files
README.md
CHANGED
|
@@ -66,11 +66,25 @@ dataset/<task_name>/<robot_name>_<condition>_<level>_<trajectory_count>.zip
|
|
| 66 |
|
| 67 |
## 🛠️ Usage
|
| 68 |
|
| 69 |
-
|
|
|
|
|
|
|
| 70 |
```bash
|
|
|
|
| 71 |
huggingface-cli download --repo-type dataset H-EmbodVis/DOMINO --local-dir DOMINO-dataset
|
| 72 |
```
|
| 73 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 74 |
## 📖 Citation
|
| 75 |
|
| 76 |
If you find this work useful, please consider citing:
|
|
|
|
| 66 |
|
| 67 |
## 🛠️ Usage
|
| 68 |
|
| 69 |
+
You can download the full dataset using either the Hugging Face CLI or the Python SDK.
|
| 70 |
+
|
| 71 |
+
**Option 1: Hugging Face CLI (Recommended)**
|
| 72 |
```bash
|
| 73 |
+
pip install -U huggingface_hub
|
| 74 |
huggingface-cli download --repo-type dataset H-EmbodVis/DOMINO --local-dir DOMINO-dataset
|
| 75 |
```
|
| 76 |
|
| 77 |
+
**Option 2: Python SDK**
|
| 78 |
+
```python
|
| 79 |
+
from huggingface_hub import snapshot_download
|
| 80 |
+
|
| 81 |
+
snapshot_download(
|
| 82 |
+
repo_id="H-EmbodVis/DOMINO",
|
| 83 |
+
repo_type="dataset",
|
| 84 |
+
local_dir="DOMINO-dataset"
|
| 85 |
+
)
|
| 86 |
+
```
|
| 87 |
+
|
| 88 |
## 📖 Citation
|
| 89 |
|
| 90 |
If you find this work useful, please consider citing:
|