--- license: cc-by-nc-sa-4.0 task_categories: - visual-question-answering - image-to-text - reinforcement-learning - feature-extraction language: - en tags: - remote-sensing - earth-observation - satellite-imagery - geospatial - geospatial-reasoning - multimodal - visual-question-answering - vision-language-model - foundation-model size_categories: - 100K\n[vqa] Is there a residential building on the right of the university?" }, { "role": "assistant", "content": "no" } ], "images": [ "RSVQA-HR/8766.png" ] } ``` For GeoZero-Hard.json: ```json { "messages": [ { "role": "system", "content": "system prompt" }, { "role": "user", "content": "\n[vqa] What is the area covered by residential buildings? Give a response of yes or no." } ], "images": ["RSVQA-HR/118.png"], "solution": " 1934m2 \n", "task_type": ["vqa"] } ``` ## Loading the Dataset ### Load JSON Directly ```python import json with open("GeoZero-Instruct.json", "r", encoding="utf-8") as f: data = json.load(f) ``` ### Load with Hugging Face Datasets ```python from datasets import load_dataset dataset = load_dataset( "hjvsl/GeoZero_Train_Datasets", data_files="GeoZero-Instruct.json" ) ``` ## Citation If you use GeoZero in your research, please cite: ```bibtex @article{wang2025geozero, title = {GeoZero: Incentivizing Reasoning from Scratch on Geospatial Scenes}, author = {Wang, Di and Liu, Shunyu and Jiang, Wentao and Wang, Fengxiang and Liu, Yi and Qin, Xiaolei and Luo, Zhiming and Zhou, Chaoyang and Guo, Haonan and Zhang, Jing and Du, Bo and Tao, Dacheng and Zhang, Liangpei}, journal = {arXiv preprint arXiv:2511.22645}, year = {2025} } ``` ## Contact Di Wang, Wuhan University, d_wang@whu.edu.cn