Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -153,7 +153,7 @@ with gr.Blocks() as demo:
|
|
153 |
brain_age_output = gr.Textbox(label="Predicted Brain Age", interactive=False)
|
154 |
bad_output = gr.Textbox(label="Brain Age Difference", interactive=False)
|
155 |
|
156 |
-
submit_button.click(fn=predict_brain_age, inputs=[
|
157 |
|
158 |
gr.Markdown("""
|
159 |
**Disclaimer:** This is a research tool and is not intended for clinical use.
|
|
|
153 |
brain_age_output = gr.Textbox(label="Predicted Brain Age", interactive=False)
|
154 |
bad_output = gr.Textbox(label="Brain Age Difference", interactive=False)
|
155 |
|
156 |
+
submit_button.click(fn=predict_brain_age, inputs=[age_input, age_input, sex_input], outputs=[brain_age_output, bad_output])
|
157 |
|
158 |
gr.Markdown("""
|
159 |
**Disclaimer:** This is a research tool and is not intended for clinical use.
|