Electricidad-small fine-tuned for (Spanish) Sentiment Anlalysis 🎞️👍👎

Electricidad small fine-tuned on muchocine dataset for Spanish Sentiment Analysis downstream task.

Fast usage with pipelines 🚀

# pip install -q transformers

from transformers import AutoModelForSequenceClassification, AutoTokenizer

CHKPT = 'mrm8488/electricidad-small-finetuned-muchocine'
model = AutoModelForSequenceClassification.from_pretrained(CHKPT)
tokenizer = AutoTokenizer.from_pretrained(CHKPT)

from transformers import pipeline
classifier = pipeline('sentiment-analysis', model=model, tokenizer=tokenizer)

# It ranks your comments between 1 and 5 (stars)

classifier('Es una obra mestra. Brillante.')

classifier('Es una película muy buena.')

classifier('Una buena película, sin más.')

classifier('Esperaba mucho más.')

classifier('He tirado el dinero. Una basura. Vergonzoso.')
Downloads last month
10
Inference Providers NEW
This model is not currently available via any of the supported third-party Inference Providers, and the model is not deployed on the HF Inference API.

Dataset used to train mrm8488/electricidad-small-finetuned-muchocine