├── README.md ├── clsa ├── builder.py ├── clsa_augs.py └── loader.py ├── detection ├── README.md ├── configs │ ├── Base-RCNN-C4-BN.yaml │ ├── coco_R_50_C4_2x.yaml │ ├── coco_R_50_C4_2x_moco.yaml │ ├── pascal_voc_R_50_C4_24k.yaml │ └── pascal_voc_R_50_C4_24k_moco.yaml ├── convert-pretrain-to-detectron2.py └── train_net.py ├── main_clsa.py ├── main_lincls.py └── moco ├── __init__.py ├── builder.py └── loader.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a1600012888/clsa_pytorch/HEAD/README.md -------------------------------------------------------------------------------- /clsa/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a1600012888/clsa_pytorch/HEAD/clsa/builder.py -------------------------------------------------------------------------------- /clsa/clsa_augs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a1600012888/clsa_pytorch/HEAD/clsa/clsa_augs.py -------------------------------------------------------------------------------- /clsa/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a1600012888/clsa_pytorch/HEAD/clsa/loader.py -------------------------------------------------------------------------------- /detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a1600012888/clsa_pytorch/HEAD/detection/README.md -------------------------------------------------------------------------------- /detection/configs/Base-RCNN-C4-BN.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a1600012888/clsa_pytorch/HEAD/detection/configs/Base-RCNN-C4-BN.yaml -------------------------------------------------------------------------------- /detection/configs/coco_R_50_C4_2x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a1600012888/clsa_pytorch/HEAD/detection/configs/coco_R_50_C4_2x.yaml -------------------------------------------------------------------------------- /detection/configs/coco_R_50_C4_2x_moco.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a1600012888/clsa_pytorch/HEAD/detection/configs/coco_R_50_C4_2x_moco.yaml -------------------------------------------------------------------------------- /detection/configs/pascal_voc_R_50_C4_24k.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a1600012888/clsa_pytorch/HEAD/detection/configs/pascal_voc_R_50_C4_24k.yaml -------------------------------------------------------------------------------- /detection/configs/pascal_voc_R_50_C4_24k_moco.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a1600012888/clsa_pytorch/HEAD/detection/configs/pascal_voc_R_50_C4_24k_moco.yaml -------------------------------------------------------------------------------- /detection/convert-pretrain-to-detectron2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a1600012888/clsa_pytorch/HEAD/detection/convert-pretrain-to-detectron2.py -------------------------------------------------------------------------------- /detection/train_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a1600012888/clsa_pytorch/HEAD/detection/train_net.py -------------------------------------------------------------------------------- /main_clsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a1600012888/clsa_pytorch/HEAD/main_clsa.py -------------------------------------------------------------------------------- /main_lincls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a1600012888/clsa_pytorch/HEAD/main_lincls.py -------------------------------------------------------------------------------- /moco/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved 2 | -------------------------------------------------------------------------------- /moco/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a1600012888/clsa_pytorch/HEAD/moco/builder.py -------------------------------------------------------------------------------- /moco/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a1600012888/clsa_pytorch/HEAD/moco/loader.py --------------------------------------------------------------------------------