Spaces:
Sleeping
Sleeping
let's deploy to huggingface spaces
Browse files
app.py
CHANGED
|
@@ -11,6 +11,7 @@ def classify_image(img):
|
|
| 11 |
|
| 12 |
image = gr.inputs.Image()
|
| 13 |
label = gr.outputs.Label()
|
|
|
|
| 14 |
|
| 15 |
intf = gr.Interface(fn=classify_image, inputs =image, outputs=label)
|
| 16 |
intf.launch(inline=False)
|
|
|
|
| 11 |
|
| 12 |
image = gr.inputs.Image()
|
| 13 |
label = gr.outputs.Label()
|
| 14 |
+
examples = ['Cancer.png', 'Normal.png', 'NormalDif.png']
|
| 15 |
|
| 16 |
intf = gr.Interface(fn=classify_image, inputs =image, outputs=label)
|
| 17 |
intf.launch(inline=False)
|