Minuva Models
Collection
Fast and light models for conversational data.
•
12 items
•
Updated
•
1
This model is a fined-tuned version of MiniLMv2-L6-H384 on the on the go_emotions dataset. The quantized version in ONNX format can be found here
from transformers import pipeline
pipe = pipeline(model='minuva/MiniLMv2-goemotions-v2', task='text-classification')
pipe("I am angry")
# [{'label': 'anger', 'score': 0.9722517132759094}]
The following hyperparameters were used during training:
Teacher (params) | Student (params) | Set | Score (teacher) | Score (student) |
---|---|---|---|---|
tasinhoque/text-classification-goemotions (355M) | MiniLMv2-goemotions-v2 (30M) | Validation | 0.514252 | 0.484898 |
tasinhoque/text-classification-goemotions (355M) | MiniLMv2-goemotions-v2 (30M) | Test | 0.501937 | 0.486890 |
Check out our fast-nlp-text-emotion repository for a FastAPI based server to easily deploy this model on CPU devices.