SDXL LoRA
Collection
A few SDXL-LoRA models I've trained
β’
20 items
β’
Updated
β’
6
(CivitAI)
As you all know, there are not enough cat images on the internet.
This HuMeow (Human + Meow) is an SDXL LoRA which was designed to help solve this problem by generating human(oid) cats as well as causing random cats to appear in scenes when the trigger word 'HuMeow' is used.
This LoRA was trained with CivitAI LoRA trainer upon images generated with MidJourney v6.
The training dataset is available for download
You should use HuMeow
to trigger the image generation.
Weights for this model are available in Safetensors format.
Download them in the Files & versions tab.
from diffusers import AutoPipelineForText2Image
import torch
pipeline = AutoPipelineForText2Image.from_pretrained('stabilityai/stable-diffusion-xl-base-1.0', torch_dtype=torch.float16).to('cuda')
pipeline.load_lora_weights('Norod78/sdxl-humeow-lora', weight_name='SDXL-HuMeow-LoRA-r8-000003.safetensors')
image = pipeline('The Mona Lisa HuMeow ').images[0]
For more details, including weighting, merging and fusing LoRAs, check the documentation on loading LoRAs in diffusers
Base model
stabilityai/stable-diffusion-xl-base-1.0