FrancescoLR commited on
Commit
57cee88
·
verified ·
1 Parent(s): 2ed27e2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -3
app.py CHANGED
@@ -87,6 +87,10 @@ def preprocess_mri(nifti_path):
87
  @spaces.GPU(duration=90)
88
  def predict_brain_age(nifti_file, actual_age):
89
  return f"Brain Age estimate: 42"
 
 
 
 
90
  """
91
  def predict_brain_age(nifti_file, actual_age): #sex
92
  if not os.path.exists(nifti_file.name):
@@ -153,9 +157,9 @@ with gr.Blocks() as demo:
153
  bad_output = gr.Textbox(label="Brain Age Difference", interactive=False)
154
 
155
  submit_button.click(
156
- fn=predict_brain_age,
157
- #inputs=[mri_input, age_input], #sex_input
158
- #outputs=[brain_age_output, bad_output]
159
  )
160
 
161
  gr.Markdown("""
 
87
  @spaces.GPU(duration=90)
88
  def predict_brain_age(nifti_file, actual_age):
89
  return f"Brain Age estimate: 42"
90
+
91
+ def predict_brain_age_wrapper(nifti_file: gr.File, actual_age: float) -> tuple[str, str]:
92
+ return predict_brain_age(nifti_file, actual_age)
93
+
94
  """
95
  def predict_brain_age(nifti_file, actual_age): #sex
96
  if not os.path.exists(nifti_file.name):
 
157
  bad_output = gr.Textbox(label="Brain Age Difference", interactive=False)
158
 
159
  submit_button.click(
160
+ fn=predict_brain_age_wrapper,
161
+ inputs=[mri_input, age_input], #sex_input
162
+ outputs=[brain_age_output, bad_output]
163
  )
164
 
165
  gr.Markdown("""