├── .gitignore ├── LICENSE ├── README.md ├── docs └── detail.md ├── library ├── __init__.py ├── c1_acc_topk.py ├── c2_img_show.py ├── c3_pr_roc.py ├── c4_bbox_iou.py ├── c5_voc_mAP.py ├── c6_python_trick.py ├── c7_numpy_trick.py └── c8_torch_trick.py └── tools ├── __init__.py ├── c1_acc_topk.py ├── c2_img_show.py ├── c3_pr_roc.py ├── c4_bbox_iou.py ├── c5_voc_mAP.py ├── c6_python_trick.py ├── c7_numpy_trick.py └── c8_torch_trick.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhaAndroid/deep_learning_codesegment/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhaAndroid/deep_learning_codesegment/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhaAndroid/deep_learning_codesegment/HEAD/README.md -------------------------------------------------------------------------------- /docs/detail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhaAndroid/deep_learning_codesegment/HEAD/docs/detail.md -------------------------------------------------------------------------------- /library/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /library/c1_acc_topk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhaAndroid/deep_learning_codesegment/HEAD/library/c1_acc_topk.py -------------------------------------------------------------------------------- /library/c2_img_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhaAndroid/deep_learning_codesegment/HEAD/library/c2_img_show.py -------------------------------------------------------------------------------- /library/c3_pr_roc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhaAndroid/deep_learning_codesegment/HEAD/library/c3_pr_roc.py -------------------------------------------------------------------------------- /library/c4_bbox_iou.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhaAndroid/deep_learning_codesegment/HEAD/library/c4_bbox_iou.py -------------------------------------------------------------------------------- /library/c5_voc_mAP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhaAndroid/deep_learning_codesegment/HEAD/library/c5_voc_mAP.py -------------------------------------------------------------------------------- /library/c6_python_trick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhaAndroid/deep_learning_codesegment/HEAD/library/c6_python_trick.py -------------------------------------------------------------------------------- /library/c7_numpy_trick.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /library/c8_torch_trick.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/c1_acc_topk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhaAndroid/deep_learning_codesegment/HEAD/tools/c1_acc_topk.py -------------------------------------------------------------------------------- /tools/c2_img_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhaAndroid/deep_learning_codesegment/HEAD/tools/c2_img_show.py -------------------------------------------------------------------------------- /tools/c3_pr_roc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhaAndroid/deep_learning_codesegment/HEAD/tools/c3_pr_roc.py -------------------------------------------------------------------------------- /tools/c4_bbox_iou.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhaAndroid/deep_learning_codesegment/HEAD/tools/c4_bbox_iou.py -------------------------------------------------------------------------------- /tools/c5_voc_mAP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhaAndroid/deep_learning_codesegment/HEAD/tools/c5_voc_mAP.py -------------------------------------------------------------------------------- /tools/c6_python_trick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhaAndroid/deep_learning_codesegment/HEAD/tools/c6_python_trick.py -------------------------------------------------------------------------------- /tools/c7_numpy_trick.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/c8_torch_trick.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------