Instructions to use kiigii/imagedream-ipmv-diffusers with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use kiigii/imagedream-ipmv-diffusers with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("kiigii/imagedream-ipmv-diffusers", 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
Update README.md
Browse files
README.md
CHANGED
|
@@ -21,7 +21,6 @@ pipe = DiffusionPipeline.from_pretrained(
|
|
| 21 |
"kiigii/imagedream-ipmv-diffusers",
|
| 22 |
torch_dtype=torch.float16,
|
| 23 |
trust_remote_code=True,
|
| 24 |
-
custom_pipeline="pipeline_imagedream",
|
| 25 |
)
|
| 26 |
pipe.load_ip_adapter()
|
| 27 |
pipe.to("cude")
|
|
|
|
| 21 |
"kiigii/imagedream-ipmv-diffusers",
|
| 22 |
torch_dtype=torch.float16,
|
| 23 |
trust_remote_code=True,
|
|
|
|
| 24 |
)
|
| 25 |
pipe.load_ip_adapter()
|
| 26 |
pipe.to("cude")
|