Spaces:
Runtime error
Runtime error
File size: 611 Bytes
bde15f1 25d1623 bde15f1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
# app.py
import gradio as gr
from transformers import pipeline
from transformers import AutoTokenizer, AutoModelForSequenceClassification
#Defining the classify function which takes text as input and returns the label of the sentiment
def classify(text):
# Initializing the pipeline for sentiment analysis
cls = pipeline('text-classification', model='RJuro/dk_emotion_bert_in_class')
# Predicting the sentiment label for the input text
return cls(text)[0]['label']
#Creating the Gradio interface with input textbox and output text
gr.Interface(fn=classify, inputs=["textbox"], outputs="text").launch() |