Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -378,11 +378,11 @@ hr {
|
|
| 378 |
"""
|
| 379 |
|
| 380 |
with gr.Blocks() as demo:
|
|
|
|
|
|
|
| 381 |
cytof_state = gr.State(CytofImage())
|
| 382 |
# used in scenrios where users define/remove channels multiple times
|
| 383 |
cytof_original_state = gr.State(CytofImage())
|
| 384 |
-
|
| 385 |
-
gr.HTML(custom_css)
|
| 386 |
|
| 387 |
gr.Markdown('<div class="h-1">Step 1. Upload images</div>')
|
| 388 |
gr.Markdown('<div class="h-2">You may upload one or two files depending on your use case.</div>')
|
|
@@ -601,5 +601,5 @@ with gr.Blocks() as demo:
|
|
| 601 |
|
| 602 |
|
| 603 |
if __name__ == "__main__":
|
| 604 |
-
demo.launch(
|
| 605 |
|
|
|
|
| 378 |
"""
|
| 379 |
|
| 380 |
with gr.Blocks() as demo:
|
| 381 |
+
gr.HTML(custom_css)
|
| 382 |
+
|
| 383 |
cytof_state = gr.State(CytofImage())
|
| 384 |
# used in scenrios where users define/remove channels multiple times
|
| 385 |
cytof_original_state = gr.State(CytofImage())
|
|
|
|
|
|
|
| 386 |
|
| 387 |
gr.Markdown('<div class="h-1">Step 1. Upload images</div>')
|
| 388 |
gr.Markdown('<div class="h-2">You may upload one or two files depending on your use case.</div>')
|
|
|
|
| 601 |
|
| 602 |
|
| 603 |
if __name__ == "__main__":
|
| 604 |
+
demo.launch()
|
| 605 |
|