├── .gitignore ├── README.md ├── generate.py ├── prototxt_templates └── VGG16 │ └── faster_rcnn_end2end │ ├── solver.prototxt │ ├── test.prototxt │ └── train.prototxt └── templates.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.txt 3 | *~ 4 | prototxt_templates_new/ 5 | .idea/ 6 | *! 7 | __*/ 8 | 9 | 10 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microos/py-faster-rcnn-data-interface-generator/HEAD/README.md -------------------------------------------------------------------------------- /generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microos/py-faster-rcnn-data-interface-generator/HEAD/generate.py -------------------------------------------------------------------------------- /prototxt_templates/VGG16/faster_rcnn_end2end/solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microos/py-faster-rcnn-data-interface-generator/HEAD/prototxt_templates/VGG16/faster_rcnn_end2end/solver.prototxt -------------------------------------------------------------------------------- /prototxt_templates/VGG16/faster_rcnn_end2end/test.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microos/py-faster-rcnn-data-interface-generator/HEAD/prototxt_templates/VGG16/faster_rcnn_end2end/test.prototxt -------------------------------------------------------------------------------- /prototxt_templates/VGG16/faster_rcnn_end2end/train.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microos/py-faster-rcnn-data-interface-generator/HEAD/prototxt_templates/VGG16/faster_rcnn_end2end/train.prototxt -------------------------------------------------------------------------------- /templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microos/py-faster-rcnn-data-interface-generator/HEAD/templates.py --------------------------------------------------------------------------------