Views
No views yet
FPTAI/vibert-base-cased fine-tuned for VFC-FC on ViFactCheck using the claim paired with full article context.| Metric | Mean ± std |
|---|---|
| Test Macro-F1 | 0.5631 ± 0.0145 |
| Test accuracy | 0.5612 ± 0.0149 |
| Test macro precision | 0.5713 ± 0.0159 |
| Test macro recall | 0.5599 ± 0.0148 |
| Development Macro-F1 | 0.5612 ± 0.0084 |
| seed | dev_macro_f1 | test_macro_f1 | test_accuracy | micro_batch_size | gradient_accumulation_steps |
|---|---|---|---|---|---|
| 22.000000 | 0.563189 | 0.571691 | 0.567680 | 8.000000 | 1.000000 |
| 42.000000 | 0.568413 | 0.546268 | 0.544199 | 8.000000 | 1.000000 |
| 202.000000 | 0.551967 | 0.571242 | 0.571823 | 8.000000 | 1.000000 |
1{
2 "0": "supported",
3 "1": "refuted",
4 "2": "not_enough_information"
5}1import torch
2from transformers import AutoModelForSequenceClassification, AutoTokenizer
3
4model_id = "BaoNhan/vibert-base-cased-ViFactCheck-FC"
5tokenizer = AutoTokenizer.from_pretrained(model_id, use_fast=False)
6model = AutoModelForSequenceClassification.from_pretrained(model_id)
7
8claim = "Thông tin này đã được cơ quan chức năng xác nhận."
9context = "Bài báo cung cấp bằng chứng liên quan đến phát biểu trên."
10inputs = tokenizer(
11 claim,
12 context,
13 return_tensors="pt",
14 truncation="longest_first",
15 max_length=256,
16)
17with torch.no_grad():
18 probabilities = model(**inputs).logits.softmax(dim=-1)[0]
19predicted_id = int(probabilities.argmax())
20print(model.config.id2label[predicted_id], probabilities.tolist())aggregate_metrics.json: aggregate metrics and training manifest.artifacts/per_seed_results.csv: one row per fine-tuning seed.artifacts/seed_*_confusion_matrix.csv: confusion matrix for each seed.artifacts/seed_*_classification_report.json: per-class metrics.artifacts/seed_*_test_predictions.csv: IDs, gold/predicted labels and probabilities; raw claims and passages are excluded.1@inproceedings{hoa2025vifactcheck,
2 title={ViFactCheck: A New Benchmark Dataset and Methods for Multi-domain News Fact-Checking in Vietnamese},
3 author={Hoa, Tran Thai and Duy, Tran Quang and Tran, Khanh Quoc and Nguyen, Kiet Van},
4 booktitle={Proceedings of the AAAI Conference on Artificial Intelligence},
5 volume={39},
6 number={1},
7 pages={308--316},
8 year={2025},
9 doi={10.1609/aaai.v39i1.32008}
10}