Image-to-Image
Diffusers
lora
template:diffusion-lora
text-to-video
image-to-video
video-to-video
lightx2v
Instructions to use rzgar/Bernini-R-LightX2V-4step-loras with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use rzgar/Bernini-R-LightX2V-4step-loras with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline from diffusers.utils import load_image # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("ByteDance/Bernini-R", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("rzgar/Bernini-R-LightX2V-4step-loras") prompt = "Turn this cat into a dog" input_image = load_image("https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/diffusers/cat.png") image = pipe(image=input_image, prompt=prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
Update README.md
Browse files
README.md
CHANGED
|
@@ -49,7 +49,7 @@ These LightX2V LoRAs behave like the Wan 2.2 4-step stack , clean motion, sharp
|
|
| 49 |
|
| 50 |
|
| 51 |
## Credits
|
| 52 |
-
[**
|
| 53 |
|
| 54 |
|
| 55 |
## Download model
|
|
|
|
| 49 |
|
| 50 |
|
| 51 |
## Credits
|
| 52 |
+
[**LightX2V**](https://huggingface.co/lightx2v)
|
| 53 |
|
| 54 |
|
| 55 |
## Download model
|