Instructions to use Fantasy-Studio/Paint-by-Example with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Fantasy-Studio/Paint-by-Example with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("Fantasy-Studio/Paint-by-Example", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
Commit ·
351e642
1
Parent(s): 9a4eb6f
Update README.md
Browse files
README.md
CHANGED
|
@@ -52,7 +52,7 @@ mask_image = download_image(mask_url).resize((512, 512))
|
|
| 52 |
example_image = download_image(example_url).resize((512, 512))
|
| 53 |
|
| 54 |
pipe = DiffusionPipeline.from_pretrained(
|
| 55 |
-
"
|
| 56 |
torch_dtype=torch.float16,
|
| 57 |
)
|
| 58 |
pipe = pipe.to("cuda")
|
|
|
|
| 52 |
example_image = download_image(example_url).resize((512, 512))
|
| 53 |
|
| 54 |
pipe = DiffusionPipeline.from_pretrained(
|
| 55 |
+
"Fantasy-Studio/Paint-by-Example",
|
| 56 |
torch_dtype=torch.float16,
|
| 57 |
)
|
| 58 |
pipe = pipe.to("cuda")
|