Dataset Viewer
Auto-converted to Parquet Duplicate
Search is not available for this dataset
image
imagewidth (px)
103
2.64k
label
class label
10 classes
0img_1
0img_1
0img_1
0img_1
0img_1
0img_1
0img_1
0img_1
0img_1
0img_1
0img_1
0img_1
0img_1
0img_1
0img_1
0img_1
0img_1
0img_1
0img_1
0img_1
0img_1
0img_1
0img_1
0img_1
0img_1
0img_1
0img_1
0img_1
0img_1
0img_1
0img_1
0img_1
0img_1
0img_1
0img_1
0img_1
0img_1
0img_1
0img_1
0img_1
1img_10
1img_10
1img_10
1img_10
1img_10
1img_10
1img_10
1img_10
1img_10
1img_10
1img_10
1img_10
1img_10
1img_10
1img_10
1img_10
1img_10
1img_10
1img_10
1img_10
1img_10
1img_10
1img_10
1img_10
1img_10
1img_10
1img_10
1img_10
1img_10
1img_10
1img_10
1img_10
1img_10
1img_10
1img_10
1img_10
1img_10
1img_10
1img_10
1img_10
1img_10
1img_10
1img_10
1img_10
1img_10
1img_10
1img_10
1img_10
1img_10
1img_10
1img_10
1img_10
1img_10
1img_10
1img_10
1img_10
1img_10
1img_10
1img_10
1img_10
End of preview. Expand in Data Studio

VisReason

VisReason is a benchmark for evaluating vision-centric reasoning in everyday scenarios where perception and inference are tightly coupled. It is designed to test whether multimodal large language models can reason directly from visual evidence rather than relying mainly on language-mediated abstractions.

The dataset contains 1,505 carefully curated questions across 10 reasoning categories, covering perceptual, structural, and conceptual reasoning tasks.

πŸ“₯ Download

You can download the dataset with the Hugging Face CLI:

hf download CASIA-IVA-Lab/VisReason --repo-type dataset --local-dir ./data

The official evaluation scripts expect the dataset to be available under ./data in the project root.

πŸ—‚οΈ Dataset Structure

data/
  img_<class_number>/
    datajson_label.<ext>
  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_<class_number> folders. Each image file is named with the source dataset key and sample label:

datajson_label.<ext>

πŸ“Š 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:

https://github.com/CASIA-IVA-Lab/VisReason

Inference results are expected to be saved as:

results/<model>/class_X_results.json
results/<model>_cot/class_X_results.json

The evaluator writes per-class judging files and a final summary:

results/<model>/class_X_judge.json
results/<model>/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


πŸ“¬ Contact

If you have any questions, please reach out to:

Downloads last month
843