gitextract_fc4uicbd/ ├── .gitignore ├── LICENSE ├── README.md ├── README_zh-CN.md ├── backbone.py ├── data/ │ ├── __init__.py │ ├── coco.py │ ├── config.py │ ├── grid.npy │ └── scripts/ │ ├── COCO.sh │ ├── COCO_test.sh │ └── mix_sets.py ├── environment.yml ├── eval.py ├── external/ │ └── DCNv2/ │ ├── LICENSE │ ├── README.md │ ├── dcn_v2.py │ ├── setup.py │ ├── src/ │ │ ├── cpu/ │ │ │ ├── dcn_v2_cpu.cpp │ │ │ └── vision.h │ │ ├── cuda/ │ │ │ ├── dcn_v2_cuda.cu │ │ │ ├── dcn_v2_im2col_cuda.cu │ │ │ ├── dcn_v2_im2col_cuda.h │ │ │ ├── dcn_v2_psroi_pooling_cuda.cu │ │ │ └── vision.h │ │ ├── dcn_v2.h │ │ └── vision.cpp │ └── test.py ├── layers/ │ ├── __init__.py │ ├── box_utils.py │ ├── functions/ │ │ ├── __init__.py │ │ └── detection.py │ ├── interpolate.py │ ├── modules/ │ │ ├── __init__.py │ │ └── multibox_loss.py │ └── output_utils.py ├── run_coco_eval.py ├── scripts/ │ ├── augment_bbox.py │ ├── bbox_recall.py │ ├── cluster_bbox_sizes.py │ ├── compute_masks.py │ ├── convert_darknet.py │ ├── convert_sbd.py │ ├── eval.sh │ ├── make_grid.py │ ├── optimize_bboxes.py │ ├── parse_eval.py │ ├── plot_loss.py │ ├── resume.sh │ ├── save_bboxes.py │ ├── train.sh │ └── unpack_statedict.py ├── train.py ├── utils/ │ ├── __init__.py │ ├── augmentations.py │ ├── cython_nms.pyx │ ├── functions.py │ ├── logger.py │ ├── nvinfo.py │ └── timer.py ├── web/ │ ├── css/ │ │ ├── index.css │ │ ├── list.css │ │ ├── toggle.css │ │ └── viewer.css │ ├── dets/ │ │ ├── ssd300.json │ │ ├── ssd550.json │ │ ├── ssd550_resnet101.json │ │ ├── test.json │ │ ├── yolact_base.json │ │ ├── yolact_darknet53.json │ │ ├── yolact_im700.json │ │ ├── yolact_resnet101_conv4.json │ │ ├── yolact_resnet101_maskrcnn.json │ │ ├── yolact_resnet101_maskrcnn_1.json │ │ ├── yolact_resnet50.json │ │ ├── yrm12.json │ │ ├── yrm13.json │ │ ├── yrm16_2.json │ │ ├── yrm18.json │ │ ├── yrm19.json │ │ ├── yrm21.json │ │ ├── yrm25_b.json │ │ ├── yrm28_2_perfect.json │ │ ├── yrm35_crop.json │ │ └── yrm35_retina.json │ ├── index.html │ ├── iou.html │ ├── scripts/ │ │ ├── index.js │ │ ├── iou.js │ │ ├── jquery.js │ │ ├── js.cookie.js │ │ ├── utils.js │ │ └── viewer.js │ ├── server.py │ └── viewer.html └── yolact.py