October MONO-EN
Collection
24 items • Updated
Slur reclamation binary classifier
Task: LGBTQ+ reclamation vs non-reclamation use of harmful words on social media text.
Trial timestamp (UTC): 2025-10-13 16:56:14
Data case:
en
Model: Alibaba-NLP/gte-multilingual-base
| Hyperparameter | Value |
|---|---|
| LANGUAGES | en |
| LR | 3e-05 |
| EPOCHS | 3 |
| MAX_LENGTH | 256 |
| USE_BIO | False |
| USE_LANG_TOKEN | False |
| GATED_BIO | False |
| FOCAL_LOSS | True |
| FOCAL_GAMMA | 2.5 |
| USE_SAMPLER | True |
| R_DROP | True |
| R_KL_ALPHA | 0.5 |
| TEXT_NORMALIZE | True |
| Metric | Value |
|---|---|
| f1_macro_dev_0.5 | 0.5104895104895105 |
| f1_weighted_dev_0.5 | 0.8592316774134956 |
| accuracy_dev_0.5 | 0.8701298701298701 |
| f1_macro_dev_best_global | 0.5588972431077694 |
| f1_weighted_dev_best_global | 0.8255378706506526 |
| accuracy_dev_best_global | 0.7922077922077922 |
| f1_macro_dev_best_by_lang | 0.5588972431077694 |
| f1_weighted_dev_best_by_lang | 0.8255378706506526 |
| accuracy_dev_best_by_lang | 0.7922077922077922 |
| default_threshold | 0.5 |
| best_threshold_global | 0.4 |
| thresholds_by_lang | {"en": 0.4} |
0.50.4{ "en": 0.4 } precision recall f1-score support
no-recl (0) 0.9172 0.9433 0.9301 141
recl (1) 0.1111 0.0769 0.0909 13
accuracy 0.8701 154
macro avg 0.5142 0.5101 0.5105 154
weighted avg 0.8492 0.8701 0.8592 154
precision recall f1-score support
no-recl (0) 0.9360 0.8298 0.8797 141
recl (1) 0.1724 0.3846 0.2381 13
accuracy 0.7922 154
macro avg 0.5542 0.6072 0.5589 154
weighted avg 0.8715 0.7922 0.8255 154
precision recall f1-score support
no-recl (0) 0.9360 0.8298 0.8797 141
recl (1) 0.1724 0.3846 0.2381 13
accuracy 0.7922 154
macro avg 0.5542 0.6072 0.5589 154
weighted avg 0.8715 0.7922 0.8255 154
| lang | n | acc | f1_macro | f1_weighted | prec_macro | rec_macro | prec_weighted | rec_weighted |
|---|---|---|---|---|---|---|---|---|
| en | 154 | 0.7922 | 0.5589 | 0.8255 | 0.5542 | 0.6072 | 0.8715 | 0.7922 |
from transformers import AutoTokenizer, AutoModelForSequenceClassification, AutoConfig
import torch, numpy as np
repo = "SimoneAstarita/en-no-bio-sweep-20251013-165614-t23"
tok = AutoTokenizer.from_pretrained(repo)
cfg = AutoConfig.from_pretrained(repo)
model = AutoModelForSequenceClassification.from_pretrained(repo)
texts = ["example text ..."]
langs = ["en"]
mode = "best_global" # or "0.5", "by_lang"
enc = tok(texts, truncation=True, padding=True, max_length=256, return_tensors="pt")
with torch.no_grad():
logits = model(**enc).logits
probs = torch.softmax(logits, dim=-1)[:, 1].cpu().numpy()
if mode == "0.5":
th = 0.5
preds = (probs >= th).astype(int)
elif mode == "best_global":
th = getattr(cfg, "best_threshold_global", 0.5)
preds = (probs >= th).astype(int)
elif mode == "by_lang":
th_by_lang = getattr(cfg, "thresholds_by_lang", {})
preds = np.zeros_like(probs, dtype=int)
for lg in np.unique(langs):
t = th_by_lang.get(lg, getattr(cfg, "best_threshold_global", 0.5))
preds[np.array(langs) == lg] = (probs[np.array(langs) == lg] >= t).astype(int)
print(list(zip(texts, preds, probs)))
reports.json: all metrics (macro/weighted/accuracy) for @0.5, @best_global, and @best_by_lang. config.json: stores thresholds: default_threshold, best_threshold_global, thresholds_by_lang. postprocessing.json: duplicate threshold info for external tools.