How to use Danrisi/NiceGirls_Anima with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("Danrisi/NiceGirls_Anima", dtype=torch.bfloat16, device_map="cuda") prompt = "RAW photo, photography, amateur quality, candid style. spider-gwen from Spider-Verse kneeling on the floor, she is barefoot, femine body with wide hips, sexy soles, blond hair, relaxed expression, looking back at the viewer, from back view angle, on kneels. her ankles locked in wooden stocks," image = pipe(prompt).images[0]