Sreekaran1704 commited on
Commit ·
e2bf373
1
Parent(s): f8f2a2e
app.py
Browse files
app.py
CHANGED
|
@@ -14,7 +14,7 @@ def process_image(image):
|
|
| 14 |
return resized_image
|
| 15 |
|
| 16 |
image = gr.Image(type="pil")
|
| 17 |
-
label = gr.
|
| 18 |
examples = ['No.jpeg','beard.jpeg','patchy.jpeg']
|
| 19 |
|
| 20 |
intf = gr.Interface(fn = classify_image, inputs = image, outputs = label, examples = examples)
|
|
|
|
| 14 |
return resized_image
|
| 15 |
|
| 16 |
image = gr.Image(type="pil")
|
| 17 |
+
label = gr.Label()
|
| 18 |
examples = ['No.jpeg','beard.jpeg','patchy.jpeg']
|
| 19 |
|
| 20 |
intf = gr.Interface(fn = classify_image, inputs = image, outputs = label, examples = examples)
|