A Prior Instruction Representation Framework for Remote Sensing Image-text Retrieval (MM'23 Oral)
December 22, 2023 ยท View on GitHub
By Jiancheng Pan, Qing Ma, Cong Bai.
This repo is the official implementation of "A Prior Instruction Representation Framework for Remote Sensing Image-text Retrieval"(MM'23 Oral).
If you want to find more RSITR methods, you can click: https://github.com/jaychempan/Awesome-RSITR
โน๏ธ Introduction
This paper presents a prior instruction representation framework (PIR) for remote sensing image-text retrieval, aimed at remote sensing vision-language understanding tasks to solve the semantic noise problem. Our highlight is the proposal of a paradigm that draws on prior knowledge to instruct adaptive learning of vision and text representations. Concretely, two progressive attention encoder (PAE) structures, Spatial-PAE and Temporal-PAE, are proposed to perform long-range dependency modeling to enhance key feature representation. In vision representation, Vision Instruction Representation (VIR) based on Spatial-PAE exploits the prior-guided knowledge of the remote sensing scene recognition by building a belief matrix to select key features for reducing the impact of semantic noise. In text representation, Language Cycle Attention (LCA) based on Temporal-PAE uses the previous time step to cyclically activate the current time step to enhance text representation capability. A cluster-wise affiliation loss is proposed to constrain the inter-classes and to reduce the semantic confusion zones in the common subspace. Comprehensive experiments demonstrate that using prior knowledge instruction could enhance vision and text representations and could outperform the state-of-the-art methods on two benchmark datasets, RSICD and RSITMD.

๐ฏ Implementation
Project Files
The directory hierarchy is shown below, where the checkpoints and data files can be downloaded from here [Baidu Disk] .
.
โโโ checkpoints
โย ย โโโ PIR
โย ย โโโ full_rsicd
โย ย โย ย โโโ checkpoint_49.pth
โย ย โย ย โโโ checkpoint_best.pth
โย ย โย ย โโโ config.yaml
โย ย โย ย โโโ log.txt
โย ย โโโ full_rsitmd
โย ย โโโ checkpoint_49.pth
โย ย โโโ checkpoint_best.pth
โย ย โโโ config.yaml
โย ย โโโ log.txt
โโโ configs
โย ย โโโ config_bert.json
โย ย โโโ config_swinT_224.json
โย ย โโโ Retrieval_rsicd.yaml
โย ย โโโ Retrieval_rsitmd.yaml
โโโ data
โโโ dataset
โโโ models
โโโ utils
โโโ mytools.py
โโโ optim.py
โโโ Pretrain.py
โโโ Retrieval.py
โโโ run.py
โโโ scheduler.py
โโโ requirements.txt
Environments
pip install -r requirements.txt
Train
If you encounter environmental problems, you can directly modify the get_dist_launch function of run.py, for example:(2 card GPU)
elif args.dist == 'f2':
return "CUDA_VISIBLE_DEVICES=0,1 WORLD_SIZE=2 /home/pjc/.conda/envs/xlvm/bin/python -W ignore -m torch.distributed.launch --master_port 9999 --nproc_per_node=2 " \
"--nnodes=1 "
For training, run cmd as follow:
python run.py --task 'itr_rsitmd' --dist "f2" --config 'configs/Retrieval_rsitmd.yaml' --output_dir './checkpoints/PIR/full_rsitmd'
python run.py --task 'itr_rsicd' --dist "f2" --config 'configs/Retrieval_rsicd.yaml' --output_dir './checkpoints/PIR/full_rsicd'
Test
python run.py --task 'itr_rsitmd' --dist "f2" --config 'configs/Retrieval_rsitmd.yaml' --output_dir './checkpoints/PIR/test' --checkpoint './checkpoints/PIR/full_rsitmd/checkpoint_best.pth' --evaluate
python run.py --task 'itr_rsicd' --dist "f2" --config 'configs/Retrieval_rsicd.yaml' --output_dir './checkpoints/PIR/test' --checkpoint './checkpoints/PIR/full_rsicd/checkpoint_best.pth' --evaluate
๐ Datasets
All experiments are based on RSITMD and RSICD datasets.
you also can download the images form Baidu Desk, and correspondingly modify the yaml file under configs files as follows: image_root: './images/datasets_name/'
๐ Results

๐ Acknowledgement
- Basic code to thank X-VLM by Zeng et al.
๐ Citation
If you find this code useful for your work or use it in your project, please cite our paper as:
@inproceedings{pan2023prior,
title={A Prior Instruction Representation Framework for Remote Sensing Image-text Retrieval},
author={Pan, Jiancheng and Ma, Qing and Bai, Cong},
booktitle={Proceedings of the 31st ACM International Conference on Multimedia},
pages={611--620},
year={2023}
}