Views
No views yet
document → relevance gate → event-type router → evidence selection
→ NER → relation extraction → knowledge graph → structured event JSON| Base model | xlm-roberta-base |
| Task | evidence |
| Input | text-pair |
| Max length | 192 |
| Format | ONNX INT8 (dynamic quantization), ~279 MB |
| Version | c749dd7cf2726 |
| Languages | Bengali (primary, ~96% of training corpus), English |
not_evidenceevidencescore = softmax(logits)[1] over (condition, sentence); rank top-kmodel_manifest.json, so a serving process can
consume the model without hardcoding anything.| Metric | Value |
|---|---|
| ROC-AUC | 0.8942 |
| PR-AUC | 0.782 |
| F1 | 0.6865 |
1from huggingface_hub import snapshot_download
2import onnxruntime as ort, numpy as np
3from transformers import AutoTokenizer
4
5d = snapshot_download("saidylive/newsintel-evidence", revision="c749dd7cf2726",
6 allow_patterns=["model_int8.onnx", "*.json", "*.model"])
7tok = AutoTokenizer.from_pretrained(d)
8sess = ort.InferenceSession(f"{d}/model_int8.onnx", providers=["CPUExecutionProvider"])
9
10enc = tok("type: ATTRIBUTE | target: death_count | need: | event: accident",
11 "সাভারে সংঘর্ষে ৩ জন নিহত হয়েছেন।", return_tensors="np")
12logits = sess.run(None, {k: v for k, v in enc.items()
13 if k in {i.name for i in sess.get_inputs()}})[0]
14# decision rule (from model_manifest.json):
15# score = softmax(logits)[1] over (condition, sentence); rank top-kbd_eng_news_daily Kaggle corpus of Bangladeshi news (~713k articles,
~96% Bengali by character ratio). Labels are silver, not human-annotated: a teacher LLM
produced structured event annotations, which were distilled into these small models. No
manual annotation was performed at any stage.1@software{newsintel_ai,
2 title = {NewsIntel AI: distilled multilingual event extraction for Bangladeshi news},
3 author = {Md. Sheikh Saidy},
4 year = {2026},
5 url = {https://huggingface.co/saidylive/newsintel-evidence}
6}