Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -301,11 +301,12 @@ with gr.Blocks(title="Solar CME Detection") as demo:
|
|
301 |
|
302 |
with gr.Row():
|
303 |
with gr.Column():
|
304 |
-
gallery = gr.Gallery(label="Frames with Detected Circles (Green: Detected, Orange: Growing Series)")
|
305 |
gif_output = gr.File(label="Download Resulting GIF")
|
|
|
|
|
306 |
with gr.Column():
|
307 |
-
preview = gr.Gallery(label="Input Preview (All Frames)")
|
308 |
total_images = gr.Textbox(label="Total Images Available in Directory", value="0")
|
|
|
309 |
# Fetch button action
|
310 |
fetch_button.click(
|
311 |
fn=handle_fetch,
|
|
|
301 |
|
302 |
with gr.Row():
|
303 |
with gr.Column():
|
|
|
304 |
gif_output = gr.File(label="Download Resulting GIF")
|
305 |
+
gallery = gr.Gallery(label="Frames with Detected Circles (Green: Detected, Orange: Growing Series)")
|
306 |
+
|
307 |
with gr.Column():
|
|
|
308 |
total_images = gr.Textbox(label="Total Images Available in Directory", value="0")
|
309 |
+
preview = gr.Gallery(label="Input Preview (All Frames)")
|
310 |
# Fetch button action
|
311 |
fetch_button.click(
|
312 |
fn=handle_fetch,
|