File size: 845 Bytes
12352de 928b4d0 12352de 13dd91d 1beb53f 79718a1 13dd91d 9de0115 1050f5e d5cfe0a 9047355 929f757 d5cfe0a 929f757 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
---
license: mit
tags:
- text-to-image
- stable-diffusion
- lora
- pony
library_name: diffusers
pipeline_tag: text-to-image
base_model:
- John6666/mala-anime-mix-nsfw-pony-xl-v5-sdxl
widget:
- text: ai hoshino, long hair, bangs, purple eyes, purple hair, symbol-shaped pupils
output:
url: images/example_n76iliscl.png
---
prompt:
ai hoshino, long hair, bangs, purple eyes, purple hair, symbol-shaped pupils
# example code
```
import torch
from diffusers import DiffusionPipeline
pipe = DiffusionPipeline.from_pretrained("John6666/mala-anime-mix-nsfw-pony-xl-v5-sdxl")
pipe.load_lora_weights("Blane187/ai-hoshino-s1-ponyxl-lora-nochekaise")
pipe.to('cuda')
image = pipe(
prompt,
negative_prompt=negative_prompt,
width=832,
height=1216,
guidance_scale=7,
num_inference_steps=28
).images[0]
image
``` |