Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -118,5 +118,14 @@ examples = [
|
|
118 |
"test_images/unknown_19.jpg",
|
119 |
]
|
120 |
|
121 |
-
iface = gr.Interface(fn=recognize_image,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
122 |
iface.launch(inline=False)
|
|
|
118 |
"test_images/unknown_19.jpg",
|
119 |
]
|
120 |
|
121 |
+
iface = gr.Interface(fn=recognize_image,
|
122 |
+
inputs=image,
|
123 |
+
outputs=label,
|
124 |
+
examples=examples,
|
125 |
+
title="Parrot60 Classifier",
|
126 |
+
description=(
|
127 |
+
f"""This classifier's API is also integrated to another [{website}](https://parrot-classifier-60.netlify.app/).
|
128 |
+
This classifier can classify 60 parrot species with 93% accuracy."""
|
129 |
+
)
|
130 |
+
)
|
131 |
iface.launch(inline=False)
|