Update app.py
Browse files
app.py
CHANGED
@@ -2,6 +2,16 @@ import gradio as gr
|
|
2 |
import os
|
3 |
|
4 |
model = "Blane187/miyako-saitou-s1-ponyxl-lora-nochekaiser"
|
|
|
|
|
|
|
5 |
|
6 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
demo.launch()
|
|
|
2 |
import os
|
3 |
|
4 |
model = "Blane187/miyako-saitou-s1-ponyxl-lora-nochekaiser"
|
5 |
+
examples = [
|
6 |
+
["miyako saitou, long hair, brown hair, brown eyes,"]
|
7 |
+
]
|
8 |
|
9 |
+
|
10 |
+
demo = gr.load(
|
11 |
+
model,
|
12 |
+
src="models",
|
13 |
+
theme="Blane187/fuchsia",
|
14 |
+
examples=examples
|
15 |
+
|
16 |
+
)
|
17 |
demo.launch()
|