NeurIPS 2024

Learning De-Biased Representations for Remote-Sensing Imagery

Zichen Tian, Zhaozheng Chen, Qianru Sun

Singapore Management University

TL;DR

Abstract

Remote sensing (RS) imagery, which requires specialized satellites to collect and is difficult to annotate, suffers from data scarcity and class imbalance in certain spectrums. Due to their data scarcity, training large-scale RS models from scratch is unrealistic, and the alternative is to transfer pre-trained models by fine-tuning or a more data-efficient method LoRA. Due to class imbalance, transferred models exhibit strong bias, where features of the major class dominate over those of the minor class. In this paper, we propose debLoRA, a generic training approach that works with any LoRA variants to yield debiased features. It is an unsupervised learning approach that can diversify minor class features based on the shared attributes with major classes, where the attributes are obtained by a simple step of clustering. To evaluate it, we conduct extensive experiments in two transfer learning scenarios in the RS domain: from natural to optical RS images, and from optical RS to multi-spectrum RS images. We perform object classification and oriented object detection tasks on the optical RS dataset DOTA and the SAR dataset FUSRS. Results show that our debLoRA consistently surpasses prior arts across these RS adaptation settings, yielding up to 3.3 and 4.7 percentage points gains on the tail classes for natural → optical RS and optical RS → multi-spectrum RS adaptations, respectively, while preserving the performance on head classes, substantiating its efficacy and adaptability.

Method

debLoRA two key steps: (a) biased LoRA feature space, (b) clustering into attribute clusters, (c) calibrating tail features toward the de-biased center, (d) real samples sharing the streamlined-tail attribute
Figure 2 of the paper. (a) The baseline LoRA feature space is biased toward head classes. (b) All features are clustered regardless of labels; cluster centers A, B, C form a de-biased center D. (c) Tail-class features are calibrated toward D, then a debLoRA module is trained on the calibrated features. (d) Real samples sharing the 'streamlined tail' attribute across head and tail classes.

Key Results

MethodSD→DOTA TailOpenCLIP→DOTA TailSatMAE→FUSRS TailMean Tail
Zero-Shot87.991.767.882.5
Fine-Tune86.889.273.683.2
cLoRA89.392.282.087.9
cLoRA + debLoRA93.595.086.191.5
LoRA91.891.676.386.6
LoRA + ResLT93.093.875.487.4
LoRA + SADE92.492.578.487.8
LoRA + debLoRA (ours)95.194.881.090.3

Table 3 of the paper: tail-class macro F1-score (%) under three adaptation settings, linear probing. Mean-tail is the mean over the three settings.

Citation

@inproceedings{NEURIPS2024_6a8e1016,
 author = {Tian, Zichen and Chen, Zhaozheng and Sun, Qianru},
 booktitle = {Advances in Neural Information Processing Systems},
 doi = {10.52202/079017-1848},
 editor = {A. Globerson and L. Mackey and D. Belgrave and A. Fan and U. Paquet and J. Tomczak and C. Zhang},
 pages = {57970--57992},
 publisher = {Curran Associates, Inc.},
 title = {Learning De-Biased Representations for Remote-Sensing Imagery},
 url = {https://proceedings.neurips.cc/paper_files/paper/2024/file/6a8e10164a90d5c3660c3949289f969a-Paper-Conference.pdf},
 volume = {37},
 year = {2024}
}

debLoRA was submitted under the working title "De-Biased Representation Learning for Long-tailed PEFT in Remote Sensing"; the published NeurIPS 2024 title is "Learning De-Biased Representations for Remote-Sensing Imagery". Please cite the published version with the BibTeX above.

Links