Diffusers How to use EvilEngine/realcartoon3d_v17 with Diffusers:
pip install -U diffusers transformers accelerate
import torch
from diffusers import DiffusionPipeline
# switch to "mps" for apple devices
pipe = DiffusionPipeline.from_pretrained("John6666/am-i-real-v45-sd15", dtype=torch.bfloat16, device_map="cuda")
pipe.load_lora_weights("EvilEngine/realcartoon3d_v17")
prompt = "(RAW photo, best quality),(realistic, photo-Realistic:1.1),best quality,masterpiece,beautiful and aesthetic,16K,(HDR:1.2),high contrast,(vibrant color:1.3),(muted colors, dim colors, soothing tones:0),cinematic lighting,ambient lighting,sidelighting,Exquisite details and textures,cinematic shot,Warm tone,(Bright and intense:1.1),wide shot,by xm887,ultra realistic illustration,siena natural ratio,head to thigh portrait,Curly perm with shiny long blond hair,(a look of surprise:1.4),blue loose-fitting,off-the-shoulder blouse,skinny jeans,a beautiful Ukrainian model,icy eyeshadow,Pale skin,Rayben Sunglasses,Art by Josephine Wall and Stephanie Law,Linda Ravenscroft,Kinuko Y. Craft. anime style.,"
image = pipe(prompt).images[0]