ireneng commited on
Commit
1bb6bd9
1 Parent(s): 0d6f0e3

fix naming

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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
- gr.launch()
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