├── DMNIL ├── README.md ├── Utils │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── __init__.cpython-312.pyc │ │ ├── __init__.cpython-38.pyc │ │ ├── __init__.cpython-39.pyc │ │ ├── base_dataset.cpython-311.pyc │ │ ├── base_dataset.cpython-312.pyc │ │ ├── faiss_rerank.cpython-311.pyc │ │ ├── faiss_rerank.cpython-312.pyc │ │ ├── faiss_utils.cpython-311.pyc │ │ ├── faiss_utils.cpython-312.pyc │ │ ├── init.cpython-311.pyc │ │ ├── init.cpython-312.pyc │ │ ├── init.cpython-38.pyc │ │ ├── init.cpython-39.pyc │ │ ├── meters.cpython-311.pyc │ │ ├── meters.cpython-312.pyc │ │ ├── osutils.cpython-311.pyc │ │ ├── osutils.cpython-312.pyc │ │ ├── preprocessor.cpython-311.pyc │ │ ├── preprocessor.cpython-312.pyc │ │ ├── rerank.cpython-311.pyc │ │ ├── rerank.cpython-312.pyc │ │ ├── sampler.cpython-311.pyc │ │ ├── sampler.cpython-312.pyc │ │ ├── serialization.cpython-311.pyc │ │ ├── serialization.cpython-312.pyc │ │ ├── transforms.cpython-311.pyc │ │ └── transforms.cpython-312.pyc │ ├── base_dataset.py │ ├── faiss_rerank.py │ ├── faiss_utils.py │ ├── init.py │ ├── meters.py │ ├── osutils.py │ ├── preprocessor.py │ ├── rerank.py │ ├── sampler.py │ ├── serialization.py │ └── transforms.py ├── __init__.py ├── dataset │ ├── DenseUAV_dor.py │ ├── DenseUAV_sat.py │ ├── SUES_dor.py │ ├── SUES_sat.py │ ├── U1652_dor.py │ ├── U1652_sat.py │ ├── __init__.py │ ├── __pycache__ │ │ ├── DenseUAV_dor.cpython-312.pyc │ │ ├── DenseUAV_sat.cpython-312.pyc │ │ ├── SUES_dor.cpython-312.pyc │ │ ├── SUES_sat.cpython-312.pyc │ │ ├── U1652_dor.cpython-312.pyc │ │ ├── U1652_sat.cpython-312.pyc │ │ ├── __init__.cpython-312.pyc │ │ ├── cvact.cpython-39.pyc │ │ ├── drone.cpython-312.pyc │ │ ├── satellite.cpython-312.pyc │ │ ├── university.cpython-310.pyc │ │ ├── university.cpython-311.pyc │ │ ├── university.cpython-312.pyc │ │ ├── university.cpython-38.pyc │ │ ├── university.cpython-39.pyc │ │ └── vigor.cpython-39.pyc │ └── university.py ├── evaluate │ ├── __pycache__ │ │ ├── cvusa_and_cvact.cpython-39.pyc │ │ ├── university.cpython-311.pyc │ │ ├── university.cpython-312.pyc │ │ ├── university.cpython-38.pyc │ │ ├── university.cpython-39.pyc │ │ └── vigor.cpython-39.pyc │ ├── cvusa_and_cvact.py │ ├── sues-200.py │ ├── university.py │ └── vigor.py ├── evaluators.py ├── figure │ ├── 1_01.png │ └── 2.png ├── hand_convnext │ ├── ConvNext │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-311.pyc │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── cm.cpython-311.pyc │ │ │ ├── cm.cpython-312.pyc │ │ │ └── make_model.cpython-312.pyc │ │ ├── backbones │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── model_convnext.cpython-311.pyc │ │ │ │ ├── model_convnext.cpython-312.pyc │ │ │ │ ├── model_convnext.cpython-37.pyc │ │ │ │ ├── model_convnext.cpython-38.pyc │ │ │ │ ├── model_convnext.cpython-39.pyc │ │ │ │ ├── resnet.cpython-311.pyc │ │ │ │ ├── resnet.cpython-312.pyc │ │ │ │ ├── resnet.cpython-37.pyc │ │ │ │ ├── resnet.cpython-38.pyc │ │ │ │ └── resnet.cpython-39.pyc │ │ │ ├── model_convnext.py │ │ │ └── resnet.py │ │ ├── cluster_model.py │ │ ├── make_model.py │ │ └── test.py │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── __init__.cpython-312.pyc │ │ ├── __init__.cpython-37.pyc │ │ ├── __init__.cpython-38.pyc │ │ ├── __init__.cpython-39.pyc │ │ ├── model.cpython-311.pyc │ │ ├── model.cpython-312.pyc │ │ ├── model.cpython-38.pyc │ │ └── model.cpython-39.pyc │ └── model.py ├── model.py ├── solver │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── __init__.cpython-312.pyc │ │ ├── lr_scheduler.cpython-311.pyc │ │ ├── lr_scheduler.cpython-312.pyc │ │ ├── make_optimizer.cpython-311.pyc │ │ └── make_optimizer.cpython-312.pyc │ ├── cosine_lr.py │ ├── lr_scheduler.py │ ├── make_optimizer.py │ ├── scheduler.py │ └── scheduler_factory.py ├── trainer.py ├── trainers.py ├── transforms.py └── utils.py ├── LICENSE ├── README.md ├── data_process ├── README.md ├── process_DenseUAV.py ├── process_DenseUAV_test.py ├── process_SUES-200.py └── process_U1652.py ├── train.py └── train_log.txt /DMNIL/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /DMNIL/Utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/Utils/__init__.py -------------------------------------------------------------------------------- /DMNIL/Utils/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/Utils/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /DMNIL/Utils/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/Utils/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /DMNIL/Utils/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/Utils/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /DMNIL/Utils/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/Utils/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /DMNIL/Utils/__pycache__/base_dataset.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/Utils/__pycache__/base_dataset.cpython-311.pyc -------------------------------------------------------------------------------- /DMNIL/Utils/__pycache__/base_dataset.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/Utils/__pycache__/base_dataset.cpython-312.pyc -------------------------------------------------------------------------------- /DMNIL/Utils/__pycache__/faiss_rerank.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/Utils/__pycache__/faiss_rerank.cpython-311.pyc -------------------------------------------------------------------------------- /DMNIL/Utils/__pycache__/faiss_rerank.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/Utils/__pycache__/faiss_rerank.cpython-312.pyc -------------------------------------------------------------------------------- /DMNIL/Utils/__pycache__/faiss_utils.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/Utils/__pycache__/faiss_utils.cpython-311.pyc -------------------------------------------------------------------------------- /DMNIL/Utils/__pycache__/faiss_utils.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/Utils/__pycache__/faiss_utils.cpython-312.pyc -------------------------------------------------------------------------------- /DMNIL/Utils/__pycache__/init.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/Utils/__pycache__/init.cpython-311.pyc -------------------------------------------------------------------------------- /DMNIL/Utils/__pycache__/init.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/Utils/__pycache__/init.cpython-312.pyc -------------------------------------------------------------------------------- /DMNIL/Utils/__pycache__/init.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/Utils/__pycache__/init.cpython-38.pyc -------------------------------------------------------------------------------- /DMNIL/Utils/__pycache__/init.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/Utils/__pycache__/init.cpython-39.pyc -------------------------------------------------------------------------------- /DMNIL/Utils/__pycache__/meters.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/Utils/__pycache__/meters.cpython-311.pyc -------------------------------------------------------------------------------- /DMNIL/Utils/__pycache__/meters.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/Utils/__pycache__/meters.cpython-312.pyc -------------------------------------------------------------------------------- /DMNIL/Utils/__pycache__/osutils.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/Utils/__pycache__/osutils.cpython-311.pyc -------------------------------------------------------------------------------- /DMNIL/Utils/__pycache__/osutils.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/Utils/__pycache__/osutils.cpython-312.pyc -------------------------------------------------------------------------------- /DMNIL/Utils/__pycache__/preprocessor.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/Utils/__pycache__/preprocessor.cpython-311.pyc -------------------------------------------------------------------------------- /DMNIL/Utils/__pycache__/preprocessor.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/Utils/__pycache__/preprocessor.cpython-312.pyc -------------------------------------------------------------------------------- /DMNIL/Utils/__pycache__/rerank.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/Utils/__pycache__/rerank.cpython-311.pyc -------------------------------------------------------------------------------- /DMNIL/Utils/__pycache__/rerank.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/Utils/__pycache__/rerank.cpython-312.pyc -------------------------------------------------------------------------------- /DMNIL/Utils/__pycache__/sampler.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/Utils/__pycache__/sampler.cpython-311.pyc -------------------------------------------------------------------------------- /DMNIL/Utils/__pycache__/sampler.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/Utils/__pycache__/sampler.cpython-312.pyc -------------------------------------------------------------------------------- /DMNIL/Utils/__pycache__/serialization.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/Utils/__pycache__/serialization.cpython-311.pyc -------------------------------------------------------------------------------- /DMNIL/Utils/__pycache__/serialization.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/Utils/__pycache__/serialization.cpython-312.pyc -------------------------------------------------------------------------------- /DMNIL/Utils/__pycache__/transforms.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/Utils/__pycache__/transforms.cpython-311.pyc -------------------------------------------------------------------------------- /DMNIL/Utils/__pycache__/transforms.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/Utils/__pycache__/transforms.cpython-312.pyc -------------------------------------------------------------------------------- /DMNIL/Utils/base_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/Utils/base_dataset.py -------------------------------------------------------------------------------- /DMNIL/Utils/faiss_rerank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/Utils/faiss_rerank.py -------------------------------------------------------------------------------- /DMNIL/Utils/faiss_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/Utils/faiss_utils.py -------------------------------------------------------------------------------- /DMNIL/Utils/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/Utils/init.py -------------------------------------------------------------------------------- /DMNIL/Utils/meters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/Utils/meters.py -------------------------------------------------------------------------------- /DMNIL/Utils/osutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/Utils/osutils.py -------------------------------------------------------------------------------- /DMNIL/Utils/preprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/Utils/preprocessor.py -------------------------------------------------------------------------------- /DMNIL/Utils/rerank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/Utils/rerank.py -------------------------------------------------------------------------------- /DMNIL/Utils/sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/Utils/sampler.py -------------------------------------------------------------------------------- /DMNIL/Utils/serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/Utils/serialization.py -------------------------------------------------------------------------------- /DMNIL/Utils/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/Utils/transforms.py -------------------------------------------------------------------------------- /DMNIL/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/__init__.py -------------------------------------------------------------------------------- /DMNIL/dataset/DenseUAV_dor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/dataset/DenseUAV_dor.py -------------------------------------------------------------------------------- /DMNIL/dataset/DenseUAV_sat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/dataset/DenseUAV_sat.py -------------------------------------------------------------------------------- /DMNIL/dataset/SUES_dor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/dataset/SUES_dor.py -------------------------------------------------------------------------------- /DMNIL/dataset/SUES_sat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/dataset/SUES_sat.py -------------------------------------------------------------------------------- /DMNIL/dataset/U1652_dor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/dataset/U1652_dor.py -------------------------------------------------------------------------------- /DMNIL/dataset/U1652_sat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/dataset/U1652_sat.py -------------------------------------------------------------------------------- /DMNIL/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/dataset/__init__.py -------------------------------------------------------------------------------- /DMNIL/dataset/__pycache__/DenseUAV_dor.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/dataset/__pycache__/DenseUAV_dor.cpython-312.pyc -------------------------------------------------------------------------------- /DMNIL/dataset/__pycache__/DenseUAV_sat.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/dataset/__pycache__/DenseUAV_sat.cpython-312.pyc -------------------------------------------------------------------------------- /DMNIL/dataset/__pycache__/SUES_dor.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/dataset/__pycache__/SUES_dor.cpython-312.pyc -------------------------------------------------------------------------------- /DMNIL/dataset/__pycache__/SUES_sat.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/dataset/__pycache__/SUES_sat.cpython-312.pyc -------------------------------------------------------------------------------- /DMNIL/dataset/__pycache__/U1652_dor.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/dataset/__pycache__/U1652_dor.cpython-312.pyc -------------------------------------------------------------------------------- /DMNIL/dataset/__pycache__/U1652_sat.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/dataset/__pycache__/U1652_sat.cpython-312.pyc -------------------------------------------------------------------------------- /DMNIL/dataset/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/dataset/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /DMNIL/dataset/__pycache__/cvact.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/dataset/__pycache__/cvact.cpython-39.pyc -------------------------------------------------------------------------------- /DMNIL/dataset/__pycache__/drone.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/dataset/__pycache__/drone.cpython-312.pyc -------------------------------------------------------------------------------- /DMNIL/dataset/__pycache__/satellite.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/dataset/__pycache__/satellite.cpython-312.pyc -------------------------------------------------------------------------------- /DMNIL/dataset/__pycache__/university.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/dataset/__pycache__/university.cpython-310.pyc -------------------------------------------------------------------------------- /DMNIL/dataset/__pycache__/university.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/dataset/__pycache__/university.cpython-311.pyc -------------------------------------------------------------------------------- /DMNIL/dataset/__pycache__/university.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/dataset/__pycache__/university.cpython-312.pyc -------------------------------------------------------------------------------- /DMNIL/dataset/__pycache__/university.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/dataset/__pycache__/university.cpython-38.pyc -------------------------------------------------------------------------------- /DMNIL/dataset/__pycache__/university.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/dataset/__pycache__/university.cpython-39.pyc -------------------------------------------------------------------------------- /DMNIL/dataset/__pycache__/vigor.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/dataset/__pycache__/vigor.cpython-39.pyc -------------------------------------------------------------------------------- /DMNIL/dataset/university.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/dataset/university.py -------------------------------------------------------------------------------- /DMNIL/evaluate/__pycache__/cvusa_and_cvact.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/evaluate/__pycache__/cvusa_and_cvact.cpython-39.pyc -------------------------------------------------------------------------------- /DMNIL/evaluate/__pycache__/university.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/evaluate/__pycache__/university.cpython-311.pyc -------------------------------------------------------------------------------- /DMNIL/evaluate/__pycache__/university.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/evaluate/__pycache__/university.cpython-312.pyc -------------------------------------------------------------------------------- /DMNIL/evaluate/__pycache__/university.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/evaluate/__pycache__/university.cpython-38.pyc -------------------------------------------------------------------------------- /DMNIL/evaluate/__pycache__/university.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/evaluate/__pycache__/university.cpython-39.pyc -------------------------------------------------------------------------------- /DMNIL/evaluate/__pycache__/vigor.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/evaluate/__pycache__/vigor.cpython-39.pyc -------------------------------------------------------------------------------- /DMNIL/evaluate/cvusa_and_cvact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/evaluate/cvusa_and_cvact.py -------------------------------------------------------------------------------- /DMNIL/evaluate/sues-200.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/evaluate/sues-200.py -------------------------------------------------------------------------------- /DMNIL/evaluate/university.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/evaluate/university.py -------------------------------------------------------------------------------- /DMNIL/evaluate/vigor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/evaluate/vigor.py -------------------------------------------------------------------------------- /DMNIL/evaluators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/evaluators.py -------------------------------------------------------------------------------- /DMNIL/figure/1_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/figure/1_01.png -------------------------------------------------------------------------------- /DMNIL/figure/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/figure/2.png -------------------------------------------------------------------------------- /DMNIL/hand_convnext/ConvNext/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/hand_convnext/ConvNext/__init__.py -------------------------------------------------------------------------------- /DMNIL/hand_convnext/ConvNext/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/hand_convnext/ConvNext/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /DMNIL/hand_convnext/ConvNext/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/hand_convnext/ConvNext/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /DMNIL/hand_convnext/ConvNext/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/hand_convnext/ConvNext/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /DMNIL/hand_convnext/ConvNext/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/hand_convnext/ConvNext/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /DMNIL/hand_convnext/ConvNext/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/hand_convnext/ConvNext/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /DMNIL/hand_convnext/ConvNext/__pycache__/cm.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/hand_convnext/ConvNext/__pycache__/cm.cpython-311.pyc -------------------------------------------------------------------------------- /DMNIL/hand_convnext/ConvNext/__pycache__/cm.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/hand_convnext/ConvNext/__pycache__/cm.cpython-312.pyc -------------------------------------------------------------------------------- /DMNIL/hand_convnext/ConvNext/__pycache__/make_model.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/hand_convnext/ConvNext/__pycache__/make_model.cpython-312.pyc -------------------------------------------------------------------------------- /DMNIL/hand_convnext/ConvNext/backbones/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DMNIL/hand_convnext/ConvNext/backbones/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/hand_convnext/ConvNext/backbones/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /DMNIL/hand_convnext/ConvNext/backbones/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/hand_convnext/ConvNext/backbones/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /DMNIL/hand_convnext/ConvNext/backbones/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/hand_convnext/ConvNext/backbones/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /DMNIL/hand_convnext/ConvNext/backbones/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/hand_convnext/ConvNext/backbones/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /DMNIL/hand_convnext/ConvNext/backbones/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/hand_convnext/ConvNext/backbones/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /DMNIL/hand_convnext/ConvNext/backbones/__pycache__/model_convnext.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/hand_convnext/ConvNext/backbones/__pycache__/model_convnext.cpython-311.pyc -------------------------------------------------------------------------------- /DMNIL/hand_convnext/ConvNext/backbones/__pycache__/model_convnext.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/hand_convnext/ConvNext/backbones/__pycache__/model_convnext.cpython-312.pyc -------------------------------------------------------------------------------- /DMNIL/hand_convnext/ConvNext/backbones/__pycache__/model_convnext.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/hand_convnext/ConvNext/backbones/__pycache__/model_convnext.cpython-37.pyc -------------------------------------------------------------------------------- /DMNIL/hand_convnext/ConvNext/backbones/__pycache__/model_convnext.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/hand_convnext/ConvNext/backbones/__pycache__/model_convnext.cpython-38.pyc -------------------------------------------------------------------------------- /DMNIL/hand_convnext/ConvNext/backbones/__pycache__/model_convnext.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/hand_convnext/ConvNext/backbones/__pycache__/model_convnext.cpython-39.pyc -------------------------------------------------------------------------------- /DMNIL/hand_convnext/ConvNext/backbones/__pycache__/resnet.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/hand_convnext/ConvNext/backbones/__pycache__/resnet.cpython-311.pyc -------------------------------------------------------------------------------- /DMNIL/hand_convnext/ConvNext/backbones/__pycache__/resnet.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/hand_convnext/ConvNext/backbones/__pycache__/resnet.cpython-312.pyc -------------------------------------------------------------------------------- /DMNIL/hand_convnext/ConvNext/backbones/__pycache__/resnet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/hand_convnext/ConvNext/backbones/__pycache__/resnet.cpython-37.pyc -------------------------------------------------------------------------------- /DMNIL/hand_convnext/ConvNext/backbones/__pycache__/resnet.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/hand_convnext/ConvNext/backbones/__pycache__/resnet.cpython-38.pyc -------------------------------------------------------------------------------- /DMNIL/hand_convnext/ConvNext/backbones/__pycache__/resnet.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/hand_convnext/ConvNext/backbones/__pycache__/resnet.cpython-39.pyc -------------------------------------------------------------------------------- /DMNIL/hand_convnext/ConvNext/backbones/model_convnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/hand_convnext/ConvNext/backbones/model_convnext.py -------------------------------------------------------------------------------- /DMNIL/hand_convnext/ConvNext/backbones/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/hand_convnext/ConvNext/backbones/resnet.py -------------------------------------------------------------------------------- /DMNIL/hand_convnext/ConvNext/cluster_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/hand_convnext/ConvNext/cluster_model.py -------------------------------------------------------------------------------- /DMNIL/hand_convnext/ConvNext/make_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/hand_convnext/ConvNext/make_model.py -------------------------------------------------------------------------------- /DMNIL/hand_convnext/ConvNext/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/hand_convnext/ConvNext/test.py -------------------------------------------------------------------------------- /DMNIL/hand_convnext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DMNIL/hand_convnext/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/hand_convnext/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /DMNIL/hand_convnext/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/hand_convnext/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /DMNIL/hand_convnext/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/hand_convnext/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /DMNIL/hand_convnext/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/hand_convnext/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /DMNIL/hand_convnext/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/hand_convnext/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /DMNIL/hand_convnext/__pycache__/model.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/hand_convnext/__pycache__/model.cpython-311.pyc -------------------------------------------------------------------------------- /DMNIL/hand_convnext/__pycache__/model.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/hand_convnext/__pycache__/model.cpython-312.pyc -------------------------------------------------------------------------------- /DMNIL/hand_convnext/__pycache__/model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/hand_convnext/__pycache__/model.cpython-38.pyc -------------------------------------------------------------------------------- /DMNIL/hand_convnext/__pycache__/model.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/hand_convnext/__pycache__/model.cpython-39.pyc -------------------------------------------------------------------------------- /DMNIL/hand_convnext/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/hand_convnext/model.py -------------------------------------------------------------------------------- /DMNIL/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/model.py -------------------------------------------------------------------------------- /DMNIL/solver/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/solver/__init__.py -------------------------------------------------------------------------------- /DMNIL/solver/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/solver/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /DMNIL/solver/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/solver/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /DMNIL/solver/__pycache__/lr_scheduler.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/solver/__pycache__/lr_scheduler.cpython-311.pyc -------------------------------------------------------------------------------- /DMNIL/solver/__pycache__/lr_scheduler.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/solver/__pycache__/lr_scheduler.cpython-312.pyc -------------------------------------------------------------------------------- /DMNIL/solver/__pycache__/make_optimizer.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/solver/__pycache__/make_optimizer.cpython-311.pyc -------------------------------------------------------------------------------- /DMNIL/solver/__pycache__/make_optimizer.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/solver/__pycache__/make_optimizer.cpython-312.pyc -------------------------------------------------------------------------------- /DMNIL/solver/cosine_lr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/solver/cosine_lr.py -------------------------------------------------------------------------------- /DMNIL/solver/lr_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/solver/lr_scheduler.py -------------------------------------------------------------------------------- /DMNIL/solver/make_optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/solver/make_optimizer.py -------------------------------------------------------------------------------- /DMNIL/solver/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/solver/scheduler.py -------------------------------------------------------------------------------- /DMNIL/solver/scheduler_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/solver/scheduler_factory.py -------------------------------------------------------------------------------- /DMNIL/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/trainer.py -------------------------------------------------------------------------------- /DMNIL/trainers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/trainers.py -------------------------------------------------------------------------------- /DMNIL/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/transforms.py -------------------------------------------------------------------------------- /DMNIL/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/DMNIL/utils.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/README.md -------------------------------------------------------------------------------- /data_process/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data_process/process_DenseUAV.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/data_process/process_DenseUAV.py -------------------------------------------------------------------------------- /data_process/process_DenseUAV_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/data_process/process_DenseUAV_test.py -------------------------------------------------------------------------------- /data_process/process_SUES-200.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/data_process/process_SUES-200.py -------------------------------------------------------------------------------- /data_process/process_U1652.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/data_process/process_U1652.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/train.py -------------------------------------------------------------------------------- /train_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISChenawei/DMNIL/HEAD/train_log.txt --------------------------------------------------------------------------------