Instructions to use microsoft/vq-diffusion-ithq with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use microsoft/vq-diffusion-ithq with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("microsoft/vq-diffusion-ithq", 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 ·
56f5cfa
1
Parent(s): 166ec28
Update README.md
Browse files
README.md
CHANGED
|
@@ -15,7 +15,7 @@ license: mit
|
|
| 15 |
import torch
|
| 16 |
from diffusers import VQDiffusionPipeline
|
| 17 |
|
| 18 |
-
pipeline = VQDiffusionPipeline.from_pretrained("microsoft/vq-diffusion-ithq", torch_dtype=torch.float16
|
| 19 |
pipeline = pipeline.to("cuda")
|
| 20 |
|
| 21 |
output = pipeline("teddy bear playing in the pool", truncation_rate=0.86)
|
|
|
|
| 15 |
import torch
|
| 16 |
from diffusers import VQDiffusionPipeline
|
| 17 |
|
| 18 |
+
pipeline = VQDiffusionPipeline.from_pretrained("microsoft/vq-diffusion-ithq", torch_dtype=torch.float16)
|
| 19 |
pipeline = pipeline.to("cuda")
|
| 20 |
|
| 21 |
output = pipeline("teddy bear playing in the pool", truncation_rate=0.86)
|