Document asset download commands
Browse files
README.md
CHANGED
|
@@ -32,7 +32,19 @@ Code: https://github.com/CAN-Lee/DeformMaster
|
|
| 32 |
Download `playground_assets.zip` and unzip the assets into the DeformMaster
|
| 33 |
repository root:
|
| 34 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 35 |
```bash
|
|
|
|
| 36 |
unzip playground_assets.zip
|
| 37 |
```
|
| 38 |
|
|
|
|
| 32 |
Download `playground_assets.zip` and unzip the assets into the DeformMaster
|
| 33 |
repository root:
|
| 34 |
|
| 35 |
+
Using the Hugging Face CLI:
|
| 36 |
+
|
| 37 |
+
```bash
|
| 38 |
+
hf download Canlee/DeformMaster-Assets playground_assets.zip \
|
| 39 |
+
--repo-type dataset \
|
| 40 |
+
--local-dir .
|
| 41 |
+
unzip playground_assets.zip
|
| 42 |
+
```
|
| 43 |
+
|
| 44 |
+
Or using `wget`:
|
| 45 |
+
|
| 46 |
```bash
|
| 47 |
+
wget https://huggingface.co/datasets/Canlee/DeformMaster-Assets/resolve/main/playground_assets.zip
|
| 48 |
unzip playground_assets.zip
|
| 49 |
```
|
| 50 |
|