Instructions to use multimodalart/test-i2i with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use multimodalart/test-i2i 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("fill-in-base-model", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("multimodalart/test-i2i") prompt = "make the dog lick its nose" 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
- Draw Things
Try to fix widget
Browse files
README.md
CHANGED
|
@@ -7,7 +7,7 @@ tags:
|
|
| 7 |
- fal
|
| 8 |
widget:
|
| 9 |
- src: https://huggingface.co/datasets/diffusers/dog-example/resolve/main/alvan-nee-9M0tSjb-cpA-unsplash.jpeg
|
| 10 |
-
|
| 11 |
output:
|
| 12 |
url: https://huggingface.co/datasets/diffusers/dog-example/resolve/main/alvan-nee-Id1DBHv4fbg-unsplash.jpeg
|
| 13 |
pipeline_tag: image-to-image
|
|
|
|
| 7 |
- fal
|
| 8 |
widget:
|
| 9 |
- src: https://huggingface.co/datasets/diffusers/dog-example/resolve/main/alvan-nee-9M0tSjb-cpA-unsplash.jpeg
|
| 10 |
+
prompt: make the dog lick its nose
|
| 11 |
output:
|
| 12 |
url: https://huggingface.co/datasets/diffusers/dog-example/resolve/main/alvan-nee-Id1DBHv4fbg-unsplash.jpeg
|
| 13 |
pipeline_tag: image-to-image
|