broadfield-dev commited on
Commit
e47833a
·
verified ·
1 Parent(s): 6d26f2a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -4
app.py CHANGED
@@ -298,12 +298,14 @@ with gr.Blocks(title="Solar CME Detection") as demo:
298
  with gr.Column():
299
  gr.Markdown("### Outputs")
300
  report = gr.Textbox(label="Analysis Report", lines=10)
 
 
 
 
 
 
301
  preview = gr.Gallery(label="Input Preview (All Frames)")
302
  total_images = gr.Textbox(label="Total Images Available in Directory", value="0")
303
- with gr.Row():
304
- gallery = gr.Gallery(label="Frames with Detected Circles (Green: Detected, Orange: Growing Series)")
305
- gif_output = gr.File(label="Download Resulting GIF")
306
-
307
  # Fetch button action
308
  fetch_button.click(
309
  fn=handle_fetch,
 
298
  with gr.Column():
299
  gr.Markdown("### Outputs")
300
  report = gr.Textbox(label="Analysis Report", lines=10)
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,