philipp-zettl
commited on
Commit
•
8bf10b5
1
Parent(s):
cec3cb4
Update app.py
Browse files
app.py
CHANGED
@@ -1,4 +1,14 @@
|
|
1 |
import gradio as gr
|
2 |
import os
|
3 |
|
4 |
-
gr.load(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
import gradio as gr
|
2 |
import os
|
3 |
|
4 |
+
app = gr.load(
|
5 |
+
"models/philipp-zettl/jon_juarez-lora",
|
6 |
+
hf_token=os.environ.get('HF_TOKEN')
|
7 |
+
)
|
8 |
+
|
9 |
+
app.examples = [
|
10 |
+
"Colorful line shading by JON_JUAREZ a dark cave with toxic mushrooms",
|
11 |
+
|
12 |
+
]
|
13 |
+
app inputs = ["text", gr.Slider("seed")]
|
14 |
+
app.launch()
|