File size: 1,508 Bytes
b0046bb 460d4fa b0046bb 460d4fa b0046bb 1e62c05 22dc376 1e62c05 22dc376 1e62c05 | 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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 | ---
pretty_name: DeformMaster Playground Assets
license: mit
tags:
- physics-simulation
- 3d-vision
- deformable-objects
- embodied-ai
- world-model
- gaussian-splatting
- robotics
---
# DeformMaster Playground Assets
This dataset contains the minimal assets required to run the DeformMaster
interactive playground for the released demo cases.
Paper: [DeformMaster: An Interactive Physics-Neural World Model for Deformable Objects from Videos](https://arxiv.org/abs/2605.09586)
Project page: https://can-lee.github.io/deformmaster-web/
Code: https://github.com/CAN-Lee/DeformMaster
## Files
- `playground_assets.zip` (ckpt and data): minimal `data/`, `outputs/`, and
`gaussian_output/` assets for `interactive_playground_online.py`.
## Usage
Download `playground_assets.zip` and unzip the assets into the DeformMaster
repository root:
Using the Hugging Face CLI:
```bash
hf download Canlee/DeformMaster-Assets playground_assets.zip \
--repo-type dataset \
--local-dir .
unzip playground_assets.zip
```
Or using `wget`:
```bash
wget https://huggingface.co/datasets/Canlee/DeformMaster-Assets/resolve/main/playground_assets.zip
unzip playground_assets.zip
```
The zip expands directly into:
```text
data/
outputs/
gaussian_output/
MANIFEST.txt
```
Run the playground:
```bash
python interactive_playground_online.py --case_name my_mono_cloth --output outputs/output_mono
```
```bash
python interactive_playground_online.py --case_name double_lift_sloth --output outputs/output_ours
```
|