Update app.py
Browse files
app.py
CHANGED
|
@@ -16,7 +16,7 @@ description = "An ultrasound tumor classifier trained on a small dataset with fa
|
|
| 16 |
image = gr.inputs.Image()
|
| 17 |
label = gr.outputs.Label()
|
| 18 |
examples = ['CYST.png', 'FA.png', 'IDC.png']
|
| 19 |
-
interpretation='
|
| 20 |
|
| 21 |
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label,title=title,description=description, examples=examples, interpretation=interpretation)
|
| 22 |
intf.launch(inline=False)
|
|
|
|
| 16 |
image = gr.inputs.Image()
|
| 17 |
label = gr.outputs.Label()
|
| 18 |
examples = ['CYST.png', 'FA.png', 'IDC.png']
|
| 19 |
+
interpretation='default'
|
| 20 |
|
| 21 |
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label,title=title,description=description, examples=examples, interpretation=interpretation)
|
| 22 |
intf.launch(inline=False)
|