Update app.py
Browse files
app.py
CHANGED
@@ -3,11 +3,16 @@ import gradio as gr
|
|
3 |
model = "Blane187/memcho-s1-ponyxl-lora-nochekaiser"
|
4 |
|
5 |
|
|
|
|
|
|
|
|
|
6 |
demo = gr.load(
|
7 |
model,
|
8 |
title="Mem-Cho, PonyXL lora stable diffusion",
|
9 |
description="see triger word here https://huggingface.co/Blane187/memcho-s1-ponyxl-lora-nochekaiser",
|
10 |
src="models",
|
11 |
theme="Blane187/fuchsia",
|
|
|
12 |
)
|
13 |
demo.launch()
|
|
|
3 |
model = "Blane187/memcho-s1-ponyxl-lora-nochekaiser"
|
4 |
|
5 |
|
6 |
+
examples = [
|
7 |
+
["memcho, blonde hair, blue eyes, blunt bangs, demon horns, fake horns, horns, short hair,"]
|
8 |
+
]
|
9 |
+
|
10 |
demo = gr.load(
|
11 |
model,
|
12 |
title="Mem-Cho, PonyXL lora stable diffusion",
|
13 |
description="see triger word here https://huggingface.co/Blane187/memcho-s1-ponyxl-lora-nochekaiser",
|
14 |
src="models",
|
15 |
theme="Blane187/fuchsia",
|
16 |
+
examples=examples,
|
17 |
)
|
18 |
demo.launch()
|