--- pretty_name: VisReason task_categories: - visual-question-answering tags: - multimodal - visual-reasoning - mllm - benchmark size_categories: - 1K/ datajson_label. class_1.jsonl class_2.jsonl ... class_10.jsonl datasets.json ``` `datasets.json` is the dataset index used by the evaluation scripts. Modify this file to select or adjust the classes to evaluate. Images are stored under the corresponding `img_` folders. Each image file is named with the source dataset key and sample label: ```text datajson_label. ``` ## ๐Ÿ“Š Data Files | Class | Data file | Samples | Image folder | | --- | --- | ---: | --- | | `class_1` | `class_1.jsonl` | 40 | `img_1/` | | `class_2` | `class_2.jsonl` | 100 | `img_2/` | | `class_3` | `class_3.jsonl` | 46 | `img_3/` | | `class_4` | `class_4.jsonl` | 130 | `img_4/` | | `class_5` | `class_5.jsonl` | 200 | `img_5/` | | `class_6` | `class_6.jsonl` | 135 | `img_6/` | | `class_7` | `class_7.jsonl` | 200 | `img_7/` | | `class_8` | `class_8.jsonl` | 111 | `img_8/` | | `class_9` | `class_9.jsonl` | 275 | `img_9/` | | `class_10` | `class_10.jsonl` | 268 | `img_10/` | ## ๐Ÿงพ Data Format Each `class_*.jsonl` file contains one JSON object per line. A sample has the following fields: ### โ—† Sample Fields | Field | Description | | --- | --- | | `class` | Class identifier. | | `label` | Sample identifier within the source data. | | `question type` | Question format used for prompting and evaluation. | | `question` | Natural-language question. | | `answer` | Ground-truth answer, including boxes for localization tasks. | | `images` | Image paths associated with the sample. | | `datajson` | Source split. | | `Height` / `Weight` | Image size fields used by the released files. | | `url` | Original source URL, when available. | ### โ—† Question Type | Type | Format | | --- | --- | | `1` | Multiple-choice | | `2` | Short-answer | | `3` | Open-ended | | `4` | Bounding-box localization | ## ๐Ÿงช Evaluation The evaluation code is available in the GitHub repository: ```text https://github.com/CASIA-IVA-Lab/VisReason ``` Inference results are expected to be saved as: ```text results//class_X_results.json results/_cot/class_X_results.json ``` The evaluator writes per-class judging files and a final summary: ```text results//class_X_judge.json results//summary.json ``` For `class_1` and `class_2`, bounding-box predictions are evaluated with IoU at threshold 0.5. Other classes are evaluated by an LLM-based judge. The final score is the unweighted mean over all class accuracies. ## ๐Ÿ“„ License ## ๐Ÿ“ Citation ```bibtex ``` ## ๐Ÿ“ฌ Contact If you have any questions, please reach out to: * Yifan Wang - wangyifan2026@ia.ac.cn