chg
Browse files
app.py
CHANGED
|
@@ -17,4 +17,7 @@ examples = ['grizzly.jpg']
|
|
| 17 |
interpretation='default'
|
| 18 |
enable_queue=True
|
| 19 |
|
| 20 |
-
|
|
|
|
|
|
|
|
|
|
|
|
| 17 |
interpretation='default'
|
| 18 |
enable_queue=True
|
| 19 |
|
| 20 |
+
img = gr.Image()
|
| 21 |
+
lbl = gr.Label()
|
| 22 |
+
|
| 23 |
+
gr.Interface(fn=predict,inputs=img,outputs=lbl,title=title,description=description,examples=examples).launch()
|