Spaces:
Runtime error
Runtime error
Commit
·
d703200
1
Parent(s):
b48f0e1
Add examples, title
Browse files
app.py
CHANGED
@@ -1,3 +1,11 @@
|
|
1 |
import gradio as gr
|
2 |
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
+
#Our examples
|
4 |
+
examples = [
|
5 |
+
["masterpiece, best quality, 1girl, blonde, colorful, clouds, outdoors, falling leaves, smiling, whimsical"],
|
6 |
+
["masterpiece, best quality, landscape"],
|
7 |
+
["masterpiece, best quality, 1girl, aqua eyes, baseball cap, blonde hair, looking at viewer, shirt, short hair, simple background, solo, upper body, yellow shirt"]
|
8 |
+
]
|
9 |
+
|
10 |
+
#Start the UI
|
11 |
+
gr.Interface.load("models/NoCrypt/SomethingV2_2", examples=examples, title="Something Frontend App", description="A simple anime style image generator").launch()
|