├── .vscode └── settings.json ├── README.md ├── configs ├── FCOS-Detection │ ├── Base-ATSS.yaml │ ├── Base-FCOS.yaml │ ├── FCOS_RT │ │ ├── MS_DLA_34_4x_syncbn.yaml │ │ ├── MS_DLA_34_4x_syncbn_bn_head.yaml │ │ ├── MS_DLA_34_4x_syncbn_shared_towers.yaml │ │ ├── MS_DLA_34_4x_syncbn_shared_towers_bn_head.yaml │ │ ├── MS_R_50_4x_syncbn.yaml │ │ └── MS_R_50_4x_syncbn_bn_head.yaml │ ├── MS_R_101_2x.yaml │ ├── MS_R_50_2x.yaml │ ├── MS_X_101_32x8d_2x.yaml │ ├── MS_X_101_32x8d_2x_dcnv2.yaml │ ├── MS_X_101_64x4d_2x.yaml │ ├── MS_X_101_64x4d_2x_dcnv2.yaml │ ├── README.md │ ├── RS_50_1x.yaml │ ├── R_50_1x.yaml │ ├── atss_r_50.yaml │ └── vovnet │ │ ├── MS_V_39_3x.yaml │ │ ├── MS_V_57_3x.yaml │ │ ├── MS_V_99_3x.yaml │ │ └── README.md └── RCNN │ ├── 550_R_50_FPN_3x.yaml │ ├── Base-RCNN-FPN.yaml │ ├── Base-RCNN.yaml │ ├── LVIS │ └── R_50_1x.yaml │ ├── R_101_3x.yaml │ ├── faster_rcnn_RS_50_FPN_1x.yaml │ ├── faster_rcnn_R_50_FPN_1x.yaml │ ├── faster_rcnn_R_50_FPN_1x_tta.yaml │ └── libra_rcnn │ └── r_50_1x.yaml ├── det ├── _C.cpython-36m-x86_64-linux-gnu.so ├── __init__.py ├── __pycache__ │ └── __init__.cpython-36.pyc ├── checkpoint │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ └── det_checkpoint.cpython-36.pyc │ └── det_checkpoint.py ├── config │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── config.cpython-36.pyc │ │ └── defaults.cpython-36.pyc │ ├── config.py │ └── defaults.py ├── data │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── builtin.cpython-36.pyc │ │ ├── dataset_mapper.cpython-36.pyc │ │ └── detection_utils.cpython-36.pyc │ ├── builtin.py │ ├── dataset_mapper.py │ ├── datasets │ │ ├── __pycache__ │ │ │ └── text.cpython-36.pyc │ │ ├── augment_lists.py │ │ ├── fast_augment.py │ │ └── text.py │ └── detection_utils.py ├── layers │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── balanced_l1_loss.cpython-36.pyc │ │ ├── bezier_align.cpython-36.pyc │ │ ├── conv_with_kaiming_uniform.cpython-36.pyc │ │ ├── def_roi_align.cpython-36.pyc │ │ ├── deform_conv.cpython-36.pyc │ │ ├── gcn.cpython-36.pyc │ │ ├── iou_loss.cpython-36.pyc │ │ ├── ml_nms.cpython-36.pyc │ │ ├── naive_group_norm.cpython-36.pyc │ │ └── soft_nms.cpython-36.pyc │ ├── balanced_l1_loss.py │ ├── bezier_align.py │ ├── conv_with_kaiming_uniform.py │ ├── csrc │ │ ├── BezierAlign │ │ │ ├── BezierAlign.h │ │ │ ├── BezierAlign_cpu.cpp │ │ │ └── BezierAlign_cuda.cu │ │ ├── DefROIAlign │ │ │ ├── DefROIAlign.h │ │ │ └── DefROIAlign_cuda.cu │ │ ├── cuda_version.cu │ │ ├── ml_nms │ │ │ ├── ml_nms.cu │ │ │ └── ml_nms.h │ │ └── vision.cpp │ ├── def_roi_align.py │ ├── deform_conv.py │ ├── gcn.py │ ├── iou_loss.py │ ├── ml_nms.py │ ├── naive_group_norm.py │ └── soft_nms.py ├── modeling │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── one_stage_detector.cpython-36.pyc │ │ └── rpn_utils.cpython-36.pyc │ ├── atss │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── atss.cpython-36.pyc │ │ │ └── atss_outputs.cpython-36.pyc │ │ ├── atss.py │ │ └── atss_outputs.py │ ├── backbone │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── dla.cpython-36.pyc │ │ │ ├── fpn.cpython-36.pyc │ │ │ ├── lpf.cpython-36.pyc │ │ │ ├── mobilenet.cpython-36.pyc │ │ │ ├── resnet.cpython-36.pyc │ │ │ ├── resnet_interval.cpython-36.pyc │ │ │ ├── resnet_lpf.cpython-36.pyc │ │ │ ├── splat.cpython-36.pyc │ │ │ └── vovnet.cpython-36.pyc │ │ ├── dla.py │ │ ├── fpn.py │ │ ├── lpf.py │ │ ├── mobilenet.py │ │ ├── resnet.py │ │ ├── resnet_interval.py │ │ ├── resnet_lpf.py │ │ ├── splat.py │ │ └── vovnet.py │ ├── fcos │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── fcos.cpython-36.pyc │ │ │ └── fcos_outputs.cpython-36.pyc │ │ ├── fcos.py │ │ └── fcos_outputs.py │ ├── guided_anchoring │ │ ├── ga_outputs.py │ │ └── guided_anchor_head.py │ ├── one_stage_detector.py │ ├── poolers.py │ ├── roi_heads │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ └── libra_rcnn.cpython-36.pyc │ │ └── libra_rcnn.py │ ├── rpn_utils.py │ └── tsd │ │ └── tsd.py └── utils │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-36.pyc │ └── comm.cpython-36.pyc │ ├── comm.py │ ├── measures.py │ └── visualizer.py ├── docs └── nms │ ├── README.md │ ├── __init__.py │ ├── demo_nms.cpp │ ├── demo_nms.py │ ├── nms.cpp │ ├── nms.py │ ├── nms_wrapper.py │ └── src │ ├── nms_cpu.cpp │ ├── nms_cuda.cpp │ ├── nms_kernel.cu │ ├── soft_nms_cpu.cpp │ └── soft_nms_cpu.pyx ├── setup.py └── tools ├── compute_flops.py ├── train_net.py └── visualize_data.py /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/README.md -------------------------------------------------------------------------------- /configs/FCOS-Detection/Base-ATSS.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/configs/FCOS-Detection/Base-ATSS.yaml -------------------------------------------------------------------------------- /configs/FCOS-Detection/Base-FCOS.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/configs/FCOS-Detection/Base-FCOS.yaml -------------------------------------------------------------------------------- /configs/FCOS-Detection/FCOS_RT/MS_DLA_34_4x_syncbn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/configs/FCOS-Detection/FCOS_RT/MS_DLA_34_4x_syncbn.yaml -------------------------------------------------------------------------------- /configs/FCOS-Detection/FCOS_RT/MS_DLA_34_4x_syncbn_bn_head.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/configs/FCOS-Detection/FCOS_RT/MS_DLA_34_4x_syncbn_bn_head.yaml -------------------------------------------------------------------------------- /configs/FCOS-Detection/FCOS_RT/MS_DLA_34_4x_syncbn_shared_towers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/configs/FCOS-Detection/FCOS_RT/MS_DLA_34_4x_syncbn_shared_towers.yaml -------------------------------------------------------------------------------- /configs/FCOS-Detection/FCOS_RT/MS_DLA_34_4x_syncbn_shared_towers_bn_head.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/configs/FCOS-Detection/FCOS_RT/MS_DLA_34_4x_syncbn_shared_towers_bn_head.yaml -------------------------------------------------------------------------------- /configs/FCOS-Detection/FCOS_RT/MS_R_50_4x_syncbn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/configs/FCOS-Detection/FCOS_RT/MS_R_50_4x_syncbn.yaml -------------------------------------------------------------------------------- /configs/FCOS-Detection/FCOS_RT/MS_R_50_4x_syncbn_bn_head.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/configs/FCOS-Detection/FCOS_RT/MS_R_50_4x_syncbn_bn_head.yaml -------------------------------------------------------------------------------- /configs/FCOS-Detection/MS_R_101_2x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/configs/FCOS-Detection/MS_R_101_2x.yaml -------------------------------------------------------------------------------- /configs/FCOS-Detection/MS_R_50_2x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/configs/FCOS-Detection/MS_R_50_2x.yaml -------------------------------------------------------------------------------- /configs/FCOS-Detection/MS_X_101_32x8d_2x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/configs/FCOS-Detection/MS_X_101_32x8d_2x.yaml -------------------------------------------------------------------------------- /configs/FCOS-Detection/MS_X_101_32x8d_2x_dcnv2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/configs/FCOS-Detection/MS_X_101_32x8d_2x_dcnv2.yaml -------------------------------------------------------------------------------- /configs/FCOS-Detection/MS_X_101_64x4d_2x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/configs/FCOS-Detection/MS_X_101_64x4d_2x.yaml -------------------------------------------------------------------------------- /configs/FCOS-Detection/MS_X_101_64x4d_2x_dcnv2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/configs/FCOS-Detection/MS_X_101_64x4d_2x_dcnv2.yaml -------------------------------------------------------------------------------- /configs/FCOS-Detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/configs/FCOS-Detection/README.md -------------------------------------------------------------------------------- /configs/FCOS-Detection/RS_50_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/configs/FCOS-Detection/RS_50_1x.yaml -------------------------------------------------------------------------------- /configs/FCOS-Detection/R_50_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/configs/FCOS-Detection/R_50_1x.yaml -------------------------------------------------------------------------------- /configs/FCOS-Detection/atss_r_50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/configs/FCOS-Detection/atss_r_50.yaml -------------------------------------------------------------------------------- /configs/FCOS-Detection/vovnet/MS_V_39_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/configs/FCOS-Detection/vovnet/MS_V_39_3x.yaml -------------------------------------------------------------------------------- /configs/FCOS-Detection/vovnet/MS_V_57_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/configs/FCOS-Detection/vovnet/MS_V_57_3x.yaml -------------------------------------------------------------------------------- /configs/FCOS-Detection/vovnet/MS_V_99_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/configs/FCOS-Detection/vovnet/MS_V_99_3x.yaml -------------------------------------------------------------------------------- /configs/FCOS-Detection/vovnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/configs/FCOS-Detection/vovnet/README.md -------------------------------------------------------------------------------- /configs/RCNN/550_R_50_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/configs/RCNN/550_R_50_FPN_3x.yaml -------------------------------------------------------------------------------- /configs/RCNN/Base-RCNN-FPN.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/configs/RCNN/Base-RCNN-FPN.yaml -------------------------------------------------------------------------------- /configs/RCNN/Base-RCNN.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/configs/RCNN/Base-RCNN.yaml -------------------------------------------------------------------------------- /configs/RCNN/LVIS/R_50_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/configs/RCNN/LVIS/R_50_1x.yaml -------------------------------------------------------------------------------- /configs/RCNN/R_101_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/configs/RCNN/R_101_3x.yaml -------------------------------------------------------------------------------- /configs/RCNN/faster_rcnn_RS_50_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/configs/RCNN/faster_rcnn_RS_50_FPN_1x.yaml -------------------------------------------------------------------------------- /configs/RCNN/faster_rcnn_R_50_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/configs/RCNN/faster_rcnn_R_50_FPN_1x.yaml -------------------------------------------------------------------------------- /configs/RCNN/faster_rcnn_R_50_FPN_1x_tta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/configs/RCNN/faster_rcnn_R_50_FPN_1x_tta.yaml -------------------------------------------------------------------------------- /configs/RCNN/libra_rcnn/r_50_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/configs/RCNN/libra_rcnn/r_50_1x.yaml -------------------------------------------------------------------------------- /det/_C.cpython-36m-x86_64-linux-gnu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/_C.cpython-36m-x86_64-linux-gnu.so -------------------------------------------------------------------------------- /det/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | from det import modeling 3 | 4 | __version__ = "0.1.1" -------------------------------------------------------------------------------- /det/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /det/checkpoint/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/checkpoint/__init__.py -------------------------------------------------------------------------------- /det/checkpoint/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/checkpoint/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /det/checkpoint/__pycache__/det_checkpoint.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/checkpoint/__pycache__/det_checkpoint.cpython-36.pyc -------------------------------------------------------------------------------- /det/checkpoint/det_checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/checkpoint/det_checkpoint.py -------------------------------------------------------------------------------- /det/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/config/__init__.py -------------------------------------------------------------------------------- /det/config/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/config/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /det/config/__pycache__/config.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/config/__pycache__/config.cpython-36.pyc -------------------------------------------------------------------------------- /det/config/__pycache__/defaults.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/config/__pycache__/defaults.cpython-36.pyc -------------------------------------------------------------------------------- /det/config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/config/config.py -------------------------------------------------------------------------------- /det/config/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/config/defaults.py -------------------------------------------------------------------------------- /det/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/data/__init__.py -------------------------------------------------------------------------------- /det/data/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/data/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /det/data/__pycache__/builtin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/data/__pycache__/builtin.cpython-36.pyc -------------------------------------------------------------------------------- /det/data/__pycache__/dataset_mapper.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/data/__pycache__/dataset_mapper.cpython-36.pyc -------------------------------------------------------------------------------- /det/data/__pycache__/detection_utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/data/__pycache__/detection_utils.cpython-36.pyc -------------------------------------------------------------------------------- /det/data/builtin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/data/builtin.py -------------------------------------------------------------------------------- /det/data/dataset_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/data/dataset_mapper.py -------------------------------------------------------------------------------- /det/data/datasets/__pycache__/text.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/data/datasets/__pycache__/text.cpython-36.pyc -------------------------------------------------------------------------------- /det/data/datasets/augment_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/data/datasets/augment_lists.py -------------------------------------------------------------------------------- /det/data/datasets/fast_augment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/data/datasets/fast_augment.py -------------------------------------------------------------------------------- /det/data/datasets/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/data/datasets/text.py -------------------------------------------------------------------------------- /det/data/detection_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/data/detection_utils.py -------------------------------------------------------------------------------- /det/layers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/layers/__init__.py -------------------------------------------------------------------------------- /det/layers/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/layers/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /det/layers/__pycache__/balanced_l1_loss.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/layers/__pycache__/balanced_l1_loss.cpython-36.pyc -------------------------------------------------------------------------------- /det/layers/__pycache__/bezier_align.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/layers/__pycache__/bezier_align.cpython-36.pyc -------------------------------------------------------------------------------- /det/layers/__pycache__/conv_with_kaiming_uniform.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/layers/__pycache__/conv_with_kaiming_uniform.cpython-36.pyc -------------------------------------------------------------------------------- /det/layers/__pycache__/def_roi_align.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/layers/__pycache__/def_roi_align.cpython-36.pyc -------------------------------------------------------------------------------- /det/layers/__pycache__/deform_conv.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/layers/__pycache__/deform_conv.cpython-36.pyc -------------------------------------------------------------------------------- /det/layers/__pycache__/gcn.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/layers/__pycache__/gcn.cpython-36.pyc -------------------------------------------------------------------------------- /det/layers/__pycache__/iou_loss.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/layers/__pycache__/iou_loss.cpython-36.pyc -------------------------------------------------------------------------------- /det/layers/__pycache__/ml_nms.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/layers/__pycache__/ml_nms.cpython-36.pyc -------------------------------------------------------------------------------- /det/layers/__pycache__/naive_group_norm.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/layers/__pycache__/naive_group_norm.cpython-36.pyc -------------------------------------------------------------------------------- /det/layers/__pycache__/soft_nms.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/layers/__pycache__/soft_nms.cpython-36.pyc -------------------------------------------------------------------------------- /det/layers/balanced_l1_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/layers/balanced_l1_loss.py -------------------------------------------------------------------------------- /det/layers/bezier_align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/layers/bezier_align.py -------------------------------------------------------------------------------- /det/layers/conv_with_kaiming_uniform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/layers/conv_with_kaiming_uniform.py -------------------------------------------------------------------------------- /det/layers/csrc/BezierAlign/BezierAlign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/layers/csrc/BezierAlign/BezierAlign.h -------------------------------------------------------------------------------- /det/layers/csrc/BezierAlign/BezierAlign_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/layers/csrc/BezierAlign/BezierAlign_cpu.cpp -------------------------------------------------------------------------------- /det/layers/csrc/BezierAlign/BezierAlign_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/layers/csrc/BezierAlign/BezierAlign_cuda.cu -------------------------------------------------------------------------------- /det/layers/csrc/DefROIAlign/DefROIAlign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/layers/csrc/DefROIAlign/DefROIAlign.h -------------------------------------------------------------------------------- /det/layers/csrc/DefROIAlign/DefROIAlign_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/layers/csrc/DefROIAlign/DefROIAlign_cuda.cu -------------------------------------------------------------------------------- /det/layers/csrc/cuda_version.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/layers/csrc/cuda_version.cu -------------------------------------------------------------------------------- /det/layers/csrc/ml_nms/ml_nms.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/layers/csrc/ml_nms/ml_nms.cu -------------------------------------------------------------------------------- /det/layers/csrc/ml_nms/ml_nms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/layers/csrc/ml_nms/ml_nms.h -------------------------------------------------------------------------------- /det/layers/csrc/vision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/layers/csrc/vision.cpp -------------------------------------------------------------------------------- /det/layers/def_roi_align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/layers/def_roi_align.py -------------------------------------------------------------------------------- /det/layers/deform_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/layers/deform_conv.py -------------------------------------------------------------------------------- /det/layers/gcn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/layers/gcn.py -------------------------------------------------------------------------------- /det/layers/iou_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/layers/iou_loss.py -------------------------------------------------------------------------------- /det/layers/ml_nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/layers/ml_nms.py -------------------------------------------------------------------------------- /det/layers/naive_group_norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/layers/naive_group_norm.py -------------------------------------------------------------------------------- /det/layers/soft_nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/layers/soft_nms.py -------------------------------------------------------------------------------- /det/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/modeling/__init__.py -------------------------------------------------------------------------------- /det/modeling/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/modeling/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /det/modeling/__pycache__/one_stage_detector.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/modeling/__pycache__/one_stage_detector.cpython-36.pyc -------------------------------------------------------------------------------- /det/modeling/__pycache__/rpn_utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/modeling/__pycache__/rpn_utils.cpython-36.pyc -------------------------------------------------------------------------------- /det/modeling/atss/__init__.py: -------------------------------------------------------------------------------- 1 | from .atss import ATSS -------------------------------------------------------------------------------- /det/modeling/atss/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/modeling/atss/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /det/modeling/atss/__pycache__/atss.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/modeling/atss/__pycache__/atss.cpython-36.pyc -------------------------------------------------------------------------------- /det/modeling/atss/__pycache__/atss_outputs.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/modeling/atss/__pycache__/atss_outputs.cpython-36.pyc -------------------------------------------------------------------------------- /det/modeling/atss/atss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/modeling/atss/atss.py -------------------------------------------------------------------------------- /det/modeling/atss/atss_outputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/modeling/atss/atss_outputs.py -------------------------------------------------------------------------------- /det/modeling/backbone/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/modeling/backbone/__init__.py -------------------------------------------------------------------------------- /det/modeling/backbone/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/modeling/backbone/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /det/modeling/backbone/__pycache__/dla.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/modeling/backbone/__pycache__/dla.cpython-36.pyc -------------------------------------------------------------------------------- /det/modeling/backbone/__pycache__/fpn.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/modeling/backbone/__pycache__/fpn.cpython-36.pyc -------------------------------------------------------------------------------- /det/modeling/backbone/__pycache__/lpf.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/modeling/backbone/__pycache__/lpf.cpython-36.pyc -------------------------------------------------------------------------------- /det/modeling/backbone/__pycache__/mobilenet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/modeling/backbone/__pycache__/mobilenet.cpython-36.pyc -------------------------------------------------------------------------------- /det/modeling/backbone/__pycache__/resnet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/modeling/backbone/__pycache__/resnet.cpython-36.pyc -------------------------------------------------------------------------------- /det/modeling/backbone/__pycache__/resnet_interval.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/modeling/backbone/__pycache__/resnet_interval.cpython-36.pyc -------------------------------------------------------------------------------- /det/modeling/backbone/__pycache__/resnet_lpf.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/modeling/backbone/__pycache__/resnet_lpf.cpython-36.pyc -------------------------------------------------------------------------------- /det/modeling/backbone/__pycache__/splat.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/modeling/backbone/__pycache__/splat.cpython-36.pyc -------------------------------------------------------------------------------- /det/modeling/backbone/__pycache__/vovnet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/modeling/backbone/__pycache__/vovnet.cpython-36.pyc -------------------------------------------------------------------------------- /det/modeling/backbone/dla.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/modeling/backbone/dla.py -------------------------------------------------------------------------------- /det/modeling/backbone/fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/modeling/backbone/fpn.py -------------------------------------------------------------------------------- /det/modeling/backbone/lpf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/modeling/backbone/lpf.py -------------------------------------------------------------------------------- /det/modeling/backbone/mobilenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/modeling/backbone/mobilenet.py -------------------------------------------------------------------------------- /det/modeling/backbone/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/modeling/backbone/resnet.py -------------------------------------------------------------------------------- /det/modeling/backbone/resnet_interval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/modeling/backbone/resnet_interval.py -------------------------------------------------------------------------------- /det/modeling/backbone/resnet_lpf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/modeling/backbone/resnet_lpf.py -------------------------------------------------------------------------------- /det/modeling/backbone/splat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/modeling/backbone/splat.py -------------------------------------------------------------------------------- /det/modeling/backbone/vovnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/modeling/backbone/vovnet.py -------------------------------------------------------------------------------- /det/modeling/fcos/__init__.py: -------------------------------------------------------------------------------- 1 | from .fcos import FCOS 2 | -------------------------------------------------------------------------------- /det/modeling/fcos/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/modeling/fcos/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /det/modeling/fcos/__pycache__/fcos.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/modeling/fcos/__pycache__/fcos.cpython-36.pyc -------------------------------------------------------------------------------- /det/modeling/fcos/__pycache__/fcos_outputs.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/modeling/fcos/__pycache__/fcos_outputs.cpython-36.pyc -------------------------------------------------------------------------------- /det/modeling/fcos/fcos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/modeling/fcos/fcos.py -------------------------------------------------------------------------------- /det/modeling/fcos/fcos_outputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/modeling/fcos/fcos_outputs.py -------------------------------------------------------------------------------- /det/modeling/guided_anchoring/ga_outputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/modeling/guided_anchoring/ga_outputs.py -------------------------------------------------------------------------------- /det/modeling/guided_anchoring/guided_anchor_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/modeling/guided_anchoring/guided_anchor_head.py -------------------------------------------------------------------------------- /det/modeling/one_stage_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/modeling/one_stage_detector.py -------------------------------------------------------------------------------- /det/modeling/poolers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/modeling/poolers.py -------------------------------------------------------------------------------- /det/modeling/roi_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/modeling/roi_heads/__init__.py -------------------------------------------------------------------------------- /det/modeling/roi_heads/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/modeling/roi_heads/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /det/modeling/roi_heads/__pycache__/libra_rcnn.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/modeling/roi_heads/__pycache__/libra_rcnn.cpython-36.pyc -------------------------------------------------------------------------------- /det/modeling/roi_heads/libra_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/modeling/roi_heads/libra_rcnn.py -------------------------------------------------------------------------------- /det/modeling/rpn_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/modeling/rpn_utils.py -------------------------------------------------------------------------------- /det/modeling/tsd/tsd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/modeling/tsd/tsd.py -------------------------------------------------------------------------------- /det/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /det/utils/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/utils/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /det/utils/__pycache__/comm.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/utils/__pycache__/comm.cpython-36.pyc -------------------------------------------------------------------------------- /det/utils/comm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/utils/comm.py -------------------------------------------------------------------------------- /det/utils/measures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/utils/measures.py -------------------------------------------------------------------------------- /det/utils/visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/det/utils/visualizer.py -------------------------------------------------------------------------------- /docs/nms/README.md: -------------------------------------------------------------------------------- 1 | #NMS解析 2 | 3 | https://zhuanlan.zhihu.com/p/80902998 -------------------------------------------------------------------------------- /docs/nms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/docs/nms/__init__.py -------------------------------------------------------------------------------- /docs/nms/demo_nms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/docs/nms/demo_nms.cpp -------------------------------------------------------------------------------- /docs/nms/demo_nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/docs/nms/demo_nms.py -------------------------------------------------------------------------------- /docs/nms/nms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/docs/nms/nms.cpp -------------------------------------------------------------------------------- /docs/nms/nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/docs/nms/nms.py -------------------------------------------------------------------------------- /docs/nms/nms_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/docs/nms/nms_wrapper.py -------------------------------------------------------------------------------- /docs/nms/src/nms_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/docs/nms/src/nms_cpu.cpp -------------------------------------------------------------------------------- /docs/nms/src/nms_cuda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/docs/nms/src/nms_cuda.cpp -------------------------------------------------------------------------------- /docs/nms/src/nms_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/docs/nms/src/nms_kernel.cu -------------------------------------------------------------------------------- /docs/nms/src/soft_nms_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/docs/nms/src/soft_nms_cpu.cpp -------------------------------------------------------------------------------- /docs/nms/src/soft_nms_cpu.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/docs/nms/src/soft_nms_cpu.pyx -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/setup.py -------------------------------------------------------------------------------- /tools/compute_flops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/tools/compute_flops.py -------------------------------------------------------------------------------- /tools/train_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/tools/train_net.py -------------------------------------------------------------------------------- /tools/visualize_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TengFeiHan0/Object-Detection.pytorch/HEAD/tools/visualize_data.py --------------------------------------------------------------------------------