How to use stabilityai/stable-cascade with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("stabilityai/stable-cascade", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0]
For now i'll probably be sticking to SDXL, largely - because I Do'nt have the funds to keep up with the GPU constraints on the higher ends :PBut there is some amazing content to be made with this!
· Sign up or log in to comment