Views
No views yet
mobilebert student fine-tuned on SarcOji with sarcasm-aware emoji embeddings injected
directly into the token-embedding matrix, distilled from Vandita/Bert-finetuned-Sarc.| split | accuracy | precision | recall | F1 | MCC | ROC-AUC |
|---|---|---|---|---|---|---|
| validation | 0.8623 | 0.8224 | 0.8242 | 0.8233 | 0.7105 | 0.9381 |
| SarcOjiTest1 | 0.6598 | 0.7212 | 0.5756 | 0.6402 | 0.3326 | 0.7352 |
| SarcOjiTest2 | 0.7249 | 0.4468 | 0.4260 | 0.4362 | 0.2545 | 0.7064 |
L = α·T²·KL(teacher‖student) + (1−α)·CE, with T = 6,
α = 0.6. The T² factor is applied, so soft-target gradients do not shrink as T
rises.pca. Remaining dimensions hold the mean of the
original vocabulary embeddings rather than zeros, so new tokens are not anchored to the
origin.1from transformers import AutoModelForSequenceClassification, AutoTokenizer
2tok = AutoTokenizer.from_pretrained("Vandita/MobileBERT-SarcOji-KD-v2")
3model = AutoModelForSequenceClassification.from_pretrained("Vandita/MobileBERT-SarcOji-KD-v2")