Spaces:
Sleeping
Sleeping
fix naming
Browse files
app.py
CHANGED
@@ -14,7 +14,7 @@ def predict(img):
|
|
14 |
|
15 |
title = "Fruit Classifier"
|
16 |
|
17 |
-
gr.Interface(fn=predict, inputs="image", outputs="label",title=title)
|
18 |
-
|
19 |
|
20 |
|
|
|
14 |
|
15 |
title = "Fruit Classifier"
|
16 |
|
17 |
+
app = gr.Interface(fn=predict, inputs="image", outputs="label",title=title)
|
18 |
+
app.launch()
|
19 |
|
20 |
|