Website | Paper | GitHub | Models
Authors: Shusheng Yang*, Jihan Yang*, Pinzhi Huang†, Ellis Brown†, et al.
VSI-590K is a large-scale spatially-focused instruction-tuning dataset focusing on spatial reasoning. The dataset is curated from diverse sources and carefully annotated.
Quick Start
import json
Load from JSONL file
with open('vsi_590k.jsonl', 'r') as f:
for line in f:
sample = json.loads(line.strip())
print(sample)
break… See the full description on the dataset page: https://huggingface.co/datasets/nyu-visionx/VSI-590K.