├── README.md ├── config ├── __init__.py └── yolov2_config.py ├── nets ├── __init__.py ├── core │ ├── README.md │ ├── re_org.cc │ └── re_org.so ├── yolov2.py ├── yolov2_convert_ckpt.py ├── yolov2_convert_ckpt_test.py └── yolov2_test.py ├── test ├── 013.jpg ├── 016.jpg ├── cat.jpg ├── dog.jpg ├── eagle.jpg ├── giraffe.jpg ├── horses.jpg ├── person.jpg └── scream.jpg ├── utils ├── __init__.py ├── box.py └── timer.py ├── yolov2_demo.py ├── yolov2_input_test.py └── yolov2_train.py /README.md: -------------------------------------------------------------------------------- 1 | # README 2 | 3 | In order to avoid wasting your time, don't fork this uncomplete project. 4 | -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/yolov2_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyaa/yolov2_tensorflow/HEAD/config/yolov2_config.py -------------------------------------------------------------------------------- /nets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nets/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyaa/yolov2_tensorflow/HEAD/nets/core/README.md -------------------------------------------------------------------------------- /nets/core/re_org.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyaa/yolov2_tensorflow/HEAD/nets/core/re_org.cc -------------------------------------------------------------------------------- /nets/core/re_org.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyaa/yolov2_tensorflow/HEAD/nets/core/re_org.so -------------------------------------------------------------------------------- /nets/yolov2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyaa/yolov2_tensorflow/HEAD/nets/yolov2.py -------------------------------------------------------------------------------- /nets/yolov2_convert_ckpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyaa/yolov2_tensorflow/HEAD/nets/yolov2_convert_ckpt.py -------------------------------------------------------------------------------- /nets/yolov2_convert_ckpt_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyaa/yolov2_tensorflow/HEAD/nets/yolov2_convert_ckpt_test.py -------------------------------------------------------------------------------- /nets/yolov2_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyaa/yolov2_tensorflow/HEAD/nets/yolov2_test.py -------------------------------------------------------------------------------- /test/013.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyaa/yolov2_tensorflow/HEAD/test/013.jpg -------------------------------------------------------------------------------- /test/016.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyaa/yolov2_tensorflow/HEAD/test/016.jpg -------------------------------------------------------------------------------- /test/cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyaa/yolov2_tensorflow/HEAD/test/cat.jpg -------------------------------------------------------------------------------- /test/dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyaa/yolov2_tensorflow/HEAD/test/dog.jpg -------------------------------------------------------------------------------- /test/eagle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyaa/yolov2_tensorflow/HEAD/test/eagle.jpg -------------------------------------------------------------------------------- /test/giraffe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyaa/yolov2_tensorflow/HEAD/test/giraffe.jpg -------------------------------------------------------------------------------- /test/horses.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyaa/yolov2_tensorflow/HEAD/test/horses.jpg -------------------------------------------------------------------------------- /test/person.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyaa/yolov2_tensorflow/HEAD/test/person.jpg -------------------------------------------------------------------------------- /test/scream.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyaa/yolov2_tensorflow/HEAD/test/scream.jpg -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyaa/yolov2_tensorflow/HEAD/utils/box.py -------------------------------------------------------------------------------- /utils/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyaa/yolov2_tensorflow/HEAD/utils/timer.py -------------------------------------------------------------------------------- /yolov2_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyaa/yolov2_tensorflow/HEAD/yolov2_demo.py -------------------------------------------------------------------------------- /yolov2_input_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyaa/yolov2_tensorflow/HEAD/yolov2_input_test.py -------------------------------------------------------------------------------- /yolov2_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biyaa/yolov2_tensorflow/HEAD/yolov2_train.py --------------------------------------------------------------------------------