├── README.md ├── __init__.py ├── configs ├── CC.py ├── Pelee_COCO.py ├── Pelee_VOC.py ├── __init__.py └── __pycache__ │ ├── CC.cpython-37.pyc │ ├── Pelee_VOC.cpython-37.pyc │ └── __init__.cpython-37.pyc ├── data ├── __init__.py ├── data_augment.py ├── voc0712.py └── voc_eval.py ├── detector.py ├── layers ├── __init__.py ├── __pycache__ │ └── __init__.cpython-37.pyc ├── functions │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── detection.cpython-37.pyc │ │ └── prior_box.cpython-37.pyc │ ├── detection.py │ └── prior_box.py └── modules │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-37.pyc │ └── multibox_loss.cpython-37.pyc │ └── multibox_loss.py ├── peleenet.py └── utils ├── __init__.py ├── __pycache__ ├── __init__.cpython-37.pyc ├── box_utils.cpython-37.pyc ├── core.cpython-37.pyc ├── nms_wrapper.cpython-37.pyc └── timer.cpython-37.pyc ├── box_utils.py ├── build.py ├── build └── temp.win-amd64-3.7 │ └── Release │ └── nms │ ├── cpu_nms.cp37-win_amd64.exp │ ├── cpu_nms.cp37-win_amd64.lib │ └── cpu_nms.obj ├── core.py ├── nms ├── __init__.py ├── __pycache__ │ └── __init__.cpython-37.pyc ├── cpu_nms.c ├── cpu_nms.cp37-win_amd64.pyd ├── cpu_nms.pyx ├── gpu_nms.cpp ├── gpu_nms.hpp ├── gpu_nms.pyx ├── nms_kernel.cu └── py_cpu_nms.py ├── nms_wrapper.py └── timer.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/Easy-Pelee-Detection/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /configs/CC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/Easy-Pelee-Detection/HEAD/configs/CC.py -------------------------------------------------------------------------------- /configs/Pelee_COCO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/Easy-Pelee-Detection/HEAD/configs/Pelee_COCO.py -------------------------------------------------------------------------------- /configs/Pelee_VOC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/Easy-Pelee-Detection/HEAD/configs/Pelee_VOC.py -------------------------------------------------------------------------------- /configs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /configs/__pycache__/CC.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/Easy-Pelee-Detection/HEAD/configs/__pycache__/CC.cpython-37.pyc -------------------------------------------------------------------------------- /configs/__pycache__/Pelee_VOC.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/Easy-Pelee-Detection/HEAD/configs/__pycache__/Pelee_VOC.cpython-37.pyc -------------------------------------------------------------------------------- /configs/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/Easy-Pelee-Detection/HEAD/configs/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/Easy-Pelee-Detection/HEAD/data/__init__.py -------------------------------------------------------------------------------- /data/data_augment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/Easy-Pelee-Detection/HEAD/data/data_augment.py -------------------------------------------------------------------------------- /data/voc0712.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/Easy-Pelee-Detection/HEAD/data/voc0712.py -------------------------------------------------------------------------------- /data/voc_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/Easy-Pelee-Detection/HEAD/data/voc_eval.py -------------------------------------------------------------------------------- /detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/Easy-Pelee-Detection/HEAD/detector.py -------------------------------------------------------------------------------- /layers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/Easy-Pelee-Detection/HEAD/layers/__init__.py -------------------------------------------------------------------------------- /layers/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/Easy-Pelee-Detection/HEAD/layers/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /layers/functions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/Easy-Pelee-Detection/HEAD/layers/functions/__init__.py -------------------------------------------------------------------------------- /layers/functions/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/Easy-Pelee-Detection/HEAD/layers/functions/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /layers/functions/__pycache__/detection.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/Easy-Pelee-Detection/HEAD/layers/functions/__pycache__/detection.cpython-37.pyc -------------------------------------------------------------------------------- /layers/functions/__pycache__/prior_box.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/Easy-Pelee-Detection/HEAD/layers/functions/__pycache__/prior_box.cpython-37.pyc -------------------------------------------------------------------------------- /layers/functions/detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/Easy-Pelee-Detection/HEAD/layers/functions/detection.py -------------------------------------------------------------------------------- /layers/functions/prior_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/Easy-Pelee-Detection/HEAD/layers/functions/prior_box.py -------------------------------------------------------------------------------- /layers/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/Easy-Pelee-Detection/HEAD/layers/modules/__init__.py -------------------------------------------------------------------------------- /layers/modules/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/Easy-Pelee-Detection/HEAD/layers/modules/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /layers/modules/__pycache__/multibox_loss.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/Easy-Pelee-Detection/HEAD/layers/modules/__pycache__/multibox_loss.cpython-37.pyc -------------------------------------------------------------------------------- /layers/modules/multibox_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/Easy-Pelee-Detection/HEAD/layers/modules/multibox_loss.py -------------------------------------------------------------------------------- /peleenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/Easy-Pelee-Detection/HEAD/peleenet.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/Easy-Pelee-Detection/HEAD/utils/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/box_utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/Easy-Pelee-Detection/HEAD/utils/__pycache__/box_utils.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/core.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/Easy-Pelee-Detection/HEAD/utils/__pycache__/core.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/nms_wrapper.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/Easy-Pelee-Detection/HEAD/utils/__pycache__/nms_wrapper.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/timer.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/Easy-Pelee-Detection/HEAD/utils/__pycache__/timer.cpython-37.pyc -------------------------------------------------------------------------------- /utils/box_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/Easy-Pelee-Detection/HEAD/utils/box_utils.py -------------------------------------------------------------------------------- /utils/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/Easy-Pelee-Detection/HEAD/utils/build.py -------------------------------------------------------------------------------- /utils/build/temp.win-amd64-3.7/Release/nms/cpu_nms.cp37-win_amd64.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/Easy-Pelee-Detection/HEAD/utils/build/temp.win-amd64-3.7/Release/nms/cpu_nms.cp37-win_amd64.exp -------------------------------------------------------------------------------- /utils/build/temp.win-amd64-3.7/Release/nms/cpu_nms.cp37-win_amd64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/Easy-Pelee-Detection/HEAD/utils/build/temp.win-amd64-3.7/Release/nms/cpu_nms.cp37-win_amd64.lib -------------------------------------------------------------------------------- /utils/build/temp.win-amd64-3.7/Release/nms/cpu_nms.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/Easy-Pelee-Detection/HEAD/utils/build/temp.win-amd64-3.7/Release/nms/cpu_nms.obj -------------------------------------------------------------------------------- /utils/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/Easy-Pelee-Detection/HEAD/utils/core.py -------------------------------------------------------------------------------- /utils/nms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/nms/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/Easy-Pelee-Detection/HEAD/utils/nms/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /utils/nms/cpu_nms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/Easy-Pelee-Detection/HEAD/utils/nms/cpu_nms.c -------------------------------------------------------------------------------- /utils/nms/cpu_nms.cp37-win_amd64.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/Easy-Pelee-Detection/HEAD/utils/nms/cpu_nms.cp37-win_amd64.pyd -------------------------------------------------------------------------------- /utils/nms/cpu_nms.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/Easy-Pelee-Detection/HEAD/utils/nms/cpu_nms.pyx -------------------------------------------------------------------------------- /utils/nms/gpu_nms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/Easy-Pelee-Detection/HEAD/utils/nms/gpu_nms.cpp -------------------------------------------------------------------------------- /utils/nms/gpu_nms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/Easy-Pelee-Detection/HEAD/utils/nms/gpu_nms.hpp -------------------------------------------------------------------------------- /utils/nms/gpu_nms.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/Easy-Pelee-Detection/HEAD/utils/nms/gpu_nms.pyx -------------------------------------------------------------------------------- /utils/nms/nms_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/Easy-Pelee-Detection/HEAD/utils/nms/nms_kernel.cu -------------------------------------------------------------------------------- /utils/nms/py_cpu_nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/Easy-Pelee-Detection/HEAD/utils/nms/py_cpu_nms.py -------------------------------------------------------------------------------- /utils/nms_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/Easy-Pelee-Detection/HEAD/utils/nms_wrapper.py -------------------------------------------------------------------------------- /utils/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharpiless/Easy-Pelee-Detection/HEAD/utils/timer.py --------------------------------------------------------------------------------