Stable Diffusion - LoRAs
Collection
7 items • Updated
How to use vislupus/SD1.5-LoRA-Chae-Yeon with Diffusers:
pip install -U diffusers transformers accelerate
import torch
from diffusers import DiffusionPipeline
# switch to "mps" for apple devices
pipe = DiffusionPipeline.from_pretrained("GraydientPlatformAPI/realcartoon-real17", dtype=torch.bfloat16, device_map="cuda")
pipe.load_lora_weights("vislupus/SD1.5-LoRA-Chae-Yeon")
prompt = "chae_yeon, Chae Yeon, a stunning Japanese woman in traditional Japanese armor, filled with a Shinto temple"
image = pipe(prompt).images[0]import torch
from diffusers import DiffusionPipeline
# switch to "mps" for apple devices
pipe = DiffusionPipeline.from_pretrained("GraydientPlatformAPI/realcartoon-real17", dtype=torch.bfloat16, device_map="cuda")
pipe.load_lora_weights("vislupus/SD1.5-LoRA-Chae-Yeon")
prompt = "chae_yeon, Chae Yeon, a stunning Japanese woman in traditional Japanese armor, filled with a Shinto temple"
image = pipe(prompt).images[0]





This is a LoRA model based on Chae Yeon, the popular Korean pop singer known for her hit single "Two of Us". This model is designed to generate images resembling her style and appearance.
For optimal image generation, it’s recommended to pair this LoRA with the RealCartoon-Realistic model.
To generate images featuring Chae Yeon, make sure to include the trigger keyword chae_yeon in your prompt.
The model weights are provided in Safetensors format and can be downloaded from the Files & Versions tab.
Base model
GraydientPlatformAPI/realcartoon-real17