1from transformers import pipeline
2
3clasificador = pipeline(
4 "sentiment-analysis",
5 model="SenaSoft/chdv-sentiment-analysis"
6)
7
8print(clasificador("Me encanta la sopa"))
9# [{'label': 'positivo', 'score': 0.85}]
10
11print(clasificador("No me gusta nada la sopa"))
12# [{'label': 'negativo', 'score': 0.89}]
13
14print(clasificador("La sopa está bien, pero prefiero otra cosa"))
15# [{'label': 'neutral', 'score': 0.39}]
1@misc{aponte2025chdv,
2 title={SenaSoft CHDV Sentiment Analysis},
3 author={Aponte, Christopher and Navarro, David},
4 year={2025},
5 howpublished={Hugging Face},
6 url={https://huggingface.co/SenaSoft/chdv-sentiment-analysis}
7}
APA
Aponte, C., & Navarro, D. (2025).
SenaSoft CHDV Sentiment Analysis [Model]. Hugging Face.
https://huggingface.co/SenaSoft/chdv-sentiment-analysis