Spaces:
Sleeping
Sleeping
allow sharing
Browse files
app.py
CHANGED
@@ -13,5 +13,5 @@ img=gr.Image(type="pil")
|
|
13 |
label=gr.Label()
|
14 |
examples=["0.jpeg","2.jpeg","4.jpeg"]
|
15 |
|
16 |
-
intf=gr.Interface(title="PCa Detection ProtoType",description="This is Protorype for our model
|
17 |
-
intf.launch(inline=False)
|
|
|
13 |
label=gr.Label()
|
14 |
examples=["0.jpeg","2.jpeg","4.jpeg"]
|
15 |
|
16 |
+
intf=gr.Interface(title="PCa Detection ProtoType",description="This is Protorype for our model prediction",fn=classify_images,inputs=img,outputs=label,examples=examples)
|
17 |
+
intf.launch(inline=False,share=True)
|