├── .gitignore.txt ├── .idea.name ├── .idea ├── .gitignore.txt ├── Fewshot_YOLOv3-master.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── workspace.xml ├── README.md ├── cfg.py ├── cfg ├── darknet_yolov3_spp.cfg ├── fewtunev3_dior_10shot.data ├── fewtunev3_dior_30shot.data ├── fewtunev3_dior_3shot.data ├── fewtunev3_dior_5shot.data ├── fewtunev3_nwpu_10shot.data ├── fewtunev3_nwpu_3shot.data ├── fewtunev3_nwpu_5shot.data ├── fewyolov3_dior.data ├── fewyolov3_nwpu.data └── reweighting_net.cfg ├── darknet.py ├── data ├── dior_novels.txt └── nwpu_novels.txt ├── dataset.py ├── dynamic_conv.py ├── image.py ├── layers └── batchnorm │ ├── Makefile │ ├── bn.py │ ├── bn_lib │ └── __init__.py │ ├── build.py │ └── src │ ├── batchnorm.c │ ├── batchnorm.h │ ├── blas.c │ ├── blas.h │ ├── blas_kernels.cu │ ├── cuda.c │ └── cuda.h ├── pooling.py ├── region_loss.py ├── scripts ├── ImgSplit_dior.py ├── ImgSplit_dota.py ├── ImgSplit_nwpu.py ├── Splitbase.py ├── __init__.py ├── code_test.py ├── convert_fewlist.py ├── data_utils.py ├── find_best.py ├── gen_data_nwpu.py ├── gen_dict_file.py ├── gen_few_data.py ├── gen_fewlist_dior.py ├── gen_fewlist_nwpu.py ├── gen_result_image.py ├── gen_reweight_coef.py ├── gen_traindict.py ├── label_1c_dior.py ├── label_1c_nwpu.py ├── label_dior.py ├── label_nwpu.py ├── mk_anchor_pic.py ├── mk_fewshot_fig.py ├── random_sample.py ├── t_sne.py ├── voc_eval.py └── voc_eval_all.py ├── train.py ├── utils.py └── valid.py /.gitignore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/.gitignore.txt -------------------------------------------------------------------------------- /.idea.name: -------------------------------------------------------------------------------- 1 | Fewshot_YOLOv3-master -------------------------------------------------------------------------------- /.idea/.gitignore.txt: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/Fewshot_YOLOv3-master.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/.idea/Fewshot_YOLOv3-master.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/README.md -------------------------------------------------------------------------------- /cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/cfg.py -------------------------------------------------------------------------------- /cfg/darknet_yolov3_spp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/cfg/darknet_yolov3_spp.cfg -------------------------------------------------------------------------------- /cfg/fewtunev3_dior_10shot.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/cfg/fewtunev3_dior_10shot.data -------------------------------------------------------------------------------- /cfg/fewtunev3_dior_30shot.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/cfg/fewtunev3_dior_30shot.data -------------------------------------------------------------------------------- /cfg/fewtunev3_dior_3shot.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/cfg/fewtunev3_dior_3shot.data -------------------------------------------------------------------------------- /cfg/fewtunev3_dior_5shot.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/cfg/fewtunev3_dior_5shot.data -------------------------------------------------------------------------------- /cfg/fewtunev3_nwpu_10shot.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/cfg/fewtunev3_nwpu_10shot.data -------------------------------------------------------------------------------- /cfg/fewtunev3_nwpu_3shot.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/cfg/fewtunev3_nwpu_3shot.data -------------------------------------------------------------------------------- /cfg/fewtunev3_nwpu_5shot.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/cfg/fewtunev3_nwpu_5shot.data -------------------------------------------------------------------------------- /cfg/fewyolov3_dior.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/cfg/fewyolov3_dior.data -------------------------------------------------------------------------------- /cfg/fewyolov3_nwpu.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/cfg/fewyolov3_nwpu.data -------------------------------------------------------------------------------- /cfg/reweighting_net.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/cfg/reweighting_net.cfg -------------------------------------------------------------------------------- /darknet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/darknet.py -------------------------------------------------------------------------------- /data/dior_novels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/data/dior_novels.txt -------------------------------------------------------------------------------- /data/nwpu_novels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/data/nwpu_novels.txt -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/dataset.py -------------------------------------------------------------------------------- /dynamic_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/dynamic_conv.py -------------------------------------------------------------------------------- /image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/image.py -------------------------------------------------------------------------------- /layers/batchnorm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/layers/batchnorm/Makefile -------------------------------------------------------------------------------- /layers/batchnorm/bn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/layers/batchnorm/bn.py -------------------------------------------------------------------------------- /layers/batchnorm/bn_lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/layers/batchnorm/bn_lib/__init__.py -------------------------------------------------------------------------------- /layers/batchnorm/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/layers/batchnorm/build.py -------------------------------------------------------------------------------- /layers/batchnorm/src/batchnorm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/layers/batchnorm/src/batchnorm.c -------------------------------------------------------------------------------- /layers/batchnorm/src/batchnorm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/layers/batchnorm/src/batchnorm.h -------------------------------------------------------------------------------- /layers/batchnorm/src/blas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/layers/batchnorm/src/blas.c -------------------------------------------------------------------------------- /layers/batchnorm/src/blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/layers/batchnorm/src/blas.h -------------------------------------------------------------------------------- /layers/batchnorm/src/blas_kernels.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/layers/batchnorm/src/blas_kernels.cu -------------------------------------------------------------------------------- /layers/batchnorm/src/cuda.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/layers/batchnorm/src/cuda.c -------------------------------------------------------------------------------- /layers/batchnorm/src/cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/layers/batchnorm/src/cuda.h -------------------------------------------------------------------------------- /pooling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/pooling.py -------------------------------------------------------------------------------- /region_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/region_loss.py -------------------------------------------------------------------------------- /scripts/ImgSplit_dior.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/scripts/ImgSplit_dior.py -------------------------------------------------------------------------------- /scripts/ImgSplit_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/scripts/ImgSplit_dota.py -------------------------------------------------------------------------------- /scripts/ImgSplit_nwpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/scripts/ImgSplit_nwpu.py -------------------------------------------------------------------------------- /scripts/Splitbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/scripts/Splitbase.py -------------------------------------------------------------------------------- /scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/code_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/scripts/code_test.py -------------------------------------------------------------------------------- /scripts/convert_fewlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/scripts/convert_fewlist.py -------------------------------------------------------------------------------- /scripts/data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/scripts/data_utils.py -------------------------------------------------------------------------------- /scripts/find_best.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/scripts/find_best.py -------------------------------------------------------------------------------- /scripts/gen_data_nwpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/scripts/gen_data_nwpu.py -------------------------------------------------------------------------------- /scripts/gen_dict_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/scripts/gen_dict_file.py -------------------------------------------------------------------------------- /scripts/gen_few_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/scripts/gen_few_data.py -------------------------------------------------------------------------------- /scripts/gen_fewlist_dior.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/scripts/gen_fewlist_dior.py -------------------------------------------------------------------------------- /scripts/gen_fewlist_nwpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/scripts/gen_fewlist_nwpu.py -------------------------------------------------------------------------------- /scripts/gen_result_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/scripts/gen_result_image.py -------------------------------------------------------------------------------- /scripts/gen_reweight_coef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/scripts/gen_reweight_coef.py -------------------------------------------------------------------------------- /scripts/gen_traindict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/scripts/gen_traindict.py -------------------------------------------------------------------------------- /scripts/label_1c_dior.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/scripts/label_1c_dior.py -------------------------------------------------------------------------------- /scripts/label_1c_nwpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/scripts/label_1c_nwpu.py -------------------------------------------------------------------------------- /scripts/label_dior.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/scripts/label_dior.py -------------------------------------------------------------------------------- /scripts/label_nwpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/scripts/label_nwpu.py -------------------------------------------------------------------------------- /scripts/mk_anchor_pic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/scripts/mk_anchor_pic.py -------------------------------------------------------------------------------- /scripts/mk_fewshot_fig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/scripts/mk_fewshot_fig.py -------------------------------------------------------------------------------- /scripts/random_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/scripts/random_sample.py -------------------------------------------------------------------------------- /scripts/t_sne.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/scripts/t_sne.py -------------------------------------------------------------------------------- /scripts/voc_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/scripts/voc_eval.py -------------------------------------------------------------------------------- /scripts/voc_eval_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/scripts/voc_eval_all.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/utils.py -------------------------------------------------------------------------------- /valid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lx709/FSODM/HEAD/valid.py --------------------------------------------------------------------------------