QLoRA adapter fine-tuned for short-answer chart question answering on ChartQA. This repository contains the adapter and training/evaluation artifacts; use the
merged 16-bit or
AWQ W4A16 repository for standalone serving.
The gain is concentrated on augmented questions; improvement on human-authored questions is small. Aggregate results and content-free per-item correctness evidence are published in the
GitHub repository; raw predictions, questions, labels, and ChartQA images are intentionally excluded from public artifacts.
1from unsloth import FastVisionModel
2
3model, processor = FastVisionModel.from_pretrained(
4 "steven0226/qwen3vl-8b-chartqa-lora",
5 load_in_4bit=True,
6)
7FastVisionModel.for_inference(model)
Format inputs as a Qwen3-VL user message containing the chart image followed by the question and:
For deployment without PEFT attachment, use the merged or AWQ repositories linked above.
這是以 15,000 筆 ChartQA、1 epoch 訓練的 Qwen3-VL-8B QLoRA adapter。完整 2,500 題 relaxed accuracy 由 84.68% 提升至 85.24%(+0.56 pp);增益主要來自 augmented split,human split 僅提升 0.16 pp。若要直接部署,建議使用已合併的 16-bit 或 AWQ W4A16 版本。