gitextract_p4h8yn0h/ ├── README.md ├── configs/ │ └── CondInst/ │ ├── Base-FCOS.yaml │ ├── MS_R_101_3x.yaml │ ├── MS_R_50_2x.yaml │ ├── MS_X_101_2x.yaml │ ├── R_50_1x.yaml │ └── vovnet/ │ ├── MS_V_39_3x.yaml │ ├── MS_V_57_3x.yaml │ ├── MS_V_99_3x.yaml │ └── README.md ├── demo/ │ ├── demo.py │ └── predictor.py ├── fcos/ │ ├── __init__.py │ ├── checkpoint/ │ │ ├── __init__.py │ │ └── adet_checkpoint.py │ ├── config/ │ │ ├── __init__.py │ │ ├── config.py │ │ └── defaults.py │ ├── data/ │ │ ├── __init__.py │ │ └── builtin.py │ ├── layers/ │ │ ├── __init__.py │ │ ├── conv_with_kaiming_uniform.py │ │ ├── csrc/ │ │ │ ├── cuda_version.cu │ │ │ ├── ml_nms/ │ │ │ │ ├── ml_nms.cu │ │ │ │ └── ml_nms.h │ │ │ └── vision.cpp │ │ ├── deform_conv.py │ │ ├── iou_loss.py │ │ └── ml_nms.py │ ├── modeling/ │ │ ├── __init__.py │ │ ├── backbone/ │ │ │ ├── __init__.py │ │ │ ├── fpn.py │ │ │ ├── mobilenet.py │ │ │ └── vovnet.py │ │ ├── fcos/ │ │ │ ├── __init__.py │ │ │ ├── fcos.py │ │ │ └── fcos_outputs.py │ │ ├── one_stage_detector.py │ │ └── poolers.py │ └── utils/ │ ├── comm.py │ └── measures.py ├── postprocessing.py ├── tools/ │ ├── compute_flops.py │ ├── convert_fcos_weight.py │ └── remove_optim_from_ckpt.py └── train_net.py