Commit
·
7544e95
1
Parent(s):
a077f57
add author info html before launch
Browse files
app.py
CHANGED
|
@@ -240,9 +240,6 @@ with gr.Blocks(
|
|
| 240 |
|
| 241 |
with gr.Column():
|
| 242 |
gr.HTML(description)
|
| 243 |
-
|
| 244 |
-
with gr.Column():
|
| 245 |
-
gr.HTML(author_info)
|
| 246 |
|
| 247 |
with gr.Row(): # Build a row
|
| 248 |
with gr.Column(): # build a column section as the first item
|
|
@@ -273,6 +270,8 @@ with gr.Blocks(
|
|
| 273 |
label="Image Examples",
|
| 274 |
cache_examples=False
|
| 275 |
)
|
| 276 |
-
|
| 277 |
-
|
|
|
|
|
|
|
| 278 |
demo.launch(share=True)
|
|
|
|
| 240 |
|
| 241 |
with gr.Column():
|
| 242 |
gr.HTML(description)
|
|
|
|
|
|
|
|
|
|
| 243 |
|
| 244 |
with gr.Row(): # Build a row
|
| 245 |
with gr.Column(): # build a column section as the first item
|
|
|
|
| 270 |
label="Image Examples",
|
| 271 |
cache_examples=False
|
| 272 |
)
|
| 273 |
+
|
| 274 |
+
with gr.Column():
|
| 275 |
+
gr.HTML(author_info)
|
| 276 |
+
|
| 277 |
demo.launch(share=True)
|