community-datasets/tamilmixsentiment
Viewer • Updated • 15.7k • 290 • 4
How to use DeadBeast/emoBERTTamil with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="DeadBeast/emoBERTTamil") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("DeadBeast/emoBERTTamil")
model = AutoModelForSequenceClassification.from_pretrained("DeadBeast/emoBERTTamil")This model is a fine-tuned version of bert-base-uncased on the tamilmixsentiment dataset. It achieves the following results on the evaluation set:
The following hyperparameters were used during training:
| Training Loss | Epoch | Step | Validation Loss | Accuracy |
|---|---|---|---|---|
| 1.1128 | 1.0 | 250 | 1.0290 | 0.672 |
| 1.0226 | 2.0 | 500 | 1.0172 | 0.686 |
| 0.9137 | 3.0 | 750 | 0.9666 | 0.671 |