Asseh commited on
Commit
1a98b4f
·
verified ·
1 Parent(s): 6229226

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +18 -0
app.py ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Use a pipeline as a high-level helper
2
+ from transformers import pipeline
3
+
4
+ pipe = pipeline("image-classification", model="julien-c/hotdog-not-hotdog")
5
+ def predict(input_img):
6
+ predictions = pipeline(input_img)
7
+ return input_img, {p["label"]: p["score"] for p in predictions}
8
+
9
+ import gradio as gr
10
+ gradio_app = gr.Interface(
11
+ predict,
12
+ inputs = gr.Image(label="select hot dot candiadate", sources=['upload', 'webcam'], type='pil'),
13
+ outputs = [gr.Image(label="Processed Image"), gr.Label(label="Result", num_top_classes=2)],
14
+ title="Hot Dog? or Not?"
15
+ )
16
+
17
+ if __name__ =="__main__":
18
+ gradio_app.launch()