Views
No views yet
FPTAI/velectra-base-discriminator-cased fine-tuned for VFC-GE on ViFactCheck using the claim paired with gold evidence.| Metric | Mean ± std |
|---|---|
| Test Macro-F1 | 0.8679 ± 0.0059 |
| Test accuracy | 0.8679 ± 0.0056 |
| Test macro precision | 0.8684 ± 0.0055 |
| Test macro recall | 0.8679 ± 0.0061 |
| Development Macro-F1 | 0.8746 ± 0.0014 |
| seed | dev_macro_f1 | test_macro_f1 | test_accuracy | micro_batch_size | gradient_accumulation_steps |
|---|---|---|---|---|---|
| 22.000000 | 0.873038 | 0.873255 | 0.872928 | 8.000000 | 1.000000 |
| 42.000000 | 0.875529 | 0.861648 | 0.861878 | 8.000000 | 1.000000 |
| 202.000000 | 0.875366 | 0.868893 | 0.868785 | 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/velectra-base-ViFactCheck-GE"
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."
9evidence = "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 evidence,
13 return_tensors="pt",
14 truncation="only_second",
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}