├── README.md ├── data ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-35.pyc │ ├── config.cpython-35.pyc │ └── voc0712.cpython-35.pyc ├── config.py ├── scripts │ ├── VOC2007.sh │ └── VOC2012.sh └── voc0712.py ├── layers ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-35.pyc │ └── box_utils.cpython-35.pyc ├── box_utils.py ├── functions │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-35.pyc │ │ ├── detection.cpython-35.pyc │ │ └── prior_box.cpython-35.pyc │ ├── detection.py │ └── prior_box.py └── modules │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-35.pyc │ ├── l2norm.cpython-35.pyc │ └── multibox_loss.cpython-35.pyc │ ├── l2norm.py │ └── multibox_loss.py ├── object_detection.py ├── prev.png ├── ssd.py ├── ssd300_mAP_77.43_v2.pth.000 ├── ssd300_mAP_77.43_v2.pth.001 ├── ssd300_mAP_77.43_v2.pth.002 ├── ssd300_mAP_77.43_v2.pth.003 ├── ssd300_mAP_77.43_v2.pth.004 ├── virtual_platform_windows.yml └── working.png /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anushuk/Object-Detection-SSD/HEAD/README.md -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anushuk/Object-Detection-SSD/HEAD/data/__init__.py -------------------------------------------------------------------------------- /data/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anushuk/Object-Detection-SSD/HEAD/data/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /data/__pycache__/config.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anushuk/Object-Detection-SSD/HEAD/data/__pycache__/config.cpython-35.pyc -------------------------------------------------------------------------------- /data/__pycache__/voc0712.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anushuk/Object-Detection-SSD/HEAD/data/__pycache__/voc0712.cpython-35.pyc -------------------------------------------------------------------------------- /data/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anushuk/Object-Detection-SSD/HEAD/data/config.py -------------------------------------------------------------------------------- /data/scripts/VOC2007.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anushuk/Object-Detection-SSD/HEAD/data/scripts/VOC2007.sh -------------------------------------------------------------------------------- /data/scripts/VOC2012.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anushuk/Object-Detection-SSD/HEAD/data/scripts/VOC2012.sh -------------------------------------------------------------------------------- /data/voc0712.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anushuk/Object-Detection-SSD/HEAD/data/voc0712.py -------------------------------------------------------------------------------- /layers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anushuk/Object-Detection-SSD/HEAD/layers/__init__.py -------------------------------------------------------------------------------- /layers/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anushuk/Object-Detection-SSD/HEAD/layers/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /layers/__pycache__/box_utils.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anushuk/Object-Detection-SSD/HEAD/layers/__pycache__/box_utils.cpython-35.pyc -------------------------------------------------------------------------------- /layers/box_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anushuk/Object-Detection-SSD/HEAD/layers/box_utils.py -------------------------------------------------------------------------------- /layers/functions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anushuk/Object-Detection-SSD/HEAD/layers/functions/__init__.py -------------------------------------------------------------------------------- /layers/functions/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anushuk/Object-Detection-SSD/HEAD/layers/functions/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /layers/functions/__pycache__/detection.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anushuk/Object-Detection-SSD/HEAD/layers/functions/__pycache__/detection.cpython-35.pyc -------------------------------------------------------------------------------- /layers/functions/__pycache__/prior_box.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anushuk/Object-Detection-SSD/HEAD/layers/functions/__pycache__/prior_box.cpython-35.pyc -------------------------------------------------------------------------------- /layers/functions/detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anushuk/Object-Detection-SSD/HEAD/layers/functions/detection.py -------------------------------------------------------------------------------- /layers/functions/prior_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anushuk/Object-Detection-SSD/HEAD/layers/functions/prior_box.py -------------------------------------------------------------------------------- /layers/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anushuk/Object-Detection-SSD/HEAD/layers/modules/__init__.py -------------------------------------------------------------------------------- /layers/modules/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anushuk/Object-Detection-SSD/HEAD/layers/modules/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /layers/modules/__pycache__/l2norm.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anushuk/Object-Detection-SSD/HEAD/layers/modules/__pycache__/l2norm.cpython-35.pyc -------------------------------------------------------------------------------- /layers/modules/__pycache__/multibox_loss.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anushuk/Object-Detection-SSD/HEAD/layers/modules/__pycache__/multibox_loss.cpython-35.pyc -------------------------------------------------------------------------------- /layers/modules/l2norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anushuk/Object-Detection-SSD/HEAD/layers/modules/l2norm.py -------------------------------------------------------------------------------- /layers/modules/multibox_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anushuk/Object-Detection-SSD/HEAD/layers/modules/multibox_loss.py -------------------------------------------------------------------------------- /object_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anushuk/Object-Detection-SSD/HEAD/object_detection.py -------------------------------------------------------------------------------- /prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anushuk/Object-Detection-SSD/HEAD/prev.png -------------------------------------------------------------------------------- /ssd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anushuk/Object-Detection-SSD/HEAD/ssd.py -------------------------------------------------------------------------------- /ssd300_mAP_77.43_v2.pth.000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anushuk/Object-Detection-SSD/HEAD/ssd300_mAP_77.43_v2.pth.000 -------------------------------------------------------------------------------- /ssd300_mAP_77.43_v2.pth.001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anushuk/Object-Detection-SSD/HEAD/ssd300_mAP_77.43_v2.pth.001 -------------------------------------------------------------------------------- /ssd300_mAP_77.43_v2.pth.002: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anushuk/Object-Detection-SSD/HEAD/ssd300_mAP_77.43_v2.pth.002 -------------------------------------------------------------------------------- /ssd300_mAP_77.43_v2.pth.003: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anushuk/Object-Detection-SSD/HEAD/ssd300_mAP_77.43_v2.pth.003 -------------------------------------------------------------------------------- /ssd300_mAP_77.43_v2.pth.004: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anushuk/Object-Detection-SSD/HEAD/ssd300_mAP_77.43_v2.pth.004 -------------------------------------------------------------------------------- /virtual_platform_windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anushuk/Object-Detection-SSD/HEAD/virtual_platform_windows.yml -------------------------------------------------------------------------------- /working.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anushuk/Object-Detection-SSD/HEAD/working.png --------------------------------------------------------------------------------