Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -116,7 +116,7 @@ def predict_brain_age(nifti_file, actual_age, sex):
|
|
116 |
bad_output_html = f"<span style='color:{color}; font-weight:bold;'>Brain Age Difference (BAD): {brain_age_difference:.2f} years</span>"
|
117 |
|
118 |
# Return formatted outputs
|
119 |
-
return f"
|
120 |
|
121 |
# 🔹 Gradio Interface Setup
|
122 |
with gr.Blocks() as demo:
|
@@ -139,7 +139,7 @@ with gr.Blocks() as demo:
|
|
139 |
|
140 |
with gr.Column(scale=2):
|
141 |
brain_age_output = gr.Textbox(label="Predicted Brain Age", interactive=False)
|
142 |
-
bad_output = gr.HTML(label="Brain Age Difference
|
143 |
|
144 |
submit_button.click(
|
145 |
fn=predict_brain_age,
|
|
|
116 |
bad_output_html = f"<span style='color:{color}; font-weight:bold;'>Brain Age Difference (BAD): {brain_age_difference:.2f} years</span>"
|
117 |
|
118 |
# Return formatted outputs
|
119 |
+
return f"Predicted Brain Age: {predicted_brain_age_corrected:.2f} years", bad_output_html
|
120 |
|
121 |
# 🔹 Gradio Interface Setup
|
122 |
with gr.Blocks() as demo:
|
|
|
139 |
|
140 |
with gr.Column(scale=2):
|
141 |
brain_age_output = gr.Textbox(label="Predicted Brain Age", interactive=False)
|
142 |
+
bad_output = gr.HTML(label="Brain Age Difference") # Use gr.HTML for colored text
|
143 |
|
144 |
submit_button.click(
|
145 |
fn=predict_brain_age,
|