TibbtechUser commited on
Commit
093598b
·
verified ·
1 Parent(s): 6c42951

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -473,11 +473,12 @@ gallery_images = natsorted(load_gallery_images())
473
  with gr.Blocks() as demo:
474
  gr.Markdown("# Map My Sections\n### This GUI is part of the submission to the Allen Institute's Map My Sections tool by Tibbling Technologies.")
475
 
476
- gr.Markdown("### Step 1: Upload your sample, currently only .nii.gz and .png supported")
 
 
477
  with gr.Row():
478
  nifti_file = gr.File(label="File Upload")
479
  with gr.Column():
480
- gr.Markdown("### Step 2: Select your sample and data type.")
481
  sample_type = gr.Dropdown(choices=["CCF registered Sample", "Custom Sample"], value="CCF registered Sample", label="Sample Type")
482
  data_type = gr.Radio(choices=["2D", "3D"], value="3D", label="Data Type")
483
 
 
473
  with gr.Blocks() as demo:
474
  gr.Markdown("# Map My Sections\n### This GUI is part of the submission to the Allen Institute's Map My Sections tool by Tibbling Technologies.")
475
 
476
+ with gr.Column():
477
+ gr.Markdown("### Step 1: Upload your sample, currently only .nii.gz and .png supported")
478
+ gr.Markdown("### Step 2: Select your sample and data type.")
479
  with gr.Row():
480
  nifti_file = gr.File(label="File Upload")
481
  with gr.Column():
 
482
  sample_type = gr.Dropdown(choices=["CCF registered Sample", "Custom Sample"], value="CCF registered Sample", label="Sample Type")
483
  data_type = gr.Radio(choices=["2D", "3D"], value="3D", label="Data Type")
484