I'm creating Dreambooths, LyCORIS, TIs, and LORAs. Here is my base model Serenity:
https://civitai.com/models/110426Suggestions left on my donation page (
https://www.buymeacoffee.com/malcolmrey ) are taken with the highest priority and you will be able to enjoy them way before they get released here. (I also accept custom requests)
As mentioned, via the donation page I accept custom requests, so feel free to engage with me there, I will answer all your questions :)
Weights for this model are available in Safetensors format.
Download them in the Files & versions tab.
1from diffusers import AutoPipelineForText2Image
2import torch
3
4device = "cuda" if torch.cuda.is_available() else "cpu"
5
6pipeline = AutoPipelineForText2Image.from_pretrained('runwayml/stable-diffusion-v1-5', torch_dtype=torch.float16).to(device)
7pipeline.load_lora_weights('Keltezaa/mckenna-grace', weight_name='lora-small-mckenna-grace-v1.safetensors')
8image = pipeline('homemade amateur portrait photo of young sks woman, by Gregory Crewdson, natural lighting, fair skin, ').images[0]
For more details, including weighting, merging and fusing LoRAs, check the
documentation on loading LoRAs in diffusers