Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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 + "!!"
|