--- 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 ```