yuancy's picture
Create README.md
d470897 verified
|
raw
history blame
232 Bytes

from diffusers import DiffusionPipeline

pipe = DiffusionPipeline.from_pretrained("Kwai-Kolors/Kolors-ControlNet-Pose")

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