Views
No views yet
SallySims/equibert-relation-extraction[E1] subject [/E1] ... [E2] object [/E2]| Relation | Description | Example |
|---|---|---|
NO_RELATION | No meaningful relation | — |
EXCLUDES | Entity excludes another | Manager EXCLUDES BIPOC employees |
DISCRIMINATES | Discriminatory act | Policy DISCRIMINATES AGAINST disabled staff |
ADVANTAGES | Provides advantage | Programme ADVANTAGES white candidates |
DISADVANTAGES | Creates disadvantage | Process DISADVANTAGES women |
ACCOUNTABLE_FOR | Holds accountability | CHRO ACCOUNTABLE_FOR pay equity |
ADDRESSES | Addresses an issue | Training ADDRESSES unconscious bias |
VIOLATES | Policy violation | Screening VIOLATES anti-discrimination policy |
BENEFITS | Provides benefit | ERG BENEFITS LGBTQ+ employees |
HARMS | Causes harm | Language HARMS neurodiverse candidates |
REPRESENTS | Representation claim | Board REPRESENTS diverse community |
REPORTS_ON | Reporting relation | Annual report REPORTS_ON pay gap |
1text = "[E1] manager [/E1] excluded [E2] BIPOC employees [/E2] from the workshop."
2inputs = tokenizer(text, return_tensors="pt", truncation=True, max_length=256)
3# relation = id2label[model(**inputs).logits.argmax(-1).item()]Input Text
│
├──▶ RoBERTa-base encoder ──▶ Linear projection
│ │
└──▶ DeBERTa-v3-base encoder ──▶ Linear projection
│
Weighted fusion (learned α)
│
Layer Norm + Dropout
│
Task-specific head (see below)1@misc{equibert2024,
2 author = {SallySims},
3 title = {EquiBERT: A Multi-Task DEI Transformer},
4 year = {2024},
5 publisher = {HuggingFace},
6 url = {https://huggingface.co/SallySims}
7}| Model | Task | Primary Metric |
|---|---|---|
| equibert-bias-classifier | Bias Detection | Macro F1 |
| equibert-microaggression | Microaggression Detection | Macro F1 |
| equibert-category-tagger | DEI Category Tagging | Macro F1 |
| equibert-event-exclusion | Event Exclusion Classification | Macro F1 |
| equibert-inclusive-language | Inclusive Language Scoring | Span F1 |
| equibert-review-auditor | Performance Review Auditing | Span F1 |
| equibert-washing-detector | DEI Washing Detection | MAE |
| equibert-framing-scorer | Report Framing Scoring | MAE |
| equibert-awareness-scorer | DEI Awareness Scoring | MAE |
| equibert-similarity | Semantic Similarity | Accuracy |
| equibert-ner | DEI Entity Recognition | Span F1 |
| equibert-relation-extraction | Relation Extraction | Macro F1 |
| equibert-qa | Extractive QA | Span EM |
| equibert-search | Semantic Search | MRR@10 |
| equibert-nli | NLI / Textual Entailment | Macro F1 |
| equibert-generator | DEI Text Generation | ROUGE-L |