File size: 281 Bytes
cbe067e
90cd1df
cbe067e
 
 
 
3d04017
1
2
3
4
5
6
7
from transformers import pipeline
import gradio as gr
sentimentAnalyzer = pipeline("sentiment-analysis")
def predict_sentiment(text):
    return sentimentAnalyzer(text)[0]['label']
iface = gr.Interface(fn=predict_sentiment,inputs=["text"],outputs=["text"])
iface.launch(share=True)