Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -999,6 +999,14 @@ with gr.Blocks(theme=gr.themes.Soft(), css=css, head=head) as demo:
|
|
999 |
value=opt.seed,
|
1000 |
)
|
1001 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1002 |
### Attach event handlers
|
1003 |
|
1004 |
for idx, btn in enumerate(iface.btn_semantics):
|
@@ -1292,5 +1300,6 @@ async () => {{
|
|
1292 |
)
|
1293 |
|
1294 |
|
|
|
1295 |
if __name__ == '__main__':
|
1296 |
demo.queue(max_size=20).launch()
|
|
|
999 |
value=opt.seed,
|
1000 |
)
|
1001 |
|
1002 |
+
gr.HTML(
|
1003 |
+
"""
|
1004 |
+
<div style="display: flex; justify-content: center; align-items: center; text-align: center;">
|
1005 |
+
Deadline animation originally by <a href="https://codepen.io/jtrancozo/pen/mEoEVw">Jonathan Trancozo</a>.
|
1006 |
+
</div>
|
1007 |
+
"""
|
1008 |
+
)
|
1009 |
+
|
1010 |
### Attach event handlers
|
1011 |
|
1012 |
for idx, btn in enumerate(iface.btn_semantics):
|
|
|
1300 |
)
|
1301 |
|
1302 |
|
1303 |
+
|
1304 |
if __name__ == '__main__':
|
1305 |
demo.queue(max_size=20).launch()
|