CoolFace
Datasetpublic

Wenliang04/HRScene

HRScene - High Resolution Image Understanding ๐ŸŒ Homepage | ๐Ÿค— Dataset | ๐Ÿ“– arXiv | GitHub โญ About HRScene We introduce HRScene, a novel unified benchmark for HRI understanding with rich scenes. HRScene incorporates 25 real-world datasets and 2 synthetic diagnostic datasets with resolutions ranging from 1,024 ร— 1,024 to 35,503 ร— 26,627. HRScene is collected and re-annotated by 10 graduate-level annotators, covering 25 scenarios, ranging from microscopic andโ€ฆ See the full description on the dataset page: https://huggingface.co/datasets/Wenliang04/HRScene.

sourceHugging Faceupdated 1y agoView on Hugging Face
2likes4.7kdownloads
Dataset Card

<div align="center"><h5>HRScene - High Resolution Image Understanding</h5></div>

<a href="https://yszh8.github.io/hrscene">๐ŸŒ Homepage</a> | <a href="https://huggingface.co/datasets/Wenliang04/HRScene">๐Ÿค— Dataset</a> | <a href="https://arxiv.org/pdf/2504.18406">๐Ÿ“– arXiv</a> | <a href="https://github.com/psunlpgroup/HRScene">GitHub</a>

โญ About HRScene

<p>We introduce <strong>HRScene</strong>, a novel unified benchmark for HRI understanding with rich scenes. HRScene incorporates 25 real-world datasets and 2 synthetic diagnostic datasets with resolutions ranging from <strong>1,024 ร— 1,024 to 35,503 ร— 26,627</strong>. HRScene is collected and re-annotated by 10 graduate-level annotators, covering <strong>25 scenarios</strong>, ranging from microscopic and radiology images to street views, long-range pictures, and telescope images. It includes high-resolution images of real-world objects, scanned documents, and composite multi-image.</p> <img src="example.png" alt="Dataset Sample Image" class="resized-image" style="max-width:100%; height:auto; display:block;"> <p> Some examples of HRScene. Blue ones are diagnostic datasets, and purple ones are real-world datasets.</p>

<p>HRScene consists of 7,073 samples, divided into three splits:</p>

Val contains 750 samples. These samples are identical to human-annotated ones, designed for fine-grained validation of the users' VLM settings.

Testmini comprises 1,000 samples, picked from each HRScene real-world dataset, intended for rapid model development evaluation or for those with limited computing resources.

Test features the remaining 5,323 samples for standard evaluation. Notably, the answer labels for test will not be publicly released to facilitate fair evaluation. Instead, we maintain an online evaluation platform for user submissions.

<p align="center"> <img src="piechart.png" width="60%"> <br> </p>

๐Ÿ“– Dataset Usage

Data Downloading

By using our pipeline, you dont need to download the dataset manually.

For whitebackground and complexgrid, you only need to set the dataset_name for the tester like we did in the Diagnosis/example.py.

python
tester = DiagnosisTester(model=model, dataset_name="complexgrid_3x3", num_samples=150)

For realworld, you need to set the dataset_name and split for the tester like we did in the RealWorld/example.py.

python
tester = RealWorldTester(model=model, dataset_name="realworld_combined", split="test")

Or you wanna download the dataset manually, you can use the following code:

python
from datasets import load_dataset


# for whitebackground and complexgrid, we only have 'test' split
dataset = load_dataset("Wenliang04/HRScene", "whitebackground_1x1")
for sample in dataset['test']:
    print(sample)

# for realworld, we have 'testmini', 'validation', 'test' splits
dataset = load_dataset("Wenliang04/HRScene", "realworld_combined")
for sample in dataset['test']:
    print(sample)

Data Format

WhiteBackground

id: int, image: PIL.JpegImagePlugin.JpegImageFile, question: str, answer: list[str]

bash
{'image': <PIL.JpegImagePlugin.JpegImageFile image mode=RGB size=448x448 at 0x7F01D88BF7A0>, 'id': 0, 'question': 'Is it daytime?', 'answer': ['no', 'no', 'no', 'no', 'no', 'no', 'no', 'no', 'no', 'no']}
ComplexGrid

id: str, image: PIL.JpegImagePlugin.JpegImageFile, caption: str, answer: str

bash
{'image': <PIL.JpegImagePlugin.JpegImageFile image mode=RGB size=1464x1524 at 0x7FB8634E6B70>, 'id': '0_0_0', 'caption': 'A nice living room has chairs and a love seat.', 'answer': 'row: 1, col: 1'}
RealWorld

id: int, image: PIL.Image.Image, question: str, answer: str

bash
{'id': 0, 'image': <PIL.JpegImagePlugin.JpegImageFile image mode=RGB size=5760x1200 at 0x7F4994CB75F0>, 'question': 'What is motion of the pedestrian wearing blue top on the left?\n(A) crossing the crosswalk\n(B) standing\n(C) jaywalking (illegally crossing not at pedestrian crossing)\n(D) walking on the sidewalk\n(E) The image does not feature the object', 'answer': 'None'}

๐Ÿ† Leaderboard ๐Ÿ†

Leaderboard on the RealWorld Task on the Test Split (Show Top 5 Only)

**#****Model****Art****Daily****Medical****Paper****Remote****Research****Sub-Img****Urban****Average**
1Qwen2-72B-Instruct75.966.243.778.152.539.474.944.761.9
2gemini-2-flash76.562.351.975.147.634.968.644.559.8
3InternVL2-40B74.462.738.170.944.243.274.144.458.5
4Llava-OneVision-72B68.364.642.068.946.252.168.740.357.5
5Qwen2-VL-7B-Instruct69.564.240.464.650.636.771.440.256.7

We provide a simple pipeline for automatic model prediction and submission file geneartion! You can find pipeline from our Github under "๐Ÿ”ฎ Evaluations on HRScene for RealWorld Task" section

โœ… Cite

bibtex
@article{zhang2025hrscene,
    title={HRScene: How Far Are VLMs from Effective High-Resolution Image Understanding?},
    author={Zhang, Yusen and Zheng, Wenliang and Madasu, Aashrith and Shi, Peng and Kamoi, Ryo and Zhou, Hao and Zou, Zhuoyang and Zhao, Shu and Das, Sarkar Snigdha Sarathi and Gupta, Vipul and Lu, Xiaoxin and Zhang, Nan and Zhang, Ranran Haoran and Iyer, Avitej and Lou, Renze and Yin, Wenpeng and Zhang, Rui},
    journal={arXiv preprint},
    year={2025}
}