File size: 575 Bytes
055c2b8
 
 
 
 
 
 
 
 
 
 
 
83c3670
 
 
 
 
 
055c2b8
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from pysentimiento import create_analyzer


import gradio as gr

analyzer = create_analyzer(task="sentiment", lang="es")

def sentiment_analysis(text):
    
    sent = analyzer.predict(text).probas
    return sent

iface = gr.Interface(sentiment_analysis, 
                    "textbox", 
                    "label", 
                    interpretation="default",
                    title="Spanish Sentiment Analysis",
                    description="Write a sentence in spanish to analyze its sentiment")

iface.test_launch()
if __name__ == "__main__":
    iface.launch()