├── README.md └── models ├── README.md ├── coco ├── VGG16 │ ├── fast_rcnn │ │ ├── solver.prototxt │ │ ├── test.prototxt │ │ └── train.prototxt │ └── faster_rcnn_end2end │ │ ├── solver.prototxt │ │ ├── test.prototxt │ │ └── train.prototxt └── VGG_CNN_M_1024 │ ├── fast_rcnn │ ├── solver.prototxt │ ├── test.prototxt │ └── train.prototxt │ └── faster_rcnn_end2end │ ├── solver.prototxt │ ├── test.prototxt │ └── train.prototxt └── pascal_voc ├── VGG16 ├── fast_rcnn │ ├── solver.prototxt │ ├── test.prototxt │ └── train.prototxt ├── faster_rcnn_alt_opt │ ├── faster_rcnn_test.pt │ ├── rpn_test.pt │ ├── stage1_fast_rcnn_solver30k40k.pt │ ├── stage1_fast_rcnn_train.pt │ ├── stage1_rpn_solver60k80k.pt │ ├── stage1_rpn_train.pt │ ├── stage2_fast_rcnn_solver30k40k.pt │ ├── stage2_fast_rcnn_train.pt │ ├── stage2_rpn_solver60k80k.pt │ └── stage2_rpn_train.pt └── faster_rcnn_end2end │ ├── solver.prototxt │ ├── test.prototxt │ └── train.prototxt ├── VGG_CNN_M_1024 ├── fast_rcnn │ ├── solver.prototxt │ ├── test.prototxt │ └── train.prototxt ├── faster_rcnn_alt_opt │ ├── faster_rcnn_test.pt │ ├── rpn_test.pt │ ├── stage1_fast_rcnn_solver30k40k.pt │ ├── stage1_fast_rcnn_train.pt │ ├── stage1_rpn_solver60k80k.pt │ ├── stage1_rpn_train.pt │ ├── stage2_fast_rcnn_solver30k40k.pt │ ├── stage2_fast_rcnn_train.pt │ ├── stage2_rpn_solver60k80k.pt │ └── stage2_rpn_train.pt └── faster_rcnn_end2end │ ├── solver.prototxt │ ├── test.prototxt │ └── train.prototxt └── ZF ├── fast_rcnn ├── solver.prototxt ├── test.prototxt └── train.prototxt ├── faster_rcnn_alt_opt ├── faster_rcnn_test - 副本.pt ├── faster_rcnn_test.pt ├── rpn_test.pt ├── stage1_fast_rcnn_solver30k40k - 副本.pt ├── stage1_fast_rcnn_solver30k40k.pt ├── stage1_fast_rcnn_train - 副本.pt ├── stage1_fast_rcnn_train.pt ├── stage1_rpn_solver60k80k - 副本.pt ├── stage1_rpn_solver60k80k.pt ├── stage1_rpn_train - 副本.pt ├── stage1_rpn_train.pt ├── stage2_fast_rcnn_solver30k40k - 副本.pt ├── stage2_fast_rcnn_solver30k40k.pt ├── stage2_fast_rcnn_train - 副本.pt ├── stage2_fast_rcnn_train.pt ├── stage2_rpn_solver60k80k - 副本.pt ├── stage2_rpn_solver60k80k.pt ├── stage2_rpn_train - 副本.pt └── stage2_rpn_train.pt └── faster_rcnn_end2end ├── solver - 副本.prototxt ├── solver.prototxt ├── test - 副本.prototxt ├── test.prototxt ├── train - 副本.prototxt └── train.prototxt /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/README.md -------------------------------------------------------------------------------- /models/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/README.md -------------------------------------------------------------------------------- /models/coco/VGG16/fast_rcnn/solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/coco/VGG16/fast_rcnn/solver.prototxt -------------------------------------------------------------------------------- /models/coco/VGG16/fast_rcnn/test.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/coco/VGG16/fast_rcnn/test.prototxt -------------------------------------------------------------------------------- /models/coco/VGG16/fast_rcnn/train.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/coco/VGG16/fast_rcnn/train.prototxt -------------------------------------------------------------------------------- /models/coco/VGG16/faster_rcnn_end2end/solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/coco/VGG16/faster_rcnn_end2end/solver.prototxt -------------------------------------------------------------------------------- /models/coco/VGG16/faster_rcnn_end2end/test.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/coco/VGG16/faster_rcnn_end2end/test.prototxt -------------------------------------------------------------------------------- /models/coco/VGG16/faster_rcnn_end2end/train.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/coco/VGG16/faster_rcnn_end2end/train.prototxt -------------------------------------------------------------------------------- /models/coco/VGG_CNN_M_1024/fast_rcnn/solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/coco/VGG_CNN_M_1024/fast_rcnn/solver.prototxt -------------------------------------------------------------------------------- /models/coco/VGG_CNN_M_1024/fast_rcnn/test.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/coco/VGG_CNN_M_1024/fast_rcnn/test.prototxt -------------------------------------------------------------------------------- /models/coco/VGG_CNN_M_1024/fast_rcnn/train.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/coco/VGG_CNN_M_1024/fast_rcnn/train.prototxt -------------------------------------------------------------------------------- /models/coco/VGG_CNN_M_1024/faster_rcnn_end2end/solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/coco/VGG_CNN_M_1024/faster_rcnn_end2end/solver.prototxt -------------------------------------------------------------------------------- /models/coco/VGG_CNN_M_1024/faster_rcnn_end2end/test.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/coco/VGG_CNN_M_1024/faster_rcnn_end2end/test.prototxt -------------------------------------------------------------------------------- /models/coco/VGG_CNN_M_1024/faster_rcnn_end2end/train.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/coco/VGG_CNN_M_1024/faster_rcnn_end2end/train.prototxt -------------------------------------------------------------------------------- /models/pascal_voc/VGG16/fast_rcnn/solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/VGG16/fast_rcnn/solver.prototxt -------------------------------------------------------------------------------- /models/pascal_voc/VGG16/fast_rcnn/test.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/VGG16/fast_rcnn/test.prototxt -------------------------------------------------------------------------------- /models/pascal_voc/VGG16/fast_rcnn/train.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/VGG16/fast_rcnn/train.prototxt -------------------------------------------------------------------------------- /models/pascal_voc/VGG16/faster_rcnn_alt_opt/faster_rcnn_test.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/VGG16/faster_rcnn_alt_opt/faster_rcnn_test.pt -------------------------------------------------------------------------------- /models/pascal_voc/VGG16/faster_rcnn_alt_opt/rpn_test.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/VGG16/faster_rcnn_alt_opt/rpn_test.pt -------------------------------------------------------------------------------- /models/pascal_voc/VGG16/faster_rcnn_alt_opt/stage1_fast_rcnn_solver30k40k.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/VGG16/faster_rcnn_alt_opt/stage1_fast_rcnn_solver30k40k.pt -------------------------------------------------------------------------------- /models/pascal_voc/VGG16/faster_rcnn_alt_opt/stage1_fast_rcnn_train.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/VGG16/faster_rcnn_alt_opt/stage1_fast_rcnn_train.pt -------------------------------------------------------------------------------- /models/pascal_voc/VGG16/faster_rcnn_alt_opt/stage1_rpn_solver60k80k.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/VGG16/faster_rcnn_alt_opt/stage1_rpn_solver60k80k.pt -------------------------------------------------------------------------------- /models/pascal_voc/VGG16/faster_rcnn_alt_opt/stage1_rpn_train.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/VGG16/faster_rcnn_alt_opt/stage1_rpn_train.pt -------------------------------------------------------------------------------- /models/pascal_voc/VGG16/faster_rcnn_alt_opt/stage2_fast_rcnn_solver30k40k.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/VGG16/faster_rcnn_alt_opt/stage2_fast_rcnn_solver30k40k.pt -------------------------------------------------------------------------------- /models/pascal_voc/VGG16/faster_rcnn_alt_opt/stage2_fast_rcnn_train.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/VGG16/faster_rcnn_alt_opt/stage2_fast_rcnn_train.pt -------------------------------------------------------------------------------- /models/pascal_voc/VGG16/faster_rcnn_alt_opt/stage2_rpn_solver60k80k.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/VGG16/faster_rcnn_alt_opt/stage2_rpn_solver60k80k.pt -------------------------------------------------------------------------------- /models/pascal_voc/VGG16/faster_rcnn_alt_opt/stage2_rpn_train.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/VGG16/faster_rcnn_alt_opt/stage2_rpn_train.pt -------------------------------------------------------------------------------- /models/pascal_voc/VGG16/faster_rcnn_end2end/solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/VGG16/faster_rcnn_end2end/solver.prototxt -------------------------------------------------------------------------------- /models/pascal_voc/VGG16/faster_rcnn_end2end/test.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/VGG16/faster_rcnn_end2end/test.prototxt -------------------------------------------------------------------------------- /models/pascal_voc/VGG16/faster_rcnn_end2end/train.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/VGG16/faster_rcnn_end2end/train.prototxt -------------------------------------------------------------------------------- /models/pascal_voc/VGG_CNN_M_1024/fast_rcnn/solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/VGG_CNN_M_1024/fast_rcnn/solver.prototxt -------------------------------------------------------------------------------- /models/pascal_voc/VGG_CNN_M_1024/fast_rcnn/test.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/VGG_CNN_M_1024/fast_rcnn/test.prototxt -------------------------------------------------------------------------------- /models/pascal_voc/VGG_CNN_M_1024/fast_rcnn/train.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/VGG_CNN_M_1024/fast_rcnn/train.prototxt -------------------------------------------------------------------------------- /models/pascal_voc/VGG_CNN_M_1024/faster_rcnn_alt_opt/faster_rcnn_test.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/VGG_CNN_M_1024/faster_rcnn_alt_opt/faster_rcnn_test.pt -------------------------------------------------------------------------------- /models/pascal_voc/VGG_CNN_M_1024/faster_rcnn_alt_opt/rpn_test.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/VGG_CNN_M_1024/faster_rcnn_alt_opt/rpn_test.pt -------------------------------------------------------------------------------- /models/pascal_voc/VGG_CNN_M_1024/faster_rcnn_alt_opt/stage1_fast_rcnn_solver30k40k.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/VGG_CNN_M_1024/faster_rcnn_alt_opt/stage1_fast_rcnn_solver30k40k.pt -------------------------------------------------------------------------------- /models/pascal_voc/VGG_CNN_M_1024/faster_rcnn_alt_opt/stage1_fast_rcnn_train.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/VGG_CNN_M_1024/faster_rcnn_alt_opt/stage1_fast_rcnn_train.pt -------------------------------------------------------------------------------- /models/pascal_voc/VGG_CNN_M_1024/faster_rcnn_alt_opt/stage1_rpn_solver60k80k.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/VGG_CNN_M_1024/faster_rcnn_alt_opt/stage1_rpn_solver60k80k.pt -------------------------------------------------------------------------------- /models/pascal_voc/VGG_CNN_M_1024/faster_rcnn_alt_opt/stage1_rpn_train.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/VGG_CNN_M_1024/faster_rcnn_alt_opt/stage1_rpn_train.pt -------------------------------------------------------------------------------- /models/pascal_voc/VGG_CNN_M_1024/faster_rcnn_alt_opt/stage2_fast_rcnn_solver30k40k.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/VGG_CNN_M_1024/faster_rcnn_alt_opt/stage2_fast_rcnn_solver30k40k.pt -------------------------------------------------------------------------------- /models/pascal_voc/VGG_CNN_M_1024/faster_rcnn_alt_opt/stage2_fast_rcnn_train.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/VGG_CNN_M_1024/faster_rcnn_alt_opt/stage2_fast_rcnn_train.pt -------------------------------------------------------------------------------- /models/pascal_voc/VGG_CNN_M_1024/faster_rcnn_alt_opt/stage2_rpn_solver60k80k.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/VGG_CNN_M_1024/faster_rcnn_alt_opt/stage2_rpn_solver60k80k.pt -------------------------------------------------------------------------------- /models/pascal_voc/VGG_CNN_M_1024/faster_rcnn_alt_opt/stage2_rpn_train.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/VGG_CNN_M_1024/faster_rcnn_alt_opt/stage2_rpn_train.pt -------------------------------------------------------------------------------- /models/pascal_voc/VGG_CNN_M_1024/faster_rcnn_end2end/solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/VGG_CNN_M_1024/faster_rcnn_end2end/solver.prototxt -------------------------------------------------------------------------------- /models/pascal_voc/VGG_CNN_M_1024/faster_rcnn_end2end/test.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/VGG_CNN_M_1024/faster_rcnn_end2end/test.prototxt -------------------------------------------------------------------------------- /models/pascal_voc/VGG_CNN_M_1024/faster_rcnn_end2end/train.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/VGG_CNN_M_1024/faster_rcnn_end2end/train.prototxt -------------------------------------------------------------------------------- /models/pascal_voc/ZF/fast_rcnn/solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/ZF/fast_rcnn/solver.prototxt -------------------------------------------------------------------------------- /models/pascal_voc/ZF/fast_rcnn/test.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/ZF/fast_rcnn/test.prototxt -------------------------------------------------------------------------------- /models/pascal_voc/ZF/fast_rcnn/train.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/ZF/fast_rcnn/train.prototxt -------------------------------------------------------------------------------- /models/pascal_voc/ZF/faster_rcnn_alt_opt/faster_rcnn_test - 副本.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/ZF/faster_rcnn_alt_opt/faster_rcnn_test - 副本.pt -------------------------------------------------------------------------------- /models/pascal_voc/ZF/faster_rcnn_alt_opt/faster_rcnn_test.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/ZF/faster_rcnn_alt_opt/faster_rcnn_test.pt -------------------------------------------------------------------------------- /models/pascal_voc/ZF/faster_rcnn_alt_opt/rpn_test.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/ZF/faster_rcnn_alt_opt/rpn_test.pt -------------------------------------------------------------------------------- /models/pascal_voc/ZF/faster_rcnn_alt_opt/stage1_fast_rcnn_solver30k40k - 副本.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/ZF/faster_rcnn_alt_opt/stage1_fast_rcnn_solver30k40k - 副本.pt -------------------------------------------------------------------------------- /models/pascal_voc/ZF/faster_rcnn_alt_opt/stage1_fast_rcnn_solver30k40k.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/ZF/faster_rcnn_alt_opt/stage1_fast_rcnn_solver30k40k.pt -------------------------------------------------------------------------------- /models/pascal_voc/ZF/faster_rcnn_alt_opt/stage1_fast_rcnn_train - 副本.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/ZF/faster_rcnn_alt_opt/stage1_fast_rcnn_train - 副本.pt -------------------------------------------------------------------------------- /models/pascal_voc/ZF/faster_rcnn_alt_opt/stage1_fast_rcnn_train.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/ZF/faster_rcnn_alt_opt/stage1_fast_rcnn_train.pt -------------------------------------------------------------------------------- /models/pascal_voc/ZF/faster_rcnn_alt_opt/stage1_rpn_solver60k80k - 副本.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/ZF/faster_rcnn_alt_opt/stage1_rpn_solver60k80k - 副本.pt -------------------------------------------------------------------------------- /models/pascal_voc/ZF/faster_rcnn_alt_opt/stage1_rpn_solver60k80k.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/ZF/faster_rcnn_alt_opt/stage1_rpn_solver60k80k.pt -------------------------------------------------------------------------------- /models/pascal_voc/ZF/faster_rcnn_alt_opt/stage1_rpn_train - 副本.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/ZF/faster_rcnn_alt_opt/stage1_rpn_train - 副本.pt -------------------------------------------------------------------------------- /models/pascal_voc/ZF/faster_rcnn_alt_opt/stage1_rpn_train.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/ZF/faster_rcnn_alt_opt/stage1_rpn_train.pt -------------------------------------------------------------------------------- /models/pascal_voc/ZF/faster_rcnn_alt_opt/stage2_fast_rcnn_solver30k40k - 副本.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/ZF/faster_rcnn_alt_opt/stage2_fast_rcnn_solver30k40k - 副本.pt -------------------------------------------------------------------------------- /models/pascal_voc/ZF/faster_rcnn_alt_opt/stage2_fast_rcnn_solver30k40k.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/ZF/faster_rcnn_alt_opt/stage2_fast_rcnn_solver30k40k.pt -------------------------------------------------------------------------------- /models/pascal_voc/ZF/faster_rcnn_alt_opt/stage2_fast_rcnn_train - 副本.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/ZF/faster_rcnn_alt_opt/stage2_fast_rcnn_train - 副本.pt -------------------------------------------------------------------------------- /models/pascal_voc/ZF/faster_rcnn_alt_opt/stage2_fast_rcnn_train.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/ZF/faster_rcnn_alt_opt/stage2_fast_rcnn_train.pt -------------------------------------------------------------------------------- /models/pascal_voc/ZF/faster_rcnn_alt_opt/stage2_rpn_solver60k80k - 副本.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/ZF/faster_rcnn_alt_opt/stage2_rpn_solver60k80k - 副本.pt -------------------------------------------------------------------------------- /models/pascal_voc/ZF/faster_rcnn_alt_opt/stage2_rpn_solver60k80k.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/ZF/faster_rcnn_alt_opt/stage2_rpn_solver60k80k.pt -------------------------------------------------------------------------------- /models/pascal_voc/ZF/faster_rcnn_alt_opt/stage2_rpn_train - 副本.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/ZF/faster_rcnn_alt_opt/stage2_rpn_train - 副本.pt -------------------------------------------------------------------------------- /models/pascal_voc/ZF/faster_rcnn_alt_opt/stage2_rpn_train.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/ZF/faster_rcnn_alt_opt/stage2_rpn_train.pt -------------------------------------------------------------------------------- /models/pascal_voc/ZF/faster_rcnn_end2end/solver - 副本.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/ZF/faster_rcnn_end2end/solver - 副本.prototxt -------------------------------------------------------------------------------- /models/pascal_voc/ZF/faster_rcnn_end2end/solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/ZF/faster_rcnn_end2end/solver.prototxt -------------------------------------------------------------------------------- /models/pascal_voc/ZF/faster_rcnn_end2end/test - 副本.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/ZF/faster_rcnn_end2end/test - 副本.prototxt -------------------------------------------------------------------------------- /models/pascal_voc/ZF/faster_rcnn_end2end/test.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/ZF/faster_rcnn_end2end/test.prototxt -------------------------------------------------------------------------------- /models/pascal_voc/ZF/faster_rcnn_end2end/train - 副本.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/ZF/faster_rcnn_end2end/train - 副本.prototxt -------------------------------------------------------------------------------- /models/pascal_voc/ZF/faster_rcnn_end2end/train.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TqDavid/Tunnel-Crack-Detection-by-faster-R-CNN/HEAD/models/pascal_voc/ZF/faster_rcnn_end2end/train.prototxt --------------------------------------------------------------------------------