Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -54,7 +54,7 @@ if torch.cuda.is_available():
|
|
54 |
if ENABLE_REFINER:
|
55 |
refiner.unet = torch.compile(refiner.unet, mode="reduce_overhead", fullgraph=True)
|
56 |
|
57 |
-
|
58 |
@spaces.GPU
|
59 |
def infer(
|
60 |
prompt: str,
|
@@ -198,11 +198,10 @@ theme = gr.themes.Glass(
|
|
198 |
|
199 |
with gr.Blocks(css="footer{display:none !important}", theme=theme) as demo:
|
200 |
|
201 |
-
|
202 |
-
|
203 |
-
gr.DuplicateButton()
|
204 |
|
205 |
-
|
206 |
prompt = gr.Text(
|
207 |
label="Prompt",
|
208 |
show_label=False,
|
|
|
54 |
if ENABLE_REFINER:
|
55 |
refiner.unet = torch.compile(refiner.unet, mode="reduce_overhead", fullgraph=True)
|
56 |
|
57 |
+
|
58 |
@spaces.GPU
|
59 |
def infer(
|
60 |
prompt: str,
|
|
|
198 |
|
199 |
with gr.Blocks(css="footer{display:none !important}", theme=theme) as demo:
|
200 |
|
201 |
+
gr.Markdown(MARKDOWN)
|
202 |
+
gr.DuplicateButton()
|
|
|
203 |
|
204 |
+
with gr.Group():
|
205 |
prompt = gr.Text(
|
206 |
label="Prompt",
|
207 |
show_label=False,
|