├── .gitignore ├── DIOR_RSVG ├── dataset.txt ├── test.txt ├── train.txt └── val.txt ├── README.md ├── data_loader.py ├── fig ├── DIOR-RSVG.jpg └── MGVLF.jpg └── main.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhanYang-nwpu/RSVG-pytorch/HEAD/.gitignore -------------------------------------------------------------------------------- /DIOR_RSVG/dataset.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhanYang-nwpu/RSVG-pytorch/HEAD/DIOR_RSVG/dataset.txt -------------------------------------------------------------------------------- /DIOR_RSVG/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhanYang-nwpu/RSVG-pytorch/HEAD/DIOR_RSVG/test.txt -------------------------------------------------------------------------------- /DIOR_RSVG/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhanYang-nwpu/RSVG-pytorch/HEAD/DIOR_RSVG/train.txt -------------------------------------------------------------------------------- /DIOR_RSVG/val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhanYang-nwpu/RSVG-pytorch/HEAD/DIOR_RSVG/val.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhanYang-nwpu/RSVG-pytorch/HEAD/README.md -------------------------------------------------------------------------------- /data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhanYang-nwpu/RSVG-pytorch/HEAD/data_loader.py -------------------------------------------------------------------------------- /fig/DIOR-RSVG.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhanYang-nwpu/RSVG-pytorch/HEAD/fig/DIOR-RSVG.jpg -------------------------------------------------------------------------------- /fig/MGVLF.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhanYang-nwpu/RSVG-pytorch/HEAD/fig/MGVLF.jpg -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhanYang-nwpu/RSVG-pytorch/HEAD/main.py --------------------------------------------------------------------------------