File size: 293 Bytes
769d4a6
5685f42
769d4a6
 
aff6818
4b3484d
1
2
3
4
5
6
from transformers import pipeline
import gradio as gr
sentiment_analysis = pipeline("sentiment-analysis",model="siebert/sentiment-roberta-large-english")
# print(sentiment_analysis("I love this!"))

demo = gr.Interface(fn=sentiment_analysis, inputs="text", outputs=gr.Label(num_top_classes=2))