Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -17,4 +17,4 @@ def predict_image(img):
|
|
17 |
image = gr.inputs.Image(shape=(224,224))
|
18 |
label = gr.outputs.Label(num_top_classes=2)
|
19 |
|
20 |
-
gr.Interface(fn=predict_image, inputs=image, outputs=label,interpretation='default').launch()
|
|
|
17 |
image = gr.inputs.Image(shape=(224,224))
|
18 |
label = gr.outputs.Label(num_top_classes=2)
|
19 |
|
20 |
+
gr.Interface(fn=predict_image, inputs=image, outputs=label, interpretation='default', title="Mammogram classification").launch()
|