How to use EvilEngine/ragnarok_novice_v2 with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("EvilEngine/realcartoon3d_v17", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("EvilEngine/ragnarok_novice_v2") prompt = "(masterpiece, top quality, best quality, official art, beautiful and aesthetic:1.2), 1 girl, As dawn breaks over the enchanting virtual world, a charming 17-year-old girl with flowing lavender hair, styled in elegant waves, stands atop a hill overlooking a picturesque landscape, where gentle waterfalls cascade into crystal-clear ponds, casting a mesmerizing rainbow reflection. , (from behide:1.4), looking back ,ragnarok_novice <lora:ragnarok_novice_v2:0.85>" image = pipe(prompt).images[0]
The community tab is the place to discuss and collaborate with the HF community!