NLP - Sentiment Analysis Advanced
Consider the following Python code snippet using the 'nlptown/bert-base-multilingual-uncased-sentiment' model. What sentiment label will the model most likely assign to the input text "Estoy muy triste hoy" (Spanish for "I am very sad today")?
from transformers import pipeline
sentiment = pipeline('sentiment-analysis', model='nlptown/bert-base-multilingual-uncased-sentiment')
result = sentiment("Estoy muy triste hoy")
print(result)