t5-v1_1-xxl / README.md
FR1NG3R's picture
Create README.md
5841387 verified
|
raw
history blame
220 Bytes

from diffusers import DiffusionPipeline

pipe = DiffusionPipeline.from_pretrained("DeepFloyd/IF-I-XL-v1.0")

prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0]