Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -39,11 +39,7 @@ def infer(prompt, negative_prompt, seed, randomize_seed, width, height, guidance
|
|
39 |
|
40 |
return image, seed
|
41 |
|
42 |
-
|
43 |
-
"Astronaut in a jungle, cold color palette, muted colors, detailed, 8k",
|
44 |
-
"An astronaut riding a green horse",
|
45 |
-
"A delicious ceviche cheesecake slice",
|
46 |
-
]
|
47 |
|
48 |
css="""
|
49 |
#col-container {
|
@@ -52,11 +48,11 @@ css="""
|
|
52 |
}
|
53 |
"""
|
54 |
|
55 |
-
with gr.Blocks(css=css) as demo:
|
56 |
|
57 |
with gr.Column(elem_id="col-container"):
|
58 |
gr.Markdown(f"""
|
59 |
-
#
|
60 |
""")
|
61 |
|
62 |
with gr.Row():
|
@@ -128,10 +124,7 @@ with gr.Blocks(css=css) as demo:
|
|
128 |
value=2, #Replace with defaults that work for your model
|
129 |
)
|
130 |
|
131 |
-
|
132 |
-
examples = examples,
|
133 |
-
inputs = [prompt]
|
134 |
-
)
|
135 |
gr.on(
|
136 |
triggers=[run_button.click, prompt.submit],
|
137 |
fn = infer,
|
|
|
39 |
|
40 |
return image, seed
|
41 |
|
42 |
+
|
|
|
|
|
|
|
|
|
43 |
|
44 |
css="""
|
45 |
#col-container {
|
|
|
48 |
}
|
49 |
"""
|
50 |
|
51 |
+
with gr.Blocks(css=css, theme="Hev832/Applio") as demo:
|
52 |
|
53 |
with gr.Column(elem_id="col-container"):
|
54 |
gr.Markdown(f"""
|
55 |
+
# ebara-pony-v3-sdxl
|
56 |
""")
|
57 |
|
58 |
with gr.Row():
|
|
|
124 |
value=2, #Replace with defaults that work for your model
|
125 |
)
|
126 |
|
127 |
+
|
|
|
|
|
|
|
128 |
gr.on(
|
129 |
triggers=[run_button.click, prompt.submit],
|
130 |
fn = infer,
|