akansha2k2 commited on
Commit
acfceff
1 Parent(s): d8f620d

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +15 -0
app.py ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ from transformers import pipeline
3
+
4
+ pipeline = pipeline(task="image-classification", model="akansha2k2/Burger_sandwich_pizza")
5
+
6
+ def predict(image):
7
+ predictions = pipeline(image)
8
+ return {p["label"]: p["score"] for p in predictions}
9
+
10
+ gr.Interface(
11
+ predict,
12
+ inputs=gr.Image(label="Upload junk food (sandwich,pizza,burgur) candidate", type="filepath"),
13
+ outputs=gr.Label(num_top_classes=2),
14
+ title="pizza or burgur or sandwich?",
15
+ ).launch()