├── .gitignore ├── DQN.py ├── DQNModel.py ├── README.md ├── config.py ├── datasets ├── VOCdevkit-matlab-wrapper │ ├── get_voc_opts.m │ ├── voc_eval.m │ └── xVOCap.m ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── coco.cpython-36.pyc │ ├── dis_eval.cpython-36.pyc │ ├── ds_utils.cpython-36.pyc │ ├── factory.cpython-36.pyc │ ├── imdb.cpython-36.pyc │ ├── pascal_voc.cpython-36.pyc │ └── voc_eval.cpython-36.pyc ├── bbox.py ├── coco.py ├── config.py ├── dis_eval.py ├── dis_eval.pyc ├── ds_utils.py ├── factory.py ├── imdb.py ├── pascal_voc.py ├── tools │ └── mcg_munge.py └── voc_eval.py ├── env.py ├── evaluator.py ├── expreplay.py ├── imagenet_classes.py └── vgg16.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq456cvb/multi-stage-detection/HEAD/.gitignore -------------------------------------------------------------------------------- /DQN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq456cvb/multi-stage-detection/HEAD/DQN.py -------------------------------------------------------------------------------- /DQNModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq456cvb/multi-stage-detection/HEAD/DQNModel.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq456cvb/multi-stage-detection/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq456cvb/multi-stage-detection/HEAD/config.py -------------------------------------------------------------------------------- /datasets/VOCdevkit-matlab-wrapper/get_voc_opts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq456cvb/multi-stage-detection/HEAD/datasets/VOCdevkit-matlab-wrapper/get_voc_opts.m -------------------------------------------------------------------------------- /datasets/VOCdevkit-matlab-wrapper/voc_eval.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq456cvb/multi-stage-detection/HEAD/datasets/VOCdevkit-matlab-wrapper/voc_eval.m -------------------------------------------------------------------------------- /datasets/VOCdevkit-matlab-wrapper/xVOCap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq456cvb/multi-stage-detection/HEAD/datasets/VOCdevkit-matlab-wrapper/xVOCap.m -------------------------------------------------------------------------------- /datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq456cvb/multi-stage-detection/HEAD/datasets/__init__.py -------------------------------------------------------------------------------- /datasets/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq456cvb/multi-stage-detection/HEAD/datasets/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /datasets/__pycache__/coco.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq456cvb/multi-stage-detection/HEAD/datasets/__pycache__/coco.cpython-36.pyc -------------------------------------------------------------------------------- /datasets/__pycache__/dis_eval.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq456cvb/multi-stage-detection/HEAD/datasets/__pycache__/dis_eval.cpython-36.pyc -------------------------------------------------------------------------------- /datasets/__pycache__/ds_utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq456cvb/multi-stage-detection/HEAD/datasets/__pycache__/ds_utils.cpython-36.pyc -------------------------------------------------------------------------------- /datasets/__pycache__/factory.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq456cvb/multi-stage-detection/HEAD/datasets/__pycache__/factory.cpython-36.pyc -------------------------------------------------------------------------------- /datasets/__pycache__/imdb.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq456cvb/multi-stage-detection/HEAD/datasets/__pycache__/imdb.cpython-36.pyc -------------------------------------------------------------------------------- /datasets/__pycache__/pascal_voc.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq456cvb/multi-stage-detection/HEAD/datasets/__pycache__/pascal_voc.cpython-36.pyc -------------------------------------------------------------------------------- /datasets/__pycache__/voc_eval.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq456cvb/multi-stage-detection/HEAD/datasets/__pycache__/voc_eval.cpython-36.pyc -------------------------------------------------------------------------------- /datasets/bbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq456cvb/multi-stage-detection/HEAD/datasets/bbox.py -------------------------------------------------------------------------------- /datasets/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq456cvb/multi-stage-detection/HEAD/datasets/coco.py -------------------------------------------------------------------------------- /datasets/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq456cvb/multi-stage-detection/HEAD/datasets/config.py -------------------------------------------------------------------------------- /datasets/dis_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq456cvb/multi-stage-detection/HEAD/datasets/dis_eval.py -------------------------------------------------------------------------------- /datasets/dis_eval.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq456cvb/multi-stage-detection/HEAD/datasets/dis_eval.pyc -------------------------------------------------------------------------------- /datasets/ds_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq456cvb/multi-stage-detection/HEAD/datasets/ds_utils.py -------------------------------------------------------------------------------- /datasets/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq456cvb/multi-stage-detection/HEAD/datasets/factory.py -------------------------------------------------------------------------------- /datasets/imdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq456cvb/multi-stage-detection/HEAD/datasets/imdb.py -------------------------------------------------------------------------------- /datasets/pascal_voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq456cvb/multi-stage-detection/HEAD/datasets/pascal_voc.py -------------------------------------------------------------------------------- /datasets/tools/mcg_munge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq456cvb/multi-stage-detection/HEAD/datasets/tools/mcg_munge.py -------------------------------------------------------------------------------- /datasets/voc_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq456cvb/multi-stage-detection/HEAD/datasets/voc_eval.py -------------------------------------------------------------------------------- /env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq456cvb/multi-stage-detection/HEAD/env.py -------------------------------------------------------------------------------- /evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq456cvb/multi-stage-detection/HEAD/evaluator.py -------------------------------------------------------------------------------- /expreplay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq456cvb/multi-stage-detection/HEAD/expreplay.py -------------------------------------------------------------------------------- /imagenet_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq456cvb/multi-stage-detection/HEAD/imagenet_classes.py -------------------------------------------------------------------------------- /vgg16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq456cvb/multi-stage-detection/HEAD/vgg16.py --------------------------------------------------------------------------------