Research
Towards Unified Vision Language Models for Forest Ecological Analysis in Earth Observation
Overview Research area: Earth Observation (EO) computer vision, specifically vision language models (VLMs) applied to forest ecological analysis, combining remote sensing with multimodal machine learn
- arXiv
- 2511.16853
- Published
- 2025-11-20
- Authors
- Xizhe Xue, Xiao Xiang Zhu
AI summary
Overview
Research area: Earth Observation (EO) computer vision, specifically vision language models (VLMs) applied to forest ecological analysis, combining remote sensing with multimodal machine learning.
Technical level: Advanced. The paper assumes familiarity with VLMs, multimodal instruction tuning, regression metrics (RMSE, MAE, R²), and remote sensing data sources such as Sentinel-2 and ALOS-2.
Scope: The paper introduces REO-Instruct, a large-scale multimodal benchmark that unifies descriptive tasks (land-cover classification, ecological patch counting, VQA-based human activity monitoring) with a scientific regression task (above-ground biomass estimation) along a single interpretable logic chain, and benchmarks representative VLMs against it.
What This Paper Is About
Existing EO datasets and VLMs mostly target semantic understanding such as captioning, VQA and classification, and there is no benchmark that ties multimodal perception to measurable biophysical variables. The authors argue that scientific regression — predicting physical quantities like biomass from satellite imagery — remains largely unexplored for VLMs, partly because of missing instruction-tuning data, divergent feature requirements between description and regression, error accumulation across numeric tokens, and conflicting optimization objectives. REO-Instruct is presented as the first unified benchmark for both descriptive and regression tasks in EO, built around a forest ecological logic chain: human activity → land-cover classification → ecological patch counting → above-ground biomass (AGB) regression.
Key Contributions
- A conceptual framework for scientific VLMs in EO. The authors propose integrating content understanding and quantitative regression inside a single vision–language model, organized by a logical-chain design that links semantically and scientifically related tasks, bridging descriptive and numeric reasoning.
- Creation of REO-Instruct. A large-scale multimodal benchmark that unifies generation and scientific regression tasks, integrating co-registered Sentinel-2 and ALOS-2 imagery with structured text annotations, forming a cognitively interpretable chain from human activity and land cover to ecological patch counts and AGB. The dataset contains 1.6 million image–text pairs in the training set, approximately 20k pairs in the validation set, and 36K pairs in the testing set.
- Comprehensive evaluation and baselines. Standardized protocols benchmark representative VLMs on REO-Instruct, revealing limitations in scientific numeric reasoning and establishing transparent baselines. Test subsets each contain approximately 8.6K unique samples with no image overlap.
- A hybrid human–AI annotation pipeline. Text annotations are generated with GPT-4o using more than 100 templates and prompt design, then corrected through automated checks against trusted sources such as the Copernicus Global Land Cover Map, followed by manual expert review of the test and validation sets.
Main Findings
- Regression remains unsolved. In the AGB regression task, all compared methods yield negative R² values under both RGB and MS settings, indicating they fail to learn meaningful numerical relationships from EO inputs and remain far from reliable for EO-driven quantitative estimation. The only positive R² reported is 0.32 for U-Net on MS, which is not a VLM.
- MS inputs help human activity monitoring. Multispectral inputs consistently outperform RGB imagery in the human-activity monitoring task. LLaVA reached 48.08% accuracy with MS versus 44.92% with RGB.
- EO-specific models beat general-purpose models on human activity monitoring. GeoChat scored 45.03% and LHRS-Bot 47.87%, versus 21.52% for Qwen2-VL and 33.79% for ChatGPT-4o, underscoring the benefit of spectral cues and domain-specialized pre-training.
- Land-cover classification accuracy is very low. ChatGPT-4o achieved OA of 3.97% and Qwen2-VL 3.77% on RGB. Qwen2-VL deemed 96.06% of queries unanswerable.
- Ecological patch counting is unreliable. Reported R² values are all negative: -121.79 (Qwen2-VL), -18.42 (ChatGPT-4o), and -0.27 (LLaVA). Best OA was 25.34% for LLaVA.
- Models frequently refuse or fail to answer. LLaVA answered 79.31% of RGB and 21.20% of MS queries, while Qwen2-VL answered only 20.31% of questions. In the fine-tuned LLaVA MS AGB setting, only 89.31% of questions with definite answers were counted.
- A gap in forestry and ecological knowledge. For forest ecology–oriented questions, general-purpose open-source and closed-source VLMs exhibit very low answer accuracy, revealing a substantial gap that generic web-scale corpora alone cannot bridge.
Methodology in Plain English
The authors start from an existing dataset (AGBD, with imagery collected in 2019–2020) and assemble three types of spatially aligned EO data over the same 250m × 250m observation areas, represented as 25 × 25-pixel patches. Multispectral data comes from Sentinel-2 L2A with 13 spectral bands at 10-meter spatial resolution; RGB images are made by extracting bands [4,3,2] from those multispectral images; SAR data comes from ALOS-2 PALSAR-2 products at 25-meter resolution with HH and HV polarization backscatter.
Around these images they build a logic chain of four tasks. Land-cover labels follow the Copernicus Global Land Cover Layers, with more than 20 categories. Ecological patch counting records the number of continuous land-cover units with distinct ecological characteristics, as a signal of vegetation richness and fragmentation. Human activity monitoring is posed as VQA about man-made features such as urban structures and agricultural fields. AGB is given in megagrams per hectare (Mg/ha) using GEDI AGB data as ground truth.
Text is generated by ChatGPT-4o through the official API using carefully designed prompts and more than 100 templates, with questions explicitly categorized so that a regression head is activated only for regression tasks. Because automatic generation can drift, a script cross-checks annotations against trusted sources (for example, correcting labels where the land cover map says "urban" but the generated label omits human activity) and discards unclear entries; senior experts then hand-review the cleaned test and validation sets.
For evaluation, the authors test two EO-focused models (GeoChat and LHRS-Bot) and general-purpose models (LLaVA-1.5-7B, Qwen2-VL-7B, ChatGPT-4o), using official 7B versions where applicable and evaluating publicly released models without additional training on REO-Instruct. GeoChat's clip_interpolate_embeddings component was modified to adapt to the image resolution of REO-Instruct. Guiding prompts explaining questions and possible answer ranges were supplied to comparison methods to keep evaluation fair.
Why This Matters
This work shifts EO vision-language research from describing what is in an image toward predicting measurable scientific quantities, and it supplies the first benchmark that ties the two together. It shows quantitatively that current VLMs, including domain-specific ones, cannot yet perform reliable numeric regression on satellite data.
Real-world applications:
- Forest carbon accounting and biomass stock estimation, where AGB values in Mg/ha feed carbon inventories and climate reporting.
- Biodiversity and habitat monitoring, using ecological patch counts as an indicator of vegetation richness and fragmentation.
- Deforestation and land-use change analysis, via human activity monitoring over urban structures and agricultural fields.
- Ecological and disaster-related monitoring, the broader EO applications the paper cites, including ecological monitoring, disaster response, and population dynamics analysis.
Industry relevance: the benchmark targets the geospatial and Earth observation sector, where satellite operators, analytics firms, and carbon-monitoring services need models that can both interpret imagery and produce defensible numbers. The negative R² results signal that off-the-shelf VLMs are not yet deployable for quantitative geospatial products, which is directly relevant to anyone considering VLM-based pipelines for environmental reporting.
Future Directions
- Regression-aware modeling strategies, since the paper concludes these are necessary for advancing scientific applications of VLMs, given that current models produce negative R² on AGB estimation.
- Better multimodal data integration, addressing the divergent latent feature requirements between generation tasks (aligned with human perception) and regression tasks (dependent on subtle spectral or spatial patterns invisible to the human eye).
- Mitigating numeric tokenization and error accumulation, where splitting numbers into discrete tokens lets a single wrong token cascade through the autoregressive prediction and degrade final numeric output.
- Extending the framework to broader geoscientific domains, which the authors explicitly name as a future effort beyond forest ecological analysis.
Target Audience
Researchers working on vision language models and multimodal learning who need a scientific regression benchmark; remote sensing and Earth observation scientists interested in AGB estimation, land-cover classification, and forest ecology; ecologists and carbon-monitoring practitioners who want to know what current VLMs can and cannot deliver from satellite imagery; and practitioners in the geospatial industry evaluating whether VLMs are ready for quantitative environmental products. Readers should be comfortable with regression metrics and remote sensing terminology.
Authors’ abstract
Recent progress in vision language models (VLMs) has enabled remarkable perception and reasoning capabilities, yet their potential for scientific regression in Earth Observation (EO) remains largely unexplored. Existing EO datasets mainly emphasize semantic understanding tasks such as captioning or classification, lacking benchmarks that align multimodal perception with measurable biophysical variables. To fill this gap, we present REO-Instruct, the first unified benchmark designed for both descriptive and regression tasks in EO. REO-Instruct establishes a cognitively interpretable logic chain in forest ecological scenario (human activity,land-cover classification, ecological patch counting, above-ground biomass (AGB) regression), bridging qualitative understanding and quantitative prediction. The dataset integrates co-registered Sentinel-2 and ALOS-2 imagery with structured textual annotations generated and validated through a hybrid human AI pipeline. Comprehensive evaluation protocols and baseline results across generic VLMs reveal that current models struggle with numeric reasoning, highlighting an essential challenge for scientific VLMs. REO-Instruct offers a standardized foundation for developing and assessing next-generation geospatial models capable of both description and scientific inference. The project page are publicly available at \href{https://github.com/zhu-xlab/REO-Instruct}{REO-Instruct}.