How to use prithivMLmods/Simple-Doodle-SD3.5-Turbo 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-diffusion-3.5-large-turbo", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("prithivMLmods/Simple-Doodle-SD3.5-Turbo") prompt = "Simple Doodle, A cartoon drawing of a woman with long dark brown hair and a white face. The womans face has black eyes, a black nose, and a black smile. She is wearing a peach colored top with a white collar. The background is a light beige color." image = pipe(prompt).images[0]