├── .DS_Store ├── LICENSE.txt ├── README.md ├── conda_list.txt ├── config.py ├── datasets ├── AIR │ ├── test.txt │ └── train.txt ├── CUB │ ├── test.txt │ └── train.txt └── STCAR │ ├── .DS_Store │ ├── test.txt │ └── train.txt ├── models ├── Asoftmax_linear.py ├── LoadModel.py ├── __pycache__ │ ├── LoadModel.cpython-36.pyc │ └── focal_loss.cpython-36.pyc └── focal_loss.py ├── test.py ├── train.py ├── transforms ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── functional.cpython-36.pyc │ └── transforms.cpython-36.pyc ├── functional.py └── transforms.py └── utils ├── Asoftmax_loss.py ├── __pycache__ ├── Asoftmax_loss.cpython-36.pyc ├── autoaugment.cpython-36.pyc ├── dataset_DCL.cpython-36.pyc ├── eval_model.cpython-36.pyc ├── train_model.cpython-36.pyc └── utils.cpython-36.pyc ├── autoaugment.py ├── dataset_DCL.py ├── eval_model.py ├── test_tool.py ├── train_model.py └── utils.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DCL/HEAD/.DS_Store -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DCL/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DCL/HEAD/README.md -------------------------------------------------------------------------------- /conda_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DCL/HEAD/conda_list.txt -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DCL/HEAD/config.py -------------------------------------------------------------------------------- /datasets/AIR/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DCL/HEAD/datasets/AIR/test.txt -------------------------------------------------------------------------------- /datasets/AIR/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DCL/HEAD/datasets/AIR/train.txt -------------------------------------------------------------------------------- /datasets/CUB/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DCL/HEAD/datasets/CUB/test.txt -------------------------------------------------------------------------------- /datasets/CUB/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DCL/HEAD/datasets/CUB/train.txt -------------------------------------------------------------------------------- /datasets/STCAR/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DCL/HEAD/datasets/STCAR/.DS_Store -------------------------------------------------------------------------------- /datasets/STCAR/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DCL/HEAD/datasets/STCAR/test.txt -------------------------------------------------------------------------------- /datasets/STCAR/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DCL/HEAD/datasets/STCAR/train.txt -------------------------------------------------------------------------------- /models/Asoftmax_linear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DCL/HEAD/models/Asoftmax_linear.py -------------------------------------------------------------------------------- /models/LoadModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DCL/HEAD/models/LoadModel.py -------------------------------------------------------------------------------- /models/__pycache__/LoadModel.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DCL/HEAD/models/__pycache__/LoadModel.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/focal_loss.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DCL/HEAD/models/__pycache__/focal_loss.cpython-36.pyc -------------------------------------------------------------------------------- /models/focal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DCL/HEAD/models/focal_loss.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DCL/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DCL/HEAD/train.py -------------------------------------------------------------------------------- /transforms/__init__.py: -------------------------------------------------------------------------------- 1 | from .transforms import * 2 | -------------------------------------------------------------------------------- /transforms/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DCL/HEAD/transforms/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /transforms/__pycache__/functional.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DCL/HEAD/transforms/__pycache__/functional.cpython-36.pyc -------------------------------------------------------------------------------- /transforms/__pycache__/transforms.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DCL/HEAD/transforms/__pycache__/transforms.cpython-36.pyc -------------------------------------------------------------------------------- /transforms/functional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DCL/HEAD/transforms/functional.py -------------------------------------------------------------------------------- /transforms/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DCL/HEAD/transforms/transforms.py -------------------------------------------------------------------------------- /utils/Asoftmax_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DCL/HEAD/utils/Asoftmax_loss.py -------------------------------------------------------------------------------- /utils/__pycache__/Asoftmax_loss.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DCL/HEAD/utils/__pycache__/Asoftmax_loss.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/autoaugment.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DCL/HEAD/utils/__pycache__/autoaugment.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/dataset_DCL.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DCL/HEAD/utils/__pycache__/dataset_DCL.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/eval_model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DCL/HEAD/utils/__pycache__/eval_model.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/train_model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DCL/HEAD/utils/__pycache__/train_model.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DCL/HEAD/utils/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /utils/autoaugment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DCL/HEAD/utils/autoaugment.py -------------------------------------------------------------------------------- /utils/dataset_DCL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DCL/HEAD/utils/dataset_DCL.py -------------------------------------------------------------------------------- /utils/eval_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DCL/HEAD/utils/eval_model.py -------------------------------------------------------------------------------- /utils/test_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DCL/HEAD/utils/test_tool.py -------------------------------------------------------------------------------- /utils/train_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DCL/HEAD/utils/train_model.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JDAI-CV/DCL/HEAD/utils/utils.py --------------------------------------------------------------------------------