Update app.py
Browse files
app.py
CHANGED
|
@@ -27,7 +27,7 @@ with gr.Blocks(theme='Nymbo/Alyx_Theme') as demo:
|
|
| 27 |
Upload your xray to create a radiology report.
|
| 28 |
""")
|
| 29 |
image = gr.Image(type="pil",label="Upload your x-ray")
|
| 30 |
-
classify_btn = gr.Button("
|
| 31 |
label = gr.Label(label="Radiology Report")
|
| 32 |
examples = gr.Examples(['arm.png', 'hand.png', 'broken1.jpg','nbroken1.jpg'], image)
|
| 33 |
classify_btn.click(fn=classify_image, inputs=image, outputs=label)
|
|
|
|
| 27 |
Upload your xray to create a radiology report.
|
| 28 |
""")
|
| 29 |
image = gr.Image(type="pil",label="Upload your x-ray")
|
| 30 |
+
classify_btn = gr.Button("Create Report")
|
| 31 |
label = gr.Label(label="Radiology Report")
|
| 32 |
examples = gr.Examples(['arm.png', 'hand.png', 'broken1.jpg','nbroken1.jpg'], image)
|
| 33 |
classify_btn.click(fn=classify_image, inputs=image, outputs=label)
|