├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── TVG_CRFRNN_COCO_VOC_TEST_3_CLASSES.prototxt ├── TVG_CRFRNN_COCO_VOC_TRAIN_3_CLASSES.prototxt ├── convert_labels.py ├── crfasrnn.py ├── data2lmdb.py ├── filter_images.py ├── loss_from_log.py ├── resume_training.py ├── solve.py ├── solver.prototxt ├── test_model.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinkersner/train-CRF-RNN/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinkersner/train-CRF-RNN/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinkersner/train-CRF-RNN/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinkersner/train-CRF-RNN/HEAD/README.md -------------------------------------------------------------------------------- /TVG_CRFRNN_COCO_VOC_TEST_3_CLASSES.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinkersner/train-CRF-RNN/HEAD/TVG_CRFRNN_COCO_VOC_TEST_3_CLASSES.prototxt -------------------------------------------------------------------------------- /TVG_CRFRNN_COCO_VOC_TRAIN_3_CLASSES.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinkersner/train-CRF-RNN/HEAD/TVG_CRFRNN_COCO_VOC_TRAIN_3_CLASSES.prototxt -------------------------------------------------------------------------------- /convert_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinkersner/train-CRF-RNN/HEAD/convert_labels.py -------------------------------------------------------------------------------- /crfasrnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinkersner/train-CRF-RNN/HEAD/crfasrnn.py -------------------------------------------------------------------------------- /data2lmdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinkersner/train-CRF-RNN/HEAD/data2lmdb.py -------------------------------------------------------------------------------- /filter_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinkersner/train-CRF-RNN/HEAD/filter_images.py -------------------------------------------------------------------------------- /loss_from_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinkersner/train-CRF-RNN/HEAD/loss_from_log.py -------------------------------------------------------------------------------- /resume_training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinkersner/train-CRF-RNN/HEAD/resume_training.py -------------------------------------------------------------------------------- /solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinkersner/train-CRF-RNN/HEAD/solve.py -------------------------------------------------------------------------------- /solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinkersner/train-CRF-RNN/HEAD/solver.prototxt -------------------------------------------------------------------------------- /test_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinkersner/train-CRF-RNN/HEAD/test_model.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinkersner/train-CRF-RNN/HEAD/utils.py --------------------------------------------------------------------------------