Nicesse-RARA-3B is a complete 3B chart visual question answering model in the Qwen2.5-VL family. It is trained with Reweighted Answer-Restricted Adaptation (RARA), which combines challenge-aware example exposure with answer-focused supervision for numerical and comparative chart reasoning. The repository contains the complete model checkpoint and the matching processor configuration for direct use with transformers.
The table reports publicly available results on four chart VQA benchmarks. Scores are dataset-level accuracy in percent; higher is better. ChartQAPro additionally has a strict-audit score of 22.28.
The Nicesse-RARA-3B configuration was selected using a frozen development split. It was then evaluated once on four frozen benchmark manifests. The result is strongest on PlotQA among the listed comparable public 3B models; its ChartQAPro result follows the published-code-compatible evaluation protocol.
1from transformers import AutoProcessor, Qwen2_5_VLForConditionalGeneration
2
3model_id = "Junlaii/Nicesse-RARA-3B"
4model = Qwen2_5_VLForConditionalGeneration.from_pretrained(
5 model_id, torch_dtype="auto", device_map="auto"
6)
7processor = AutoProcessor.from_pretrained(model_id)
8
9messages = [{
10 "role": "user",
11 "content": [
12 {"type": "image", "image": "path/to/chart.png"},
13 {"type": "text", "text": "What is the value of the blue bar in 2010?"},
14 ],
15}]
16prompt = processor.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
17inputs = processor(text=[prompt], images=["path/to/chart.png"], return_tensors="pt").to(model.device)
18generated_ids = model.generate(**inputs, max_new_tokens=768)
19print(processor.batch_decode(generated_ids, skip_special_tokens=True)[0])
Nicesse-RARA-3B is intended for research on chart understanding, visual question answering, and numerical reasoning. It can make visual-reading, arithmetic, formatting, and ambiguous-question errors. Benchmark results do not establish reliability for high-stakes decisions; validate outputs independently in any downstream deployment.