π€ AI Summary
This work addresses the challenges of spectral mismatch and high fine-tuning costs when adapting pretrained geospatial foundation models (GeoFMs) for Earth observation downstream tasks. To this end, we propose the SPECTRA framework, which introduces a Band-Routing Embedding (BRE) mechanism to effectively integrate all downstream spectral bands into the pretrained modelβs input space. Additionally, we design a Stage-wise Transferability-aware Low-Rank Adaptation (ST-LoRA) strategy that dynamically allocates adaptation rank across network stages based on their transferability. Experiments across three GeoFM architectures and four segmentation datasets demonstrate that BRE substantially improves performance, while ST-LoRA outperforms both full fine-tuning and standard LoRA with significantly fewer trainable parameters. To our knowledge, this is the first approach to jointly optimize spectral alignment and parameter-efficient fine-tuning in geospatial foundation models.
π Abstract
Geospatial foundation models (GeoFMs), pretrained on large-scale geospatial data such as Earth observation (EO), climate, and weather data, have shown promising performance when fine-tuned on diverse downstream tasks. However, there are two challenges of adapting EO-pretrained GeoFMs to practical downstream datasets. The first challenge is how to handle spectral mismatch: pretrained patch embeddings expect a fixed set of input bands, whereas downstream sensors may provide different channels. The second challenge is how to reduce fine-tuning cost and make it efficient. While existing work has made efforts on these challenges individually, jointly improving fine-tuning performance under spectral mismatch while reducing adaptation cost remains underexplored. We propose SPECTRA, a parameter-efficient fine-tuning framework that addresses both spectral mismatch and adaptation cost. To handle spectral mismatch, SPECTRA introduces Band-Routed Embedding (BRE), which maps all available downstream bands into the band space expected by the pretrained GeoFM. By using BRE, all available bands in the downstream dataset are utilized to improve the selected-band input without changing the pretrained patch embedding interface. To reduce adaptation cost, SPECTRA further introduces a Stage-wise Transferability-aware LoRA (ST-LoRA) fine-tuning. ST-LoRA estimates stage-wise transferability before fine-tuning and assigns stage-specific LoRA ranks, concentrating trainable parameters on the stages with high transferability for the target task. Across three EO-pretrained GeoFMs and four downstream segmentation datasets, experiments show that BRE improves performance by utilizing all spectral bands, while ST-LoRA reduces trainable parameters compared with full fine-tuning and standard LoRA. Code is available at https://github.com/big-data-lab-umbc/SPECTRA.