Kennethdot commited on
Commit
e544d7a
·
verified ·
1 Parent(s): 720d2e0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -4,4 +4,5 @@ from transformers import pipeline, AutoProcessor
4
  model_name = "Kennethdot/convnext_finetuned_ghanaian_food"
5
  pipe = pipeline("image-classification", model=model_name)
6
 
7
- gr.Interface.from_pipeline(pipe).launch()
 
 
4
  model_name = "Kennethdot/convnext_finetuned_ghanaian_food"
5
  pipe = pipeline("image-classification", model=model_name)
6
 
7
+ demo = gr.Interface.from_pipeline(pipe)
8
+ demo.launch()