Spaces:
Sleeping
Sleeping
File size: 313 Bytes
004b486 |
1 2 3 4 5 6 7 8 9 10 11 12 |
import gradio as gr
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("image-classification", model="wasmdashai/vit-face-expression-v1")
def greet(image):
out=pipe(image)
return str(out)
demo = gr.Interface(fn=greet, inputs="image", outputs="text")
demo.launch()
|