├── .crfjointlossfpn.py.swp ├── README.md ├── crfjointlossfpn.py ├── reid ├── __init__.py ├── __pycache__ │ └── __init__.cpython-36.pyc ├── data │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── dataloader.cpython-36.pyc │ │ ├── preprocessor.cpython-36.pyc │ │ ├── sampler.cpython-36.pyc │ │ └── transforms.cpython-36.pyc │ ├── dataloader.py │ ├── preprocessor.py │ ├── sampler.py │ └── transforms.py ├── datasets │ ├── .market1501.py.swp │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── cuhk03.cpython-36.pyc │ │ ├── dataset.cpython-36.pyc │ │ ├── dukemtmc.cpython-36.pyc │ │ └── market1501.cpython-36.pyc │ ├── cuhk03.py │ ├── dataset.py │ ├── dukemtmc.py │ └── market1501.py ├── evaluator │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── binaryevaluator.cpython-36.pyc │ │ ├── classification.cpython-36.pyc │ │ ├── crfevaluator.cpython-36.pyc │ │ ├── evaluators.cpython-36.pyc │ │ ├── msevaluator.cpython-36.pyc │ │ ├── partialcrfevaluator.cpython-36.pyc │ │ ├── ranking.cpython-36.pyc │ │ └── verifievaluator.cpython-36.pyc │ ├── binaryevaluator.py │ ├── classification.py │ ├── crfevaluator.py │ ├── evaluators.py │ ├── msevaluator.py │ ├── partialcrfevaluator.py │ ├── ranking.py │ └── verifievaluator.py ├── feature_extraction │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── cnn.cpython-36.pyc │ │ └── database.cpython-36.pyc │ ├── cnn.py │ └── database.py ├── loss │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── crf_loss.cpython-36.pyc │ │ ├── mul_oimloss.cpython-36.pyc │ │ ├── mul_pairloss.cpython-36.pyc │ │ ├── oim_loss.cpython-36.pyc │ │ ├── pairloss.cpython-36.pyc │ │ ├── pairwise.cpython-36.pyc │ │ └── triplet.cpython-36.pyc │ ├── crf_loss.py │ ├── mul_oimloss.py │ ├── mul_pairloss.py │ ├── oim_loss.py │ ├── pairloss.py │ ├── pairwise.py │ └── triplet.py ├── models │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── classifer.cpython-36.pyc │ │ ├── crf_mf.cpython-36.pyc │ │ ├── inception.cpython-36.pyc │ │ ├── mulclassifier.cpython-36.pyc │ │ ├── mulcrf_mf.cpython-36.pyc │ │ ├── resfpnnet.cpython-36.pyc │ │ ├── resnet.cpython-36.pyc │ │ └── simscores.cpython-36.pyc │ ├── classifer.py │ ├── crf_mf.py │ ├── inception.py │ ├── mulclassifier.py │ ├── mulcrf_mf.py │ ├── resfpnnet.py │ ├── resnet.py │ └── simscores.py ├── tmux ├── train │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ └── trainers.cpython-36.pyc │ └── trainers.py └── utils │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── logging.cpython-36.pyc │ ├── meters.cpython-36.pyc │ ├── osutils.cpython-36.pyc │ └── serialization.cpython-36.pyc │ ├── logging.py │ ├── meters.py │ ├── osutils.py │ └── serialization.py ├── standard_batch └── standard_batch_2 /.crfjointlossfpn.py.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/.crfjointlossfpn.py.swp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/README.md -------------------------------------------------------------------------------- /crfjointlossfpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/crfjointlossfpn.py -------------------------------------------------------------------------------- /reid/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/__init__.py -------------------------------------------------------------------------------- /reid/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /reid/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/data/__init__.py -------------------------------------------------------------------------------- /reid/data/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/data/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /reid/data/__pycache__/dataloader.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/data/__pycache__/dataloader.cpython-36.pyc -------------------------------------------------------------------------------- /reid/data/__pycache__/preprocessor.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/data/__pycache__/preprocessor.cpython-36.pyc -------------------------------------------------------------------------------- /reid/data/__pycache__/sampler.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/data/__pycache__/sampler.cpython-36.pyc -------------------------------------------------------------------------------- /reid/data/__pycache__/transforms.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/data/__pycache__/transforms.cpython-36.pyc -------------------------------------------------------------------------------- /reid/data/dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/data/dataloader.py -------------------------------------------------------------------------------- /reid/data/preprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/data/preprocessor.py -------------------------------------------------------------------------------- /reid/data/sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/data/sampler.py -------------------------------------------------------------------------------- /reid/data/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/data/transforms.py -------------------------------------------------------------------------------- /reid/datasets/.market1501.py.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/datasets/.market1501.py.swp -------------------------------------------------------------------------------- /reid/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/datasets/__init__.py -------------------------------------------------------------------------------- /reid/datasets/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/datasets/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /reid/datasets/__pycache__/cuhk03.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/datasets/__pycache__/cuhk03.cpython-36.pyc -------------------------------------------------------------------------------- /reid/datasets/__pycache__/dataset.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/datasets/__pycache__/dataset.cpython-36.pyc -------------------------------------------------------------------------------- /reid/datasets/__pycache__/dukemtmc.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/datasets/__pycache__/dukemtmc.cpython-36.pyc -------------------------------------------------------------------------------- /reid/datasets/__pycache__/market1501.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/datasets/__pycache__/market1501.cpython-36.pyc -------------------------------------------------------------------------------- /reid/datasets/cuhk03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/datasets/cuhk03.py -------------------------------------------------------------------------------- /reid/datasets/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/datasets/dataset.py -------------------------------------------------------------------------------- /reid/datasets/dukemtmc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/datasets/dukemtmc.py -------------------------------------------------------------------------------- /reid/datasets/market1501.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/datasets/market1501.py -------------------------------------------------------------------------------- /reid/evaluator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/evaluator/__init__.py -------------------------------------------------------------------------------- /reid/evaluator/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/evaluator/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /reid/evaluator/__pycache__/binaryevaluator.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/evaluator/__pycache__/binaryevaluator.cpython-36.pyc -------------------------------------------------------------------------------- /reid/evaluator/__pycache__/classification.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/evaluator/__pycache__/classification.cpython-36.pyc -------------------------------------------------------------------------------- /reid/evaluator/__pycache__/crfevaluator.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/evaluator/__pycache__/crfevaluator.cpython-36.pyc -------------------------------------------------------------------------------- /reid/evaluator/__pycache__/evaluators.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/evaluator/__pycache__/evaluators.cpython-36.pyc -------------------------------------------------------------------------------- /reid/evaluator/__pycache__/msevaluator.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/evaluator/__pycache__/msevaluator.cpython-36.pyc -------------------------------------------------------------------------------- /reid/evaluator/__pycache__/partialcrfevaluator.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/evaluator/__pycache__/partialcrfevaluator.cpython-36.pyc -------------------------------------------------------------------------------- /reid/evaluator/__pycache__/ranking.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/evaluator/__pycache__/ranking.cpython-36.pyc -------------------------------------------------------------------------------- /reid/evaluator/__pycache__/verifievaluator.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/evaluator/__pycache__/verifievaluator.cpython-36.pyc -------------------------------------------------------------------------------- /reid/evaluator/binaryevaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/evaluator/binaryevaluator.py -------------------------------------------------------------------------------- /reid/evaluator/classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/evaluator/classification.py -------------------------------------------------------------------------------- /reid/evaluator/crfevaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/evaluator/crfevaluator.py -------------------------------------------------------------------------------- /reid/evaluator/evaluators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/evaluator/evaluators.py -------------------------------------------------------------------------------- /reid/evaluator/msevaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/evaluator/msevaluator.py -------------------------------------------------------------------------------- /reid/evaluator/partialcrfevaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/evaluator/partialcrfevaluator.py -------------------------------------------------------------------------------- /reid/evaluator/ranking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/evaluator/ranking.py -------------------------------------------------------------------------------- /reid/evaluator/verifievaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/evaluator/verifievaluator.py -------------------------------------------------------------------------------- /reid/feature_extraction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/feature_extraction/__init__.py -------------------------------------------------------------------------------- /reid/feature_extraction/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/feature_extraction/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /reid/feature_extraction/__pycache__/cnn.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/feature_extraction/__pycache__/cnn.cpython-36.pyc -------------------------------------------------------------------------------- /reid/feature_extraction/__pycache__/database.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/feature_extraction/__pycache__/database.cpython-36.pyc -------------------------------------------------------------------------------- /reid/feature_extraction/cnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/feature_extraction/cnn.py -------------------------------------------------------------------------------- /reid/feature_extraction/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/feature_extraction/database.py -------------------------------------------------------------------------------- /reid/loss/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/loss/__init__.py -------------------------------------------------------------------------------- /reid/loss/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/loss/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /reid/loss/__pycache__/crf_loss.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/loss/__pycache__/crf_loss.cpython-36.pyc -------------------------------------------------------------------------------- /reid/loss/__pycache__/mul_oimloss.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/loss/__pycache__/mul_oimloss.cpython-36.pyc -------------------------------------------------------------------------------- /reid/loss/__pycache__/mul_pairloss.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/loss/__pycache__/mul_pairloss.cpython-36.pyc -------------------------------------------------------------------------------- /reid/loss/__pycache__/oim_loss.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/loss/__pycache__/oim_loss.cpython-36.pyc -------------------------------------------------------------------------------- /reid/loss/__pycache__/pairloss.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/loss/__pycache__/pairloss.cpython-36.pyc -------------------------------------------------------------------------------- /reid/loss/__pycache__/pairwise.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/loss/__pycache__/pairwise.cpython-36.pyc -------------------------------------------------------------------------------- /reid/loss/__pycache__/triplet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/loss/__pycache__/triplet.cpython-36.pyc -------------------------------------------------------------------------------- /reid/loss/crf_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/loss/crf_loss.py -------------------------------------------------------------------------------- /reid/loss/mul_oimloss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/loss/mul_oimloss.py -------------------------------------------------------------------------------- /reid/loss/mul_pairloss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/loss/mul_pairloss.py -------------------------------------------------------------------------------- /reid/loss/oim_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/loss/oim_loss.py -------------------------------------------------------------------------------- /reid/loss/pairloss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/loss/pairloss.py -------------------------------------------------------------------------------- /reid/loss/pairwise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/loss/pairwise.py -------------------------------------------------------------------------------- /reid/loss/triplet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/loss/triplet.py -------------------------------------------------------------------------------- /reid/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/models/__init__.py -------------------------------------------------------------------------------- /reid/models/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/models/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /reid/models/__pycache__/classifer.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/models/__pycache__/classifer.cpython-36.pyc -------------------------------------------------------------------------------- /reid/models/__pycache__/crf_mf.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/models/__pycache__/crf_mf.cpython-36.pyc -------------------------------------------------------------------------------- /reid/models/__pycache__/inception.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/models/__pycache__/inception.cpython-36.pyc -------------------------------------------------------------------------------- /reid/models/__pycache__/mulclassifier.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/models/__pycache__/mulclassifier.cpython-36.pyc -------------------------------------------------------------------------------- /reid/models/__pycache__/mulcrf_mf.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/models/__pycache__/mulcrf_mf.cpython-36.pyc -------------------------------------------------------------------------------- /reid/models/__pycache__/resfpnnet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/models/__pycache__/resfpnnet.cpython-36.pyc -------------------------------------------------------------------------------- /reid/models/__pycache__/resnet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/models/__pycache__/resnet.cpython-36.pyc -------------------------------------------------------------------------------- /reid/models/__pycache__/simscores.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/models/__pycache__/simscores.cpython-36.pyc -------------------------------------------------------------------------------- /reid/models/classifer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/models/classifer.py -------------------------------------------------------------------------------- /reid/models/crf_mf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/models/crf_mf.py -------------------------------------------------------------------------------- /reid/models/inception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/models/inception.py -------------------------------------------------------------------------------- /reid/models/mulclassifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/models/mulclassifier.py -------------------------------------------------------------------------------- /reid/models/mulcrf_mf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/models/mulcrf_mf.py -------------------------------------------------------------------------------- /reid/models/resfpnnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/models/resfpnnet.py -------------------------------------------------------------------------------- /reid/models/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/models/resnet.py -------------------------------------------------------------------------------- /reid/models/simscores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/models/simscores.py -------------------------------------------------------------------------------- /reid/tmux: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /reid/train/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/train/__init__.py -------------------------------------------------------------------------------- /reid/train/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/train/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /reid/train/__pycache__/trainers.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/train/__pycache__/trainers.cpython-36.pyc -------------------------------------------------------------------------------- /reid/train/trainers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/train/trainers.py -------------------------------------------------------------------------------- /reid/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/utils/__init__.py -------------------------------------------------------------------------------- /reid/utils/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/utils/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /reid/utils/__pycache__/logging.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/utils/__pycache__/logging.cpython-36.pyc -------------------------------------------------------------------------------- /reid/utils/__pycache__/meters.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/utils/__pycache__/meters.cpython-36.pyc -------------------------------------------------------------------------------- /reid/utils/__pycache__/osutils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/utils/__pycache__/osutils.cpython-36.pyc -------------------------------------------------------------------------------- /reid/utils/__pycache__/serialization.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/utils/__pycache__/serialization.cpython-36.pyc -------------------------------------------------------------------------------- /reid/utils/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/utils/logging.py -------------------------------------------------------------------------------- /reid/utils/meters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/utils/meters.py -------------------------------------------------------------------------------- /reid/utils/osutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/utils/osutils.py -------------------------------------------------------------------------------- /reid/utils/serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/reid/utils/serialization.py -------------------------------------------------------------------------------- /standard_batch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/standard_batch -------------------------------------------------------------------------------- /standard_batch_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapengchen123/crf_affinity/HEAD/standard_batch_2 --------------------------------------------------------------------------------