CoolFace
Modelpublic

HassanB4/t2_s5_qarib_text_target

sourceHugging Faceapache-2.0updated 1mo agoView on Hugging Face
0likes11downloads
Model Card

StanceEval-2026 — Track 2 (Unseen Targets): QARiB

Arabic stance-detection classifier for StanceEval-2026, an ArabicNLP 2026 (@ EMNLP 2026, Budapest) shared task. Given an Arabic tweet and a target topic, the model predicts whether the tweet's author is in Favor of, Against, or has None (neutral/irrelevant) stance toward the target.

Track 2: Unseen Targets

Trained on the Track 2 training pool, evaluated on target topics not seen during training (cross-target generalization). Train 2,721 / Dev 1,400 tweets (Mawqif-v2).

Base model

ahmedabdelali/bert-base-qarib

Labels

IDLabelMeaning
0FavorTweet supports the target
1AgainstTweet opposes the target
2NoneNeutral, irrelevant, or unclear stance

Dev set result

79.16 Favg2 (dev set), the shared task's primary metric (macro-F1 over Favor + Against, None excluded).

Usage

python
from transformers import AutoTokenizer, AutoModelForSequenceClassification
import torch

tokenizer = AutoTokenizer.from_pretrained("HassanB4/t2_s5_qarib_text_target")
model = AutoModelForSequenceClassification.from_pretrained("HassanB4/t2_s5_qarib_text_target")
model.eval()

id2label = {0: "Favor", 1: "Against", 2: "None"}

text = "..."
target = "..."
inputs = tokenizer(text, target, return_tensors="pt", truncation=True, max_length=512)

with torch.no_grad():
    logits = model(**inputs).logits

predicted_label = id2label[int(torch.argmax(logits, dim=-1)[0])]
print(predicted_label)

Status

Part of the NAMAA Community StanceEval-2026 submission (Track 2). A system description paper is in preparation; citation details will be added once available.