File size: 13,558 Bytes
502da85 c3015be 502da85 c3015be 502da85 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 |
---
license: mit
language:
- en
tags:
- sentence-transformers
- sentence-embeddings
- multi-task-learning
- reinforcement-learning
- semantic-similarity
- nli
- paraphrase-detection
datasets:
- sentence-transformers/stsb
- nyu-mll/multi_nli
- quora
- google-research-datasets/paws
- nyu-mll/glue
pipeline_tag: sentence-similarity
base_model: sentence-transformers/all-MiniLM-L6-v2
model-index:
- name: FireDevourerEmbedder-RL-v3.6
results:
- task:
type: semantic-similarity
name: Semantic Textual Similarity
dataset:
type: sentence-transformers/stsb
name: STS-B
metrics:
- type: pearson_spearman_avg
value: 0.3366
- task:
type: natural-language-inference
name: Natural Language Inference
dataset:
type: nyu-mll/multi_nli
name: MultiNLI
metrics:
- type: accuracy
value: 0.7465
- task:
type: text-classification
name: Question Duplicate Detection
dataset:
type: quora
name: QQP
metrics:
- type: accuracy
value: 0.8636
- task:
type: text-classification
name: Paraphrase Detection
dataset:
type: google-research-datasets/paws
name: PAWS
metrics:
- type: accuracy
value: 0.8459
- task:
type: text-classification
name: Paraphrase Detection
dataset:
type: nyu-mll/glue
name: MRPC
metrics:
- type: accuracy
value: 0.7744
---
# FireDevourerEmbedder-RL-v3.6
A multi-task sentence embedding model that uses **Reinforcement Learning** to dynamically optimize task weights during training. The model learns to balance multiple NLU tasks simultaneously, producing robust sentence embeddings suitable for semantic similarity, natural language inference, and paraphrase detection.
## Key Innovation
FireDevourerEmbedder introduces an **RL-based adaptive task weighting system** that automatically adjusts the importance of each training task based on validation performance. Instead of using fixed task weights, a policy network learns optimal weight distributions during training, leading to better overall performance across diverse NLU benchmarks.
## Why Multi-Task? Information-Dense Embeddings
The core philosophy behind FireDevourerEmbedder is that **multi-task learning creates richer, more information-dense embeddings** than single-task approaches.
By training with multiple task heads simultaneously, the shared encoder is forced to learn representations that capture:
| Dimension | Learned From | What It Captures |
|-----------|--------------|------------------|
| **Semantic Similarity** | STS-B | Fine-grained meaning overlap |
| **Logical Relationships** | MultiNLI | Entailment, contradiction, neutrality |
| **Question Semantics** | QQP | Intent and duplicate detection |
| **Adversarial Patterns** | PAWS | Word-order sensitivity, paraphrase robustness |
| **Domain Awareness** | All datasets | Context-appropriate representations |
This results in embeddings that are:
- **More robust** - trained to handle diverse linguistic phenomena
- **More transferable** - generalize better to unseen tasks
- **More informative** - each dimension of the embedding vector carries meaningful semantic signal
Unlike single-task embedders that optimize for one objective, FireDevourerEmbedder's embeddings simultaneously encode multiple facets of meaning, making them suitable for a wide range of downstream applications without fine-tuning.
## Model Details
| Property | Value |
|----------|-------|
| **Base Model** | [sentence-transformers/all-MiniLM-L6-v2](https://huggingface.co/sentence-transformers/all-MiniLM-L6-v2) |
| **Hidden Size** | 384 |
| **Version** | v3.6 |
| **Training Steps** | 80,000 |
| **Total Parameters** | ~22M |
## Architecture
The model consists of a shared BERT encoder with task-specific output heads:
```
Input Sentence(s)
β
βΌ
βββββββββββββββββββββββββββ
β MiniLM-L6-v2 Encoder β
β (384-dim output) β
βββββββββββββββββββββββββββ
β
βΌ
Mean Pooling
β
ββββΊ STS Head (384β1) βββΊ Similarity Score [0,1]
ββββΊ NLI Head (384β3) βββΊ [Contradiction, Neutral, Entailment]
ββββΊ QQP Head (384β2) βββΊ [Not Duplicate, Duplicate]
ββββΊ PAWS Head (384β2) βββΊ [Not Paraphrase, Paraphrase]
ββββΊ Domain Head (384β5) βββΊ [General, Entailment, Questions, Adversarial, News]
```
## Performance
| Task | Dataset | Metric | Score |
|------|---------|--------|-------|
| Question Duplicate Detection | QQP | Accuracy + F1 | **0.8636** |
| Paraphrase Detection | PAWS | Accuracy + F1 | **0.8459** |
| Paraphrase Detection | MRPC | Accuracy + F1 | **0.7744** |
| Natural Language Inference | MultiNLI | Accuracy + F1 | **0.7465** |
| Semantic Textual Similarity | STS-B | Pearson/Spearman | **0.3366** |
| | | **Average** | **0.7134** |
## Training Details
### Datasets
The model was trained on 5 balanced datasets with 100,000 samples each (500,000 total):
| Dataset | Task Type | Domain | Samples |
|---------|-----------|--------|---------|
| [STS-B](https://huggingface.co/datasets/sentence-transformers/stsb) | Semantic Similarity | General | 100,000 |
| [MultiNLI](https://huggingface.co/datasets/nyu-mll/multi_nli) | Natural Language Inference | Entailment | 100,000 |
| [QQP](https://huggingface.co/datasets/quora) | Duplicate Question Detection | Questions | 100,000 |
| [PAWS](https://huggingface.co/datasets/google-research-datasets/paws) | Paraphrase Detection | Adversarial | 100,000 |
| [MRPC](https://huggingface.co/datasets/nyu-mll/glue) | Paraphrase Detection | News | 100,000 |
### Data Augmentation Strategy
To prevent training bias, all datasets were balanced to exactly **100,000 samples** each:
| Dataset | Original Size | Augmentation Method |
|---------|---------------|---------------------|
| STS-B | ~8,600 | Repetition (~12x) + pair swapping |
| MultiNLI | ~433,000 | Subsampling |
| QQP | ~400,000 | Subsampling |
| PAWS | ~49,000 | Repetition (~2x) + pair swapping |
| MRPC | ~3,600 | Repetition (~10x, capped) + pair swapping |
**Why this matters:**
- Without balancing, larger datasets (QQP, MultiNLI) would dominate training
- Smaller but valuable datasets (MRPC, STS-B) would be underrepresented
- Equal representation ensures the model learns equally from all task types
**Augmentation techniques:**
- **Repetition**: Smaller datasets repeated up to 10x maximum to prevent memorization
- **Sentence pair swapping**: For symmetric tasks, (A, B) pairs also trained as (B, A)
### Training Configuration
| Parameter | Value |
|-----------|-------|
| Epochs | 3 |
| Batch Size | 16 |
| Learning Rate | 2e-5 |
| Total Steps | 93,750 |
| Warmup Steps | 9,375 (10%) |
| Evaluation Frequency | Every 10,000 steps |
| Early Stopping | 3 consecutive decreases |
| Training Time | 3.29 hours |
### RL Weight Adaptation System
The model uses a policy network to dynamically adjust task weights during training:
| Parameter | Value |
|-----------|-------|
| RL Learning Rate | 0.001 |
| State Dimension | 6 (5 task scores + average) |
| Action Dimension | 5 (weight deltas) |
| Hidden Dimension | 32 |
| Delta Scale | Β±5% per update |
| Update Frequency | Every 10,000 steps |
**Weight Evolution During Training:**
| Task | Initial Weight | Final Weight | Change |
|------|---------------|--------------|--------|
| STS | 0.250 | 0.282 | +0.032 |
| NLI | 0.300 | 0.337 | +0.037 |
| QQP | 0.200 | 0.063 | -0.137 |
| PAWS | 0.150 | 0.173 | +0.023 |
| MRPC | 0.100 | 0.145 | +0.045 |
The RL system learned to reduce QQP weight (already high-performing) while increasing weights for harder tasks.
## Training Progress
| Version | Step | Average Score | Best Task | Improvement |
|---------|------|---------------|-----------|-------------|
| v3.1 | 10,000 | 0.6133 | QQP (0.8093) | +0.6133 |
| v3.2 | 20,000 | 0.6430 | QQP (0.8351) | +0.0297 |
| v3.3 | 30,000 | 0.6813 | QQP (0.8391) | +0.0383 |
| v3.4 | 40,000 | 0.6925 | QQP (0.8527) | +0.0111 |
| v3.5 | 50,000 | 0.7099 | QQP (0.8579) | +0.0175 |
| **v3.6** | **80,000** | **0.7134** | **QQP (0.8636)** | **+0.0035** |
## Usage
### Installation
```bash
pip install torch transformers
```
### Loading the Model
```python
import torch
from transformers import AutoTokenizer, AutoModel
# Load tokenizer and base model
tokenizer = AutoTokenizer.from_pretrained("path/to/FireDevourerEmbedder-RL-v3.6")
base_model = AutoModel.from_pretrained("sentence-transformers/all-MiniLM-L6-v2")
# Load checkpoint
checkpoint = torch.load("path/to/FireDevourerEmbedder-RL-v3.6/full_checkpoint.pt")
# Load model weights (you'll need to reconstruct the full model class)
# See the training script for the complete FireDevourerEmbedder class definition
```
### Computing Embeddings
```python
def mean_pooling(model_output, attention_mask):
"""Apply mean pooling to get sentence embeddings."""
token_embeddings = model_output[0]
input_mask_expanded = attention_mask.unsqueeze(-1).expand(token_embeddings.size()).float()
return torch.sum(token_embeddings * input_mask_expanded, 1) / torch.clamp(input_mask_expanded.sum(1), min=1e-9)
def get_embedding(text, model, tokenizer):
"""Get sentence embedding for a single text."""
inputs = tokenizer(text, return_tensors="pt", padding=True, truncation=True, max_length=512)
with torch.no_grad():
outputs = model(**inputs)
return mean_pooling(outputs, inputs["attention_mask"])
# Example
embedding = get_embedding("This is a sample sentence.", model, tokenizer)
print(f"Embedding shape: {embedding.shape}") # [1, 384]
```
### Computing Similarity
```python
from torch.nn.functional import cosine_similarity
sentence1 = "A man is eating pizza"
sentence2 = "A person is eating food"
emb1 = get_embedding(sentence1, model, tokenizer)
emb2 = get_embedding(sentence2, model, tokenizer)
similarity = cosine_similarity(emb1, emb2)
print(f"Similarity: {similarity.item():.4f}") # ~0.9448
```
### Task-Specific Predictions
```python
# After loading the full model with task heads:
def predict_nli(sentence1, sentence2, model, tokenizer):
"""Predict entailment relationship."""
# Get embeddings for both sentences
emb1 = get_embedding(sentence1, model, tokenizer)
emb2 = get_embedding(sentence2, model, tokenizer)
# Combine embeddings (concatenate with element-wise difference and product)
combined = torch.cat([emb1, emb2, torch.abs(emb1 - emb2), emb1 * emb2], dim=-1)
# Pass through NLI head
logits = model.nli_head(combined)
prediction = torch.argmax(logits, dim=-1)
labels = ["Contradiction", "Neutral", "Entailment"]
return labels[prediction.item()]
# Example
result = predict_nli("It's raining outside", "The weather is sunny", model, tokenizer)
print(f"NLI Prediction: {result}") # Contradiction
```
## Evaluation Results
### Test Suite Statistics (20 diverse test cases)
**Cosine Similarity:**
| Statistic | Value |
|-----------|-------|
| Mean | 0.8001 |
| Std | 0.1562 |
| Min | 0.3139 |
| Max | 0.9831 |
| Median | 0.8149 |
**STS Score:**
| Statistic | Value |
|-----------|-------|
| Mean | 0.5672 |
| Std | 0.2270 |
| Min | 0.0182 |
| Max | 0.9468 |
| Median | 0.5788 |
### Example Predictions
| Sentence 1 | Sentence 2 | Cosine Sim | NLI | Domain |
|------------|------------|------------|-----|--------|
| "A man is eating pizza" | "A person is eating food" | 0.9448 | Entailment | General |
| "It's raining outside" | "The weather is sunny" | 0.7124 | Contradiction | Entailment |
| "How do I learn Python?" | "What's the best way to learn Python?" | 0.8915 | Entailment | Questions |
| "The quick brown fox jumps..." | "A fast brown fox leaps..." | 0.7837 | Entailment | General |
## Intended Use
### Best Use Cases
- **Semantic Search**: Finding similar documents or passages
- **Duplicate Detection**: Identifying duplicate questions or content
- **Paraphrase Mining**: Finding paraphrased text pairs
- **Clustering**: Grouping similar sentences or documents
- **Natural Language Inference**: Determining textual entailment
### Limitations
- **STS-B Performance**: The model shows lower performance on fine-grained semantic similarity regression (0.3366). For tasks requiring precise similarity scores, consider using dedicated STS models.
- **English Only**: Trained exclusively on English data.
- **Max Length**: 512 tokens maximum input length.
- **Adversarial Robustness**: While trained on PAWS adversarial data, performance on novel adversarial examples may vary.
## Training Loss Progression
| Epoch | STS Loss | NLI Loss | QQP Loss | PAWS Loss | MRPC Loss | Domain Loss | Total Loss |
|-------|----------|----------|----------|-----------|-----------|-------------|------------|
| 1 | 0.0073 | 0.2508 | 0.0742 | 0.0966 | 0.0287 | 0.0529 | 0.4977 |
| 2 | 0.0038 | 0.1970 | 0.0430 | 0.0638 | 0.0025 | 0.0196 | 0.3211 |
| 3 | 0.0031 | 0.1822 | 0.0221 | 0.0479 | 0.0009 | 0.0141 | 0.2631 |
## Citation
If you use this model in your research, please cite:
```bibtex
@misc{firedevourerembedder2025,
author = {Asad, Zain},
title = {FireDevourerEmbedder: Multi-Task Sentence Embeddings with RL-Adaptive Task Weighting},
year = {2025},
publisher = {Hugging Face},
url = {https://huggingface.co/zainasad/FireDevourerEmbedder-RL-v3.6}
}
```
## Author
**Zain Asad**
## License
MIT License
|