├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md ├── CUB-200-2011.py ├── CUB-200-2011_ResNet18.py ├── Hyper-parameter_1.jpg ├── Hyper-parameter_2.jpg ├── LICENSE ├── README.md ├── _config.yml └── my_pooling.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRIS-CV/Mutual-Channel-Loss/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRIS-CV/Mutual-Channel-Loss/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRIS-CV/Mutual-Channel-Loss/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /CUB-200-2011.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRIS-CV/Mutual-Channel-Loss/HEAD/CUB-200-2011.py -------------------------------------------------------------------------------- /CUB-200-2011_ResNet18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRIS-CV/Mutual-Channel-Loss/HEAD/CUB-200-2011_ResNet18.py -------------------------------------------------------------------------------- /Hyper-parameter_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRIS-CV/Mutual-Channel-Loss/HEAD/Hyper-parameter_1.jpg -------------------------------------------------------------------------------- /Hyper-parameter_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRIS-CV/Mutual-Channel-Loss/HEAD/Hyper-parameter_2.jpg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRIS-CV/Mutual-Channel-Loss/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRIS-CV/Mutual-Channel-Loss/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRIS-CV/Mutual-Channel-Loss/HEAD/_config.yml -------------------------------------------------------------------------------- /my_pooling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRIS-CV/Mutual-Channel-Loss/HEAD/my_pooling.py --------------------------------------------------------------------------------