Diffusers How to use renderartist/doodletoonflux with Diffusers:
pip install -U diffusers transformers accelerate
import torch
from diffusers import DiffusionPipeline
# switch to "mps" for apple devices
pipe = DiffusionPipeline.from_pretrained("black-forest-labs/FLUX.1-dev", dtype=torch.bfloat16, device_map="cuda")
pipe.load_lora_weights("renderartist/doodletoonflux")
prompt = "d00dlet00n colorful vivid psychedlic visions warped view children's illustration from a story book illustration of a cute frog monster in a sci-fi cyberpunk space theatrical king costume with boots stylized open cahracter full body of the mascot in action pose with a tongue hanging out in a castle interior room texture of the colored pencil on the paper quirky doodle simplistic a speech bubble near his head says \"Doodle Toon\" in fun playful balloon font"
image = pipe(prompt).images[0]