I was going by the handle "worstimever" when I had created the images used in the dataset so that is the name of the LoRA.
What this colorful chaotic cartoon style is lacking in constancy is made up for with by its personality.
I followed
AI_Characters's guide on LoRA settings but with my own artstyle regulation images.
☕ Like what I do?
☕☕ Buy me a coffee or two!
☕
Weights for this model are available in Safetensors format.
Download them in the Files & versions tab.
1from diffusers import AutoPipelineForText2Image
2import torch
3
4pipeline = AutoPipelineForText2Image.from_pretrained('stabilityai/stable-diffusion-xl-base-1.0', torch_dtype=torch.float16).to('cuda')
5pipeline.load_lora_weights('DoctorDiffusion/digital-doodle-cartoon-worstimever-artstyle-218mb-xl-lora', weight_name='DD-wte-artstyle-XL-v1.safetensors')
6image = pipeline('`wte artstyle`').images[0]
For more details, including weighting, merging and fusing LoRAs, check the
documentation on loading LoRAs in diffusers