Instructions to use Remade-AI/Squish with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Remade-AI/Squish with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline from diffusers.utils import load_image, export_to_video # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("Wan-AI/Wan2.1-I2V-14B-480P,Wan-AI/Wan2.1-I2V-14B-480P-Diffusers", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("Remade-AI/Squish") prompt = "In the video, a miniature dog is presented. The dog is held in a person's hands. The person then presses on the dog, causing a sq41sh squish effect. The person keeps pressing down on the dog, further showing the sq41sh squish effect." input_image = load_image("https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/diffusers/guitar-man.png") image = pipe(image=input_image, prompt=prompt).frames[0] export_to_video(output, "output.mp4") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
Upload 5 files
Browse files- .gitattributes +5 -0
- example_gifs/balloon_squish.gif +3 -0
- example_gifs/dog_squish.gif +3 -0
- example_gifs/person_squish.gif +3 -0
- example_gifs/rodent_squish.gif +3 -0
- example_gifs/tank_squish.gif +3 -0
.gitattributes
CHANGED
|
@@ -43,3 +43,8 @@ example_videos/dog_squish.mp4 filter=lfs diff=lfs merge=lfs -text
|
|
| 43 |
example_videos/person_squish.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 44 |
example_videos/rodent_squish.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 45 |
example_videos/tank_squish.mp4 filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 43 |
example_videos/person_squish.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 44 |
example_videos/rodent_squish.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 45 |
example_videos/tank_squish.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
example_gifs/balloon_squish.gif filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
example_gifs/dog_squish.gif filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
example_gifs/person_squish.gif filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
example_gifs/rodent_squish.gif filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
example_gifs/tank_squish.gif filter=lfs diff=lfs merge=lfs -text
|
example_gifs/balloon_squish.gif
ADDED
|
Git LFS Details
|
example_gifs/dog_squish.gif
ADDED
|
Git LFS Details
|
example_gifs/person_squish.gif
ADDED
|
Git LFS Details
|
example_gifs/rodent_squish.gif
ADDED
|
Git LFS Details
|
example_gifs/tank_squish.gif
ADDED
|
Git LFS Details
|