Spaces:
Runtime error
Runtime error
import gradio as gr | |
from transformers import AutoFeatureExtractor, AutoModelForImageClassification | |
extractor = AutoFeatureExtractor.from_pretrained("Rajaram1996/FacialEmoRecog") | |
model = AutoModelForImageClassification.from_pretrained("Rajaram1996/FacialEmoRecog") | |
def greet(name): | |
return "Hello " + name + "!!" | |
iface = gr.Interface(fn=greet, inputs="text", outputs="text") | |
iface.launch() |