Deehan1866/WiC_actual
Viewer โข Updated โข 7.47k โข 21
Cross-encoder model for the Word-in-Context (WiC) binary sense disambiguation task. Both sentences โ plus an LLM-generated rationale โ are fed together so the model can attend across them simultaneously.
bayartsogt/structbert-large
[CLS] sentence1_marked [SEP] sentence2_marked [SEP] rationale [SEP]
The target word is wrapped with <TGT>word</TGT> using the exact token position
from the dataset (start1/start2 columns), so marking is always precise regardless
of lemma or morphological variation.
| Split | Accuracy |
|---|---|
| Validation | 0.7398 |
| Test | 0.7229 |
from transformers import AutoTokenizer, AutoModelForSequenceClassification
import torch
tokenizer = AutoTokenizer.from_pretrained("Deehan1866/wic-angle3-withbannedwords")
model = AutoModelForSequenceClassification.from_pretrained("Deehan1866/wic-angle3-withbannedwords")
s1 = "The <TGT>bank</TGT> raised its interest rates."
s2 = "She visited her local <TGT>bank</TGT> to deposit a cheque."
rationale = "In the first sentence 'bank' refers to a financial institution; in the second it also refers to a financial institution."
sep = tokenizer.sep_token
enc = tokenizer(s1, s2 + " " + sep + " " + rationale,
return_tensors="pt", truncation=True, max_length=512)
with torch.no_grad():
logits = model(**enc).logits
pred = torch.argmax(logits).item()
print("Same sense" if pred == 1 else "Different sense")