Instructions to use Markus-Pobitzer/wlp-lora with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Markus-Pobitzer/wlp-lora 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("Markus-Pobitzer/wlp-lora", dtype=torch.bfloat16, device_map="cuda") pipe.to("cuda") prompt = "A man with short gray hair plays a red electric guitar." image = load_image( "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/diffusers/guitar-man.png" ) output = pipe(image=image, prompt=prompt).frames[0] export_to_video(output, "output.mp4") - Notebooks
- Google Colab
- Kaggle
Add `library_name` to metadata
#1
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,10 +1,11 @@
|
|
| 1 |
---
|
| 2 |
-
license: cc-by-nc-4.0
|
| 3 |
base_model:
|
| 4 |
- Wan-AI/Wan2.1-I2V-14B-480P-Diffusers
|
|
|
|
| 5 |
pipeline_tag: image-to-video
|
| 6 |
tags:
|
| 7 |
- Painting
|
|
|
|
| 8 |
---
|
| 9 |
|
| 10 |
# Loomis Painter: Reconstructing the painting process
|
|
|
|
| 1 |
---
|
|
|
|
| 2 |
base_model:
|
| 3 |
- Wan-AI/Wan2.1-I2V-14B-480P-Diffusers
|
| 4 |
+
license: cc-by-nc-4.0
|
| 5 |
pipeline_tag: image-to-video
|
| 6 |
tags:
|
| 7 |
- Painting
|
| 8 |
+
library_name: diffusers
|
| 9 |
---
|
| 10 |
|
| 11 |
# Loomis Painter: Reconstructing the painting process
|