Gorgefound's picture
Update README.md
3436b3f verified
|
raw
history blame
1.01 kB
metadata
license: creativeml-openrail-m
tags:
  - text-to-image
  - stable-diffusion
  - safetensors
  - lora
  - anime
  - pony
library_name: diffusers
base_model: John6666/mala-anime-mix-nsfw-pony-xl-v5-sdxl-spo
widget:
  - text: >-
      psg stocking, blue eyes, blue hair, colored inner hair, hair bow, long
      hair, multicolored hair, pink hair, two-tone hair, bangs, blunt bangs,
    output:
      url: images/example_tuu2prmmc.png

use model like this:


from diffusers import DiffusionPipeline

# Step 1: Load the base pipeline
pipeline = DiffusionPipeline.from_pretrained("John6666/mala-anime-mix-nsfw-pony-xl-v3-sdxl")

# Step 2: Load the LoRA weights into the pipeline
pipeline.load_lora_weights("nevreal/stocking-anarchy-anime-ponyxl-lora-nochekaiser")

# Step 3: Define a prompt and generate an image
prompt = "psg stocking, blue eyes, blue hair, colored inner hair, hair bow, long hair, multicolored hair, pink hair, two-tone hair, bangs, blunt bangs,"
image = pipeline(prompt).images[0]


image.show()