How to use AuraDiffusion/16ch-vae with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("AuraDiffusion/16ch-vae", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0]
Hello,I was wondering if you might answer me two questions:
what were the specific settings you used when you trained the vae?
why did you choose fp16 rather than bf16?
· Sign up or log in to comment