├── .idea ├── .gitignore ├── deployment.xml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── myreid_project.iml └── vcs.xml ├── 2021-07-17未命名文件.md ├── README.md ├── Readme_Images ├── Sketch0.PNG ├── example.PNG ├── shape0.PNG └── shape1.PNG ├── image_baseline ├── README.md ├── __pycache__ │ └── train.cpython-38.pyc ├── datasets │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── build.cpython-38.pyc │ │ ├── dataset.cpython-38.pyc │ │ ├── sampler.cpython-38.pyc │ │ └── transforms.cpython-38.pyc │ ├── build.py │ ├── dataset.py │ ├── make_PData.py │ ├── sampler.py │ └── transforms.py ├── main.py ├── models │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── backbone.cpython-38.pyc │ │ ├── layers.cpython-38.pyc │ │ └── model.cpython-38.pyc │ ├── backbone.py │ ├── layers.py │ └── model.py ├── results │ └── result.log ├── train.py └── utils │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── loss.cpython-38.pyc │ ├── metric.cpython-38.pyc │ ├── optimizer.cpython-38.pyc │ ├── scheduler.cpython-38.pyc │ └── utils.cpython-38.pyc │ ├── loss.py │ ├── metric.py │ ├── optimizer.py │ ├── scheduler.py │ └── utils.py ├── images └── 0.PNG ├── projects ├── AFA │ ├── loss.py │ └── model.py ├── Appearance │ ├── README.md │ └── model.py ├── Global-Local-Temporal │ ├── README.md │ └── model.py ├── MG_RAFA │ ├── README.md │ ├── backbone.py │ ├── data.py │ ├── main.py │ └── utils.py ├── RMGL │ ├── README.md │ └── model.py ├── SNR │ ├── README.md │ └── model.py ├── Shape │ ├── README.md │ └── model.py ├── Sketch │ ├── README.md │ ├── __pycache__ │ │ └── backbone.cpython-38.pyc │ ├── dataset.py │ ├── main.py │ ├── make_data.py │ ├── models │ │ ├── backbone.py │ │ ├── layers.py │ │ └── models.py │ ├── train.py │ └── utils │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── loss.cpython-38.pyc │ │ ├── metric.cpython-38.pyc │ │ ├── optimizer.cpython-38.pyc │ │ ├── scheduler.cpython-38.pyc │ │ └── utils.cpython-38.pyc │ │ ├── loss.py │ │ ├── metric.py │ │ ├── optimizer.py │ │ ├── scheduler.py │ │ └── utils.py └── intra-clip │ ├── README.md │ ├── dataset.py │ └── model.py └── video_baseline ├── README.md ├── datasets ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── build.cpython-38.pyc │ ├── dataset.cpython-38.pyc │ ├── sampler.cpython-38.pyc │ └── transforms.cpython-38.pyc ├── create_MARS_database.py └── dataset.py ├── main.py ├── models ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── backbone.cpython-38.pyc │ ├── layers.cpython-38.pyc │ └── model.cpython-38.pyc └── model.py ├── results └── result.log ├── train.py └── utils ├── __init__.py ├── __pycache__ ├── __init__.cpython-38.pyc ├── loss.cpython-38.pyc ├── metric.cpython-38.pyc ├── optimizer.cpython-38.pyc ├── scheduler.cpython-38.pyc └── utils.cpython-38.pyc ├── loss.py ├── metric.py ├── optimizer.py └── scheduler.py /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml 3 | -------------------------------------------------------------------------------- /.idea/deployment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/.idea/deployment.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/myreid_project.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/.idea/myreid_project.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /2021-07-17未命名文件.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/2021-07-17未命名文件.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/README.md -------------------------------------------------------------------------------- /Readme_Images/Sketch0.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/Readme_Images/Sketch0.PNG -------------------------------------------------------------------------------- /Readme_Images/example.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/Readme_Images/example.PNG -------------------------------------------------------------------------------- /Readme_Images/shape0.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/Readme_Images/shape0.PNG -------------------------------------------------------------------------------- /Readme_Images/shape1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/Readme_Images/shape1.PNG -------------------------------------------------------------------------------- /image_baseline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/image_baseline/README.md -------------------------------------------------------------------------------- /image_baseline/__pycache__/train.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/image_baseline/__pycache__/train.cpython-38.pyc -------------------------------------------------------------------------------- /image_baseline/datasets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /image_baseline/datasets/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/image_baseline/datasets/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /image_baseline/datasets/__pycache__/build.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/image_baseline/datasets/__pycache__/build.cpython-38.pyc -------------------------------------------------------------------------------- /image_baseline/datasets/__pycache__/dataset.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/image_baseline/datasets/__pycache__/dataset.cpython-38.pyc -------------------------------------------------------------------------------- /image_baseline/datasets/__pycache__/sampler.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/image_baseline/datasets/__pycache__/sampler.cpython-38.pyc -------------------------------------------------------------------------------- /image_baseline/datasets/__pycache__/transforms.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/image_baseline/datasets/__pycache__/transforms.cpython-38.pyc -------------------------------------------------------------------------------- /image_baseline/datasets/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/image_baseline/datasets/build.py -------------------------------------------------------------------------------- /image_baseline/datasets/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/image_baseline/datasets/dataset.py -------------------------------------------------------------------------------- /image_baseline/datasets/make_PData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/image_baseline/datasets/make_PData.py -------------------------------------------------------------------------------- /image_baseline/datasets/sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/image_baseline/datasets/sampler.py -------------------------------------------------------------------------------- /image_baseline/datasets/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/image_baseline/datasets/transforms.py -------------------------------------------------------------------------------- /image_baseline/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/image_baseline/main.py -------------------------------------------------------------------------------- /image_baseline/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /image_baseline/models/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/image_baseline/models/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /image_baseline/models/__pycache__/backbone.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/image_baseline/models/__pycache__/backbone.cpython-38.pyc -------------------------------------------------------------------------------- /image_baseline/models/__pycache__/layers.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/image_baseline/models/__pycache__/layers.cpython-38.pyc -------------------------------------------------------------------------------- /image_baseline/models/__pycache__/model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/image_baseline/models/__pycache__/model.cpython-38.pyc -------------------------------------------------------------------------------- /image_baseline/models/backbone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/image_baseline/models/backbone.py -------------------------------------------------------------------------------- /image_baseline/models/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/image_baseline/models/layers.py -------------------------------------------------------------------------------- /image_baseline/models/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/image_baseline/models/model.py -------------------------------------------------------------------------------- /image_baseline/results/result.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /image_baseline/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/image_baseline/train.py -------------------------------------------------------------------------------- /image_baseline/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /image_baseline/utils/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/image_baseline/utils/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /image_baseline/utils/__pycache__/loss.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/image_baseline/utils/__pycache__/loss.cpython-38.pyc -------------------------------------------------------------------------------- /image_baseline/utils/__pycache__/metric.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/image_baseline/utils/__pycache__/metric.cpython-38.pyc -------------------------------------------------------------------------------- /image_baseline/utils/__pycache__/optimizer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/image_baseline/utils/__pycache__/optimizer.cpython-38.pyc -------------------------------------------------------------------------------- /image_baseline/utils/__pycache__/scheduler.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/image_baseline/utils/__pycache__/scheduler.cpython-38.pyc -------------------------------------------------------------------------------- /image_baseline/utils/__pycache__/utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/image_baseline/utils/__pycache__/utils.cpython-38.pyc -------------------------------------------------------------------------------- /image_baseline/utils/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/image_baseline/utils/loss.py -------------------------------------------------------------------------------- /image_baseline/utils/metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/image_baseline/utils/metric.py -------------------------------------------------------------------------------- /image_baseline/utils/optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/image_baseline/utils/optimizer.py -------------------------------------------------------------------------------- /image_baseline/utils/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/image_baseline/utils/scheduler.py -------------------------------------------------------------------------------- /image_baseline/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/image_baseline/utils/utils.py -------------------------------------------------------------------------------- /images/0.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/images/0.PNG -------------------------------------------------------------------------------- /projects/AFA/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/projects/AFA/loss.py -------------------------------------------------------------------------------- /projects/AFA/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/projects/AFA/model.py -------------------------------------------------------------------------------- /projects/Appearance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/projects/Appearance/README.md -------------------------------------------------------------------------------- /projects/Appearance/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/projects/Appearance/model.py -------------------------------------------------------------------------------- /projects/Global-Local-Temporal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/projects/Global-Local-Temporal/README.md -------------------------------------------------------------------------------- /projects/Global-Local-Temporal/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/projects/Global-Local-Temporal/model.py -------------------------------------------------------------------------------- /projects/MG_RAFA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/projects/MG_RAFA/README.md -------------------------------------------------------------------------------- /projects/MG_RAFA/backbone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/projects/MG_RAFA/backbone.py -------------------------------------------------------------------------------- /projects/MG_RAFA/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/projects/MG_RAFA/data.py -------------------------------------------------------------------------------- /projects/MG_RAFA/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/projects/MG_RAFA/main.py -------------------------------------------------------------------------------- /projects/MG_RAFA/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/projects/MG_RAFA/utils.py -------------------------------------------------------------------------------- /projects/RMGL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/projects/RMGL/README.md -------------------------------------------------------------------------------- /projects/RMGL/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/projects/RMGL/model.py -------------------------------------------------------------------------------- /projects/SNR/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/projects/SNR/README.md -------------------------------------------------------------------------------- /projects/SNR/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/projects/SNR/model.py -------------------------------------------------------------------------------- /projects/Shape/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/projects/Shape/README.md -------------------------------------------------------------------------------- /projects/Shape/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/projects/Shape/model.py -------------------------------------------------------------------------------- /projects/Sketch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/projects/Sketch/README.md -------------------------------------------------------------------------------- /projects/Sketch/__pycache__/backbone.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/projects/Sketch/__pycache__/backbone.cpython-38.pyc -------------------------------------------------------------------------------- /projects/Sketch/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/projects/Sketch/dataset.py -------------------------------------------------------------------------------- /projects/Sketch/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/projects/Sketch/main.py -------------------------------------------------------------------------------- /projects/Sketch/make_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/projects/Sketch/make_data.py -------------------------------------------------------------------------------- /projects/Sketch/models/backbone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/projects/Sketch/models/backbone.py -------------------------------------------------------------------------------- /projects/Sketch/models/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/projects/Sketch/models/layers.py -------------------------------------------------------------------------------- /projects/Sketch/models/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/projects/Sketch/models/models.py -------------------------------------------------------------------------------- /projects/Sketch/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/projects/Sketch/train.py -------------------------------------------------------------------------------- /projects/Sketch/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/Sketch/utils/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/projects/Sketch/utils/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /projects/Sketch/utils/__pycache__/loss.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/projects/Sketch/utils/__pycache__/loss.cpython-38.pyc -------------------------------------------------------------------------------- /projects/Sketch/utils/__pycache__/metric.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/projects/Sketch/utils/__pycache__/metric.cpython-38.pyc -------------------------------------------------------------------------------- /projects/Sketch/utils/__pycache__/optimizer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/projects/Sketch/utils/__pycache__/optimizer.cpython-38.pyc -------------------------------------------------------------------------------- /projects/Sketch/utils/__pycache__/scheduler.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/projects/Sketch/utils/__pycache__/scheduler.cpython-38.pyc -------------------------------------------------------------------------------- /projects/Sketch/utils/__pycache__/utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/projects/Sketch/utils/__pycache__/utils.cpython-38.pyc -------------------------------------------------------------------------------- /projects/Sketch/utils/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/projects/Sketch/utils/loss.py -------------------------------------------------------------------------------- /projects/Sketch/utils/metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/projects/Sketch/utils/metric.py -------------------------------------------------------------------------------- /projects/Sketch/utils/optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/projects/Sketch/utils/optimizer.py -------------------------------------------------------------------------------- /projects/Sketch/utils/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/projects/Sketch/utils/scheduler.py -------------------------------------------------------------------------------- /projects/Sketch/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/projects/Sketch/utils/utils.py -------------------------------------------------------------------------------- /projects/intra-clip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/projects/intra-clip/README.md -------------------------------------------------------------------------------- /projects/intra-clip/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/projects/intra-clip/dataset.py -------------------------------------------------------------------------------- /projects/intra-clip/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/projects/intra-clip/model.py -------------------------------------------------------------------------------- /video_baseline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/video_baseline/README.md -------------------------------------------------------------------------------- /video_baseline/datasets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /video_baseline/datasets/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/video_baseline/datasets/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /video_baseline/datasets/__pycache__/build.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/video_baseline/datasets/__pycache__/build.cpython-38.pyc -------------------------------------------------------------------------------- /video_baseline/datasets/__pycache__/dataset.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/video_baseline/datasets/__pycache__/dataset.cpython-38.pyc -------------------------------------------------------------------------------- /video_baseline/datasets/__pycache__/sampler.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/video_baseline/datasets/__pycache__/sampler.cpython-38.pyc -------------------------------------------------------------------------------- /video_baseline/datasets/__pycache__/transforms.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/video_baseline/datasets/__pycache__/transforms.cpython-38.pyc -------------------------------------------------------------------------------- /video_baseline/datasets/create_MARS_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/video_baseline/datasets/create_MARS_database.py -------------------------------------------------------------------------------- /video_baseline/datasets/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/video_baseline/datasets/dataset.py -------------------------------------------------------------------------------- /video_baseline/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/video_baseline/main.py -------------------------------------------------------------------------------- /video_baseline/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /video_baseline/models/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/video_baseline/models/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /video_baseline/models/__pycache__/backbone.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/video_baseline/models/__pycache__/backbone.cpython-38.pyc -------------------------------------------------------------------------------- /video_baseline/models/__pycache__/layers.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/video_baseline/models/__pycache__/layers.cpython-38.pyc -------------------------------------------------------------------------------- /video_baseline/models/__pycache__/model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/video_baseline/models/__pycache__/model.cpython-38.pyc -------------------------------------------------------------------------------- /video_baseline/models/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/video_baseline/models/model.py -------------------------------------------------------------------------------- /video_baseline/results/result.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /video_baseline/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/video_baseline/train.py -------------------------------------------------------------------------------- /video_baseline/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /video_baseline/utils/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/video_baseline/utils/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /video_baseline/utils/__pycache__/loss.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/video_baseline/utils/__pycache__/loss.cpython-38.pyc -------------------------------------------------------------------------------- /video_baseline/utils/__pycache__/metric.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/video_baseline/utils/__pycache__/metric.cpython-38.pyc -------------------------------------------------------------------------------- /video_baseline/utils/__pycache__/optimizer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/video_baseline/utils/__pycache__/optimizer.cpython-38.pyc -------------------------------------------------------------------------------- /video_baseline/utils/__pycache__/scheduler.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/video_baseline/utils/__pycache__/scheduler.cpython-38.pyc -------------------------------------------------------------------------------- /video_baseline/utils/__pycache__/utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/video_baseline/utils/__pycache__/utils.cpython-38.pyc -------------------------------------------------------------------------------- /video_baseline/utils/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/video_baseline/utils/loss.py -------------------------------------------------------------------------------- /video_baseline/utils/metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/video_baseline/utils/metric.py -------------------------------------------------------------------------------- /video_baseline/utils/optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/video_baseline/utils/optimizer.py -------------------------------------------------------------------------------- /video_baseline/utils/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshuofeng/MyReidProject/HEAD/video_baseline/utils/scheduler.py --------------------------------------------------------------------------------