Update app.py
Browse files
app.py
CHANGED
|
@@ -15,6 +15,6 @@ def classify_img(img):
|
|
| 15 |
|
| 16 |
image =gr.inputs.Image(shape=(192,192))
|
| 17 |
label =gr.outputs.Label()
|
| 18 |
-
example=['
|
| 19 |
intf=gr.Interface(fn=classify_img,inputs=image,outputs=label,examples=example)
|
| 20 |
intf.launch(inline=False,share=False)
|
|
|
|
| 15 |
|
| 16 |
image =gr.inputs.Image(shape=(192,192))
|
| 17 |
label =gr.outputs.Label()
|
| 18 |
+
example=['Acne.jpg','Eczema.jpg']
|
| 19 |
intf=gr.Interface(fn=classify_img,inputs=image,outputs=label,examples=example)
|
| 20 |
intf.launch(inline=False,share=False)
|