Diffusers How to use strangerzonehf/Dls-ART 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("strangerzonehf/Dls-ART")
prompt = "Dls Sketch, A cartoon drawing of a woman with long brown hair. The woman has a white face with black eyes. The background is plain white. The drawing is done in black lines."
image = pipe(prompt).images[0]