├── ObjectDetection_TransferLearning_with_mmdetection ├── configs │ ├── faster_rcnn_r50_fpn_1x.py │ ├── faster_rcnn_r50_fpn_1x_our_version.py │ └── faster_rcnn_x101_64x4d_fpn_1x.py ├── object_detection_transfer_learning_mmdetection.ipynb └── utils │ ├── make_annot.py │ └── viz.py └── README.md /ObjectDetection_TransferLearning_with_mmdetection/configs/faster_rcnn_r50_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLtYkRiTiK/ComputerVision_Tutorials_in_Russian/HEAD/ObjectDetection_TransferLearning_with_mmdetection/configs/faster_rcnn_r50_fpn_1x.py -------------------------------------------------------------------------------- /ObjectDetection_TransferLearning_with_mmdetection/configs/faster_rcnn_r50_fpn_1x_our_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLtYkRiTiK/ComputerVision_Tutorials_in_Russian/HEAD/ObjectDetection_TransferLearning_with_mmdetection/configs/faster_rcnn_r50_fpn_1x_our_version.py -------------------------------------------------------------------------------- /ObjectDetection_TransferLearning_with_mmdetection/configs/faster_rcnn_x101_64x4d_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLtYkRiTiK/ComputerVision_Tutorials_in_Russian/HEAD/ObjectDetection_TransferLearning_with_mmdetection/configs/faster_rcnn_x101_64x4d_fpn_1x.py -------------------------------------------------------------------------------- /ObjectDetection_TransferLearning_with_mmdetection/object_detection_transfer_learning_mmdetection.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLtYkRiTiK/ComputerVision_Tutorials_in_Russian/HEAD/ObjectDetection_TransferLearning_with_mmdetection/object_detection_transfer_learning_mmdetection.ipynb -------------------------------------------------------------------------------- /ObjectDetection_TransferLearning_with_mmdetection/utils/make_annot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLtYkRiTiK/ComputerVision_Tutorials_in_Russian/HEAD/ObjectDetection_TransferLearning_with_mmdetection/utils/make_annot.py -------------------------------------------------------------------------------- /ObjectDetection_TransferLearning_with_mmdetection/utils/viz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLtYkRiTiK/ComputerVision_Tutorials_in_Russian/HEAD/ObjectDetection_TransferLearning_with_mmdetection/utils/viz.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLtYkRiTiK/ComputerVision_Tutorials_in_Russian/HEAD/README.md --------------------------------------------------------------------------------