benjaminStreltzin commited on
Commit
93a4013
·
verified ·
1 Parent(s): 373e186

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -1,4 +1,8 @@
1
  import gradio as gr
 
 
 
 
2
 
3
  def greet(name):
4
  return "Hello " + name + "!!"
 
1
  import gradio as gr
2
+ from transformers import pipeline
3
+ pipe = pipeline("image-classification", "DataScienceProject/Vit")
4
+ print(pipe)
5
+
6
 
7
  def greet(name):
8
  return "Hello " + name + "!!"