CoolFace
Modelpublic

Ido-shraga/distilbert-base-tweeteval-sentiment

sourceHugging Faceapache-2.0updated 3mo agoView on Hugging Face
0likes9downloads
Model Card

distilbert-base → TweetEval Sentiment

Small, fast LLM fine-tuned for social-media (tweet) sentiment analysis. 3 classes: negative / neutral / positive.

Test-set results (TweetEval sentiment, 12,284 tweets)

MetricScore
Accuracy0.6888
Macro-F10.6877
Macro-Recall0.6978
Speed (T4)~2897 tweets/s

Comparison vs twitter-roberta-base

ModelSizeAccuracyMacro-F1tweets/s
twitter-roberta-base125M0.71550.71551600
distilbert-base (this)67M0.68880.68772897

This model trades ~2.7 pts accuracy for ~1.8× faster inference and half the size — a good fit for high-throughput or edge deployment.

Usage

python
from transformers import pipeline
clf = pipeline("text-classification", model="Ido-shraga/distilbert-base-tweeteval-sentiment")
clf("I can't believe how good this is 🔥")