Commit
·
669274a
1
Parent(s):
d5751eb
app
Browse files
app.py
CHANGED
|
@@ -14,7 +14,7 @@ def classify_image(image):
|
|
| 14 |
return(f"Predicted class: {pred_class}")
|
| 15 |
|
| 16 |
demo = gr.Interface(classify_image, gr.Image(shape=(224, 224)), "text")
|
| 17 |
-
demo.launch(
|
| 18 |
|
| 19 |
|
| 20 |
|
|
|
|
| 14 |
return(f"Predicted class: {pred_class}")
|
| 15 |
|
| 16 |
demo = gr.Interface(classify_image, gr.Image(shape=(224, 224)), "text")
|
| 17 |
+
demo.launch()
|
| 18 |
|
| 19 |
|
| 20 |
|