siddardha commited on
Commit
53296bc
1 Parent(s): acd65ff

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ import gradio as gr
2
+ from transformers import pipeline
3
+ pipe = pipeline("image-classification")
4
+ gr.Interface.from_pipeline(pipe).launch()