Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -7,11 +7,20 @@ tags:
|
|
| 7 |
- twitter
|
| 8 |
- distilbert
|
| 9 |
- lora
|
|
|
|
| 10 |
datasets:
|
| 11 |
- tweet_eval
|
| 12 |
metrics:
|
| 13 |
- accuracy
|
| 14 |
- f1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
model-index:
|
| 16 |
- name: distilbert-sentiment-twitter
|
| 17 |
results:
|
|
@@ -28,22 +37,26 @@ model-index:
|
|
| 28 |
name: Accuracy
|
| 29 |
- type: f1
|
| 30 |
value: 0.6785
|
| 31 |
-
name: F1 Score
|
| 32 |
---
|
| 33 |
|
| 34 |
-
# DistilBERT Sentiment Analysis
|
| 35 |
|
| 36 |
-
This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) for sentiment classification on Twitter data.
|
| 37 |
|
| 38 |
## Model Description
|
| 39 |
|
| 40 |
- **Base Model:** DistilBERT (66M parameters)
|
| 41 |
-
- **Fine-tuning Method:** LoRA (
|
| 42 |
-
- **Task:** 3-class sentiment classification
|
| 43 |
-
- **
|
|
|
|
|
|
|
|
|
|
| 44 |
- **Language:** English
|
|
|
|
| 45 |
|
| 46 |
-
## Performance
|
| 47 |
|
| 48 |
The model achieves the following results on the test set:
|
| 49 |
|
|
@@ -52,106 +65,273 @@ The model achieves the following results on the test set:
|
|
| 52 |
| **Accuracy** | **67.84%** |
|
| 53 |
| **F1 Score (weighted)** | **0.6785** |
|
| 54 |
|
| 55 |
-
### Per-Class Performance
|
| 56 |
|
| 57 |
| Class | Precision | Recall | F1-Score | Support |
|
| 58 |
|-------|-----------|--------|----------|---------|
|
| 59 |
-
| Negative | 0.71 | 0.65 | 0.67 |
|
| 60 |
-
| Neutral | 0.69 | 0.70 | 0.69 |
|
| 61 |
-
| Positive | 0.62 | 0.67 | 0.65 |
|
|
|
|
| 62 |
|
| 63 |
-
##
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 64 |
|
| 65 |
-
##
|
| 66 |
|
| 67 |
-
|
| 68 |
-
|
| 69 |
-
|
| 70 |
-
|
| 71 |
-
- **LoRA Rank (r):** 16
|
| 72 |
-
- **LoRA Alpha:** 32
|
| 73 |
-
- **LoRA Dropout:** 0.1
|
| 74 |
-
- **Target Modules:** q_lin, v_lin
|
| 75 |
|
| 76 |
-
|
|
|
|
|
|
|
| 77 |
|
| 78 |
-
|
| 79 |
-
|
| 80 |
-
|
| 81 |
-
|
| 82 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 83 |
|
| 84 |
-
#
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 85 |
```python
|
|
|
|
|
|
|
| 86 |
from transformers import AutoTokenizer, AutoModelForSequenceClassification
|
|
|
|
| 87 |
import torch
|
| 88 |
|
| 89 |
-
# Load model and tokenizer
|
| 90 |
model_name = "SeifElislamm/distilbert-sentiment-twitter"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 91 |
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
| 92 |
-
model = AutoModelForSequenceClassification.from_pretrained(model_name)
|
| 93 |
|
| 94 |
-
|
| 95 |
-
|
| 96 |
-
|
| 97 |
-
|
| 98 |
-
|
| 99 |
-
|
| 100 |
-
|
| 101 |
-
|
| 102 |
-
|
| 103 |
-
|
| 104 |
-
|
| 105 |
-
|
| 106 |
-
print(f"
|
| 107 |
-
print(f"Confidence: {predictions[0][predicted_class]:.2%}")
|
| 108 |
```
|
| 109 |
|
| 110 |
-
##
|
| 111 |
|
| 112 |
-
###
|
| 113 |
-
- Sentiment analysis of social media text (particularly Twitter/X)
|
| 114 |
-
- Customer feedback analysis
|
| 115 |
-
- Brand monitoring
|
| 116 |
-
- Opinion mining
|
| 117 |
|
| 118 |
-
|
| 119 |
-
-
|
| 120 |
-
|
| 121 |
-
|
| 122 |
-
|
| 123 |
-
|
| 124 |
-
|
| 125 |
-
|
|
|
|
|
|
|
| 126 |
|
| 127 |
-
##
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 128 |
|
| 129 |
The model was trained on the [tweet_eval](https://huggingface.co/datasets/tweet_eval) sentiment dataset:
|
| 130 |
-
- Training samples: 45,615
|
| 131 |
-
- Validation samples: 2,000
|
| 132 |
-
- Test samples: 12,284
|
| 133 |
|
| 134 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 135 |
|
| 136 |
-
-
|
| 137 |
-
-
|
| 138 |
-
-
|
|
|
|
|
|
|
| 139 |
|
| 140 |
-
##
|
| 141 |
|
| 142 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 143 |
```bibtex
|
| 144 |
-
@misc{
|
| 145 |
author = {Seif Elislam},
|
| 146 |
title = {DistilBERT Fine-tuned for Twitter Sentiment Analysis},
|
| 147 |
year = {2025},
|
| 148 |
-
publisher = {
|
|
|
|
| 149 |
howpublished = {\url{https://huggingface.co/SeifElislamm/distilbert-sentiment-twitter}}
|
| 150 |
}
|
| 151 |
```
|
| 152 |
|
| 153 |
-
##
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 154 |
|
| 155 |
-
|
| 156 |
-
|
| 157 |
-
|
|
|
|
| 7 |
- twitter
|
| 8 |
- distilbert
|
| 9 |
- lora
|
| 10 |
+
- peft
|
| 11 |
datasets:
|
| 12 |
- tweet_eval
|
| 13 |
metrics:
|
| 14 |
- accuracy
|
| 15 |
- f1
|
| 16 |
+
pipeline_tag: text-classification
|
| 17 |
+
widget:
|
| 18 |
+
- text: "I love this product! It's amazing! π"
|
| 19 |
+
example_title: "Positive Example"
|
| 20 |
+
- text: "This is terrible. Worst experience ever. π‘"
|
| 21 |
+
example_title: "Negative Example"
|
| 22 |
+
- text: "It's okay, nothing special. π"
|
| 23 |
+
example_title: "Neutral Example"
|
| 24 |
model-index:
|
| 25 |
- name: distilbert-sentiment-twitter
|
| 26 |
results:
|
|
|
|
| 37 |
name: Accuracy
|
| 38 |
- type: f1
|
| 39 |
value: 0.6785
|
| 40 |
+
name: F1 Score (weighted)
|
| 41 |
---
|
| 42 |
|
| 43 |
+
# DistilBERT for Twitter Sentiment Analysis π¦
|
| 44 |
|
| 45 |
+
This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) for sentiment classification on Twitter/X data using **LoRA (Low-Rank Adaptation)** for parameter-efficient fine-tuning.
|
| 46 |
|
| 47 |
## Model Description
|
| 48 |
|
| 49 |
- **Base Model:** DistilBERT (66M parameters)
|
| 50 |
+
- **Fine-tuning Method:** LoRA/PEFT (only ~1.5M parameters trained)
|
| 51 |
+
- **Task:** 3-class sentiment classification
|
| 52 |
+
- π **Positive**
|
| 53 |
+
- π **Neutral**
|
| 54 |
+
- π‘ **Negative**
|
| 55 |
+
- **Dataset:** [tweet_eval](https://huggingface.co/datasets/tweet_eval) sentiment subset
|
| 56 |
- **Language:** English
|
| 57 |
+
- **Training Framework:** Hugging Face Transformers + PEFT
|
| 58 |
|
| 59 |
+
## π― Performance
|
| 60 |
|
| 61 |
The model achieves the following results on the test set:
|
| 62 |
|
|
|
|
| 65 |
| **Accuracy** | **67.84%** |
|
| 66 |
| **F1 Score (weighted)** | **0.6785** |
|
| 67 |
|
| 68 |
+
### Per-Class Performance
|
| 69 |
|
| 70 |
| Class | Precision | Recall | F1-Score | Support |
|
| 71 |
|-------|-----------|--------|----------|---------|
|
| 72 |
+
| **Negative** π‘ | 0.71 | 0.65 | 0.67 | 3,972 |
|
| 73 |
+
| **Neutral** π | 0.69 | 0.70 | 0.69 | 5,937 |
|
| 74 |
+
| **Positive** π | 0.62 | 0.67 | 0.65 | 2,375 |
|
| 75 |
+
| **Overall** | 0.68 | 0.68 | 0.68 | 12,284 |
|
| 76 |
|
| 77 |
+
### Confusion Matrix
|
| 78 |
+
```
|
| 79 |
+
Predicted
|
| 80 |
+
Neg Neu Pos
|
| 81 |
+
Actual Neg [2562 1210 200]
|
| 82 |
+
Neu [ 987 4170 780]
|
| 83 |
+
Pos [ 77 697 1601]
|
| 84 |
+
```
|
| 85 |
|
| 86 |
+
## π Usage
|
| 87 |
|
| 88 |
+
### Quick Start (Recommended)
|
| 89 |
+
```python
|
| 90 |
+
# Install required packages
|
| 91 |
+
!pip install transformers peft torch
|
|
|
|
|
|
|
|
|
|
|
|
|
| 92 |
|
| 93 |
+
from transformers import AutoTokenizer, AutoModelForSequenceClassification
|
| 94 |
+
from peft import PeftModel, PeftConfig
|
| 95 |
+
import torch
|
| 96 |
|
| 97 |
+
# Load model
|
| 98 |
+
model_name = "SeifElislamm/distilbert-sentiment-twitter"
|
| 99 |
+
|
| 100 |
+
# Load PEFT config
|
| 101 |
+
config = PeftConfig.from_pretrained(model_name)
|
| 102 |
+
|
| 103 |
+
# Load base model
|
| 104 |
+
base_model = AutoModelForSequenceClassification.from_pretrained(
|
| 105 |
+
config.base_model_name_or_path,
|
| 106 |
+
num_labels=3,
|
| 107 |
+
id2label={0: "negative", 1: "neutral", 2: "positive"},
|
| 108 |
+
label2id={"negative": 0, "neutral": 1, "positive": 2}
|
| 109 |
+
)
|
| 110 |
+
|
| 111 |
+
# Load LoRA adapters
|
| 112 |
+
model = PeftModel.from_pretrained(base_model, model_name)
|
| 113 |
+
model = model.merge_and_unload() # Merge for faster inference
|
| 114 |
+
model.eval()
|
| 115 |
+
|
| 116 |
+
# Load tokenizer
|
| 117 |
+
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
| 118 |
|
| 119 |
+
# Predict sentiment
|
| 120 |
+
def predict_sentiment(text):
|
| 121 |
+
inputs = tokenizer(text, return_tensors="pt", truncation=True, max_length=128)
|
| 122 |
+
|
| 123 |
+
with torch.no_grad():
|
| 124 |
+
outputs = model(**inputs)
|
| 125 |
+
probs = torch.softmax(outputs.logits, dim=-1)
|
| 126 |
+
pred_class = torch.argmax(probs).item()
|
| 127 |
+
confidence = probs[0][pred_class].item()
|
| 128 |
+
|
| 129 |
+
labels = {0: "negative", 1: "neutral", 2: "positive"}
|
| 130 |
+
return labels[pred_class], confidence
|
| 131 |
+
|
| 132 |
+
# Test it
|
| 133 |
+
text = "I love this product! It's amazing!"
|
| 134 |
+
sentiment, confidence = predict_sentiment(text)
|
| 135 |
+
print(f"Sentiment: {sentiment.upper()} (confidence: {confidence:.1%})")
|
| 136 |
+
```
|
| 137 |
+
|
| 138 |
+
### Batch Prediction
|
| 139 |
+
```python
|
| 140 |
+
texts = [
|
| 141 |
+
"I love this so much! π",
|
| 142 |
+
"This is terrible. π‘",
|
| 143 |
+
"It's okay, nothing special. π"
|
| 144 |
+
]
|
| 145 |
+
|
| 146 |
+
for text in texts:
|
| 147 |
+
sentiment, confidence = predict_sentiment(text)
|
| 148 |
+
print(f"{text} β {sentiment.upper()} ({confidence:.1%})")
|
| 149 |
+
```
|
| 150 |
+
|
| 151 |
+
### Expected Output
|
| 152 |
+
```
|
| 153 |
+
I love this so much! οΏ½οΏ½οΏ½ β POSITIVE (85.3%)
|
| 154 |
+
This is terrible. π‘ β NEGATIVE (79.2%)
|
| 155 |
+
It's okay, nothing special. π β NEUTRAL (71.5%)
|
| 156 |
+
```
|
| 157 |
+
|
| 158 |
+
## π§ͺ Quick Test in Google Colab
|
| 159 |
+
|
| 160 |
+
Want to test the model immediately? Copy this into a new Colab notebook:
|
| 161 |
```python
|
| 162 |
+
!pip install -q transformers peft torch
|
| 163 |
+
|
| 164 |
from transformers import AutoTokenizer, AutoModelForSequenceClassification
|
| 165 |
+
from peft import PeftModel, PeftConfig
|
| 166 |
import torch
|
| 167 |
|
|
|
|
| 168 |
model_name = "SeifElislamm/distilbert-sentiment-twitter"
|
| 169 |
+
config = PeftConfig.from_pretrained(model_name)
|
| 170 |
+
base_model = AutoModelForSequenceClassification.from_pretrained(
|
| 171 |
+
config.base_model_name_or_path, num_labels=3
|
| 172 |
+
)
|
| 173 |
+
model = PeftModel.from_pretrained(base_model, model_name).merge_and_unload()
|
| 174 |
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
|
|
|
| 175 |
|
| 176 |
+
def predict(text):
|
| 177 |
+
inputs = tokenizer(text, return_tensors="pt", truncation=True, max_length=128)
|
| 178 |
+
with torch.no_grad():
|
| 179 |
+
outputs = model(**inputs)
|
| 180 |
+
probs = torch.softmax(outputs.logits, dim=-1)
|
| 181 |
+
pred = torch.argmax(probs).item()
|
| 182 |
+
labels = {0: "NEGATIVE", 1: "NEUTRAL", 2: "POSITIVE"}
|
| 183 |
+
return labels[pred], probs[0][pred].item()
|
| 184 |
+
|
| 185 |
+
# Test it!
|
| 186 |
+
text = input("Enter text: ")
|
| 187 |
+
sentiment, conf = predict(text)
|
| 188 |
+
print(f"β {sentiment} ({conf:.1%})")
|
|
|
|
| 189 |
```
|
| 190 |
|
| 191 |
+
## π Training Details
|
| 192 |
|
| 193 |
+
### Training Hyperparameters
|
|
|
|
|
|
|
|
|
|
|
|
|
| 194 |
|
| 195 |
+
| Parameter | Value |
|
| 196 |
+
|-----------|-------|
|
| 197 |
+
| Base Model | distilbert-base-uncased |
|
| 198 |
+
| Learning Rate | 2e-5 |
|
| 199 |
+
| Batch Size | 32 |
|
| 200 |
+
| Epochs | 3 |
|
| 201 |
+
| Weight Decay | 0.01 |
|
| 202 |
+
| Max Sequence Length | 128 |
|
| 203 |
+
| Optimizer | AdamW |
|
| 204 |
+
| LR Scheduler | Linear |
|
| 205 |
|
| 206 |
+
### LoRA Configuration
|
| 207 |
+
|
| 208 |
+
| Parameter | Value |
|
| 209 |
+
|-----------|-------|
|
| 210 |
+
| LoRA Rank (r) | 16 |
|
| 211 |
+
| LoRA Alpha | 32 |
|
| 212 |
+
| LoRA Dropout | 0.1 |
|
| 213 |
+
| Target Modules | q_lin, v_lin |
|
| 214 |
+
| Trainable Parameters | ~1.5M / 66M (2.3%) |
|
| 215 |
+
|
| 216 |
+
### Training Results
|
| 217 |
+
|
| 218 |
+
| Epoch | Training Loss | Validation Loss | Accuracy | F1 Score |
|
| 219 |
+
|-------|---------------|-----------------|----------|----------|
|
| 220 |
+
| 1 | 0.6845 | 0.7014 | 0.6805 | 0.6817 |
|
| 221 |
+
| 2 | 0.6841 | 0.6861 | 0.6925 | 0.6936 |
|
| 222 |
+
| 3 | 0.6718 | 0.6819 | 0.6975 | 0.6985 |
|
| 223 |
+
|
| 224 |
+
β
Model converged successfully with decreasing loss and improving metrics!
|
| 225 |
+
|
| 226 |
+
## π Training Data
|
| 227 |
|
| 228 |
The model was trained on the [tweet_eval](https://huggingface.co/datasets/tweet_eval) sentiment dataset:
|
|
|
|
|
|
|
|
|
|
| 229 |
|
| 230 |
+
| Split | Samples |
|
| 231 |
+
|-------|---------|
|
| 232 |
+
| Training | 45,615 |
|
| 233 |
+
| Validation | 2,000 |
|
| 234 |
+
| Test | 12,284 |
|
| 235 |
+
|
| 236 |
+
**Dataset characteristics:**
|
| 237 |
+
- Short text (typical tweets: 10-50 words)
|
| 238 |
+
- Informal language with emojis, hashtags, and mentions
|
| 239 |
+
- Balanced across negative, neutral, and positive sentiments
|
| 240 |
+
- Real-world social media data
|
| 241 |
+
|
| 242 |
+
## π‘ Intended Uses
|
| 243 |
+
|
| 244 |
+
### β
Recommended Uses
|
| 245 |
+
|
| 246 |
+
- **Social Media Monitoring:** Analyze sentiment of tweets, posts, and comments
|
| 247 |
+
- **Customer Feedback Analysis:** Classify product reviews and feedback
|
| 248 |
+
- **Brand Reputation Tracking:** Monitor public opinion about brands
|
| 249 |
+
- **Market Research:** Understand customer sentiment trends
|
| 250 |
+
- **Content Moderation:** Flag potentially negative content
|
| 251 |
+
- **Academic Research:** Study sentiment patterns in social media
|
| 252 |
+
|
| 253 |
+
### β οΈ Limitations
|
| 254 |
+
|
| 255 |
+
- **Domain-specific:** Trained on Twitter data; may not generalize well to:
|
| 256 |
+
- Formal documents (legal, academic)
|
| 257 |
+
- Long-form content (articles, essays)
|
| 258 |
+
- Domain-specific language (medical, technical)
|
| 259 |
+
- **English only:** Not suitable for other languages
|
| 260 |
+
- **Context limitations:**
|
| 261 |
+
- May struggle with sarcasm and irony
|
| 262 |
+
- Limited understanding of cultural context
|
| 263 |
+
- Can misinterpret complex or nuanced sentiments
|
| 264 |
+
- **Bias:** May reflect biases present in Twitter data
|
| 265 |
+
- **Temporal:** Trained on data up to 2024; may not capture emerging slang
|
| 266 |
+
|
| 267 |
+
### β Out of Scope
|
| 268 |
|
| 269 |
+
- Multi-lingual sentiment analysis
|
| 270 |
+
- Emotion detection beyond positive/neutral/negative
|
| 271 |
+
- Aspect-based sentiment analysis
|
| 272 |
+
- Spam detection or content classification
|
| 273 |
+
- Real-time critical decision making
|
| 274 |
|
| 275 |
+
## π§ Technical Details
|
| 276 |
|
| 277 |
+
### Model Architecture
|
| 278 |
+
|
| 279 |
+
- **Base:** DistilBERT (distilled version of BERT)
|
| 280 |
+
- **Layers:** 6 transformer layers
|
| 281 |
+
- **Hidden Size:** 768
|
| 282 |
+
- **Attention Heads:** 12
|
| 283 |
+
- **Parameters:** 66M total, ~1.5M trained (LoRA)
|
| 284 |
+
- **Classification Head:** Linear layer (768 β 3)
|
| 285 |
+
|
| 286 |
+
### Preprocessing
|
| 287 |
+
|
| 288 |
+
- **Tokenization:** WordPiece tokenization
|
| 289 |
+
- **Max Length:** 128 tokens
|
| 290 |
+
- **Padding:** Dynamic padding to max length in batch
|
| 291 |
+
- **Truncation:** Enabled for sequences > 128 tokens
|
| 292 |
+
|
| 293 |
+
### Inference Speed
|
| 294 |
+
|
| 295 |
+
On GPU (T4):
|
| 296 |
+
- Single prediction: ~10-15ms
|
| 297 |
+
- Batch of 32: ~50-80ms
|
| 298 |
+
|
| 299 |
+
On CPU:
|
| 300 |
+
- Single prediction: ~50-100ms
|
| 301 |
+
- Batch of 32: ~500-800ms
|
| 302 |
+
|
| 303 |
+
## π Citation
|
| 304 |
+
|
| 305 |
+
If you use this model in your research or application, please cite:
|
| 306 |
```bibtex
|
| 307 |
+
@misc{seif2025distilbert-sentiment,
|
| 308 |
author = {Seif Elislam},
|
| 309 |
title = {DistilBERT Fine-tuned for Twitter Sentiment Analysis},
|
| 310 |
year = {2025},
|
| 311 |
+
publisher = {Hugging Face},
|
| 312 |
+
journal = {Hugging Face Model Hub},
|
| 313 |
howpublished = {\url{https://huggingface.co/SeifElislamm/distilbert-sentiment-twitter}}
|
| 314 |
}
|
| 315 |
```
|
| 316 |
|
| 317 |
+
## π License
|
| 318 |
+
|
| 319 |
+
This model is released under the Apache 2.0 License. The base DistilBERT model is also Apache 2.0 licensed.
|
| 320 |
+
|
| 321 |
+
## π Acknowledgments
|
| 322 |
+
|
| 323 |
+
- **Base Model:** [DistilBERT](https://huggingface.co/distilbert-base-uncased) by Hugging Face
|
| 324 |
+
- **Dataset:** [tweet_eval](https://huggingface.co/datasets/tweet_eval) by Cardiff NLP
|
| 325 |
+
- **Framework:** [Hugging Face Transformers](https://github.com/huggingface/transformers)
|
| 326 |
+
- **PEFT:** [Hugging Face PEFT](https://github.com/huggingface/peft) for LoRA implementation
|
| 327 |
+
- **Compute:** Google Colab (free tier with T4 GPU)
|
| 328 |
+
|
| 329 |
+
## π Contact
|
| 330 |
+
|
| 331 |
+
For questions or issues, please open an issue on the model's discussion page.
|
| 332 |
+
|
| 333 |
+
---
|
| 334 |
|
| 335 |
+
**Model Card Authors:** Seif Elislam
|
| 336 |
+
**Last Updated:** November 2025
|
| 337 |
+
**Model Version:** 1.0
|