Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -112,10 +112,13 @@ with gr.Blocks(css="style.css") as demo:
|
|
| 112 |
gr.Button("🔍 Calculate").click(
|
| 113 |
predict,
|
| 114 |
inputs=[decomp_in, biceps_in, rigor_in, livor_in],
|
| 115 |
-
outputs=
|
|
|
|
|
|
|
| 116 |
)
|
| 117 |
with gr.Column():
|
| 118 |
-
gr.Textbox(label="🧾 Result", lines=10, elem_id="result_box")
|
|
|
|
| 119 |
|
| 120 |
gr.Markdown("---")
|
| 121 |
gr.Markdown('<a href="https://docs.google.com/forms/d/e/1FAIpQLSc2xKfhGo5fsyTiq8CcdSc_PelNbMpo42HbaehGhghnqqPz0g/viewform" target="_blank">💬 Send Feedback</a>')
|
|
|
|
| 112 |
gr.Button("🔍 Calculate").click(
|
| 113 |
predict,
|
| 114 |
inputs=[decomp_in, biceps_in, rigor_in, livor_in],
|
| 115 |
+
outputs=output_box
|
| 116 |
+
)
|
| 117 |
+
|
| 118 |
)
|
| 119 |
with gr.Column():
|
| 120 |
+
output_box = gr.Textbox(label="🧾 Result", lines=10, elem_id="result_box")
|
| 121 |
+
|
| 122 |
|
| 123 |
gr.Markdown("---")
|
| 124 |
gr.Markdown('<a href="https://docs.google.com/forms/d/e/1FAIpQLSc2xKfhGo5fsyTiq8CcdSc_PelNbMpo42HbaehGhghnqqPz0g/viewform" target="_blank">💬 Send Feedback</a>')
|