├── .gitignore ├── README.md ├── config ├── config.yaml ├── config_BoT_VERIWILD.yaml ├── config_BoT_VehicleID.yaml ├── config_BoT_Veri776.yaml ├── config_VERIWILD.yaml └── config_VehicleID.yaml ├── data └── triplet_sampler.py ├── dataset └── VeRi │ ├── keypoint_orient_test.txt │ └── keypoint_orient_train.txt ├── loss └── losses.py ├── lr_scheduler └── sche_optim.py ├── main.py ├── metrics └── eval_reid.py ├── models └── models.py ├── processor.py ├── tensorboard_log.py ├── teste.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videturfortuna/vehicle_reid_itsc2023/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videturfortuna/vehicle_reid_itsc2023/HEAD/README.md -------------------------------------------------------------------------------- /config/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videturfortuna/vehicle_reid_itsc2023/HEAD/config/config.yaml -------------------------------------------------------------------------------- /config/config_BoT_VERIWILD.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videturfortuna/vehicle_reid_itsc2023/HEAD/config/config_BoT_VERIWILD.yaml -------------------------------------------------------------------------------- /config/config_BoT_VehicleID.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videturfortuna/vehicle_reid_itsc2023/HEAD/config/config_BoT_VehicleID.yaml -------------------------------------------------------------------------------- /config/config_BoT_Veri776.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videturfortuna/vehicle_reid_itsc2023/HEAD/config/config_BoT_Veri776.yaml -------------------------------------------------------------------------------- /config/config_VERIWILD.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videturfortuna/vehicle_reid_itsc2023/HEAD/config/config_VERIWILD.yaml -------------------------------------------------------------------------------- /config/config_VehicleID.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videturfortuna/vehicle_reid_itsc2023/HEAD/config/config_VehicleID.yaml -------------------------------------------------------------------------------- /data/triplet_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videturfortuna/vehicle_reid_itsc2023/HEAD/data/triplet_sampler.py -------------------------------------------------------------------------------- /dataset/VeRi/keypoint_orient_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videturfortuna/vehicle_reid_itsc2023/HEAD/dataset/VeRi/keypoint_orient_test.txt -------------------------------------------------------------------------------- /dataset/VeRi/keypoint_orient_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videturfortuna/vehicle_reid_itsc2023/HEAD/dataset/VeRi/keypoint_orient_train.txt -------------------------------------------------------------------------------- /loss/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videturfortuna/vehicle_reid_itsc2023/HEAD/loss/losses.py -------------------------------------------------------------------------------- /lr_scheduler/sche_optim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videturfortuna/vehicle_reid_itsc2023/HEAD/lr_scheduler/sche_optim.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videturfortuna/vehicle_reid_itsc2023/HEAD/main.py -------------------------------------------------------------------------------- /metrics/eval_reid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videturfortuna/vehicle_reid_itsc2023/HEAD/metrics/eval_reid.py -------------------------------------------------------------------------------- /models/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videturfortuna/vehicle_reid_itsc2023/HEAD/models/models.py -------------------------------------------------------------------------------- /processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videturfortuna/vehicle_reid_itsc2023/HEAD/processor.py -------------------------------------------------------------------------------- /tensorboard_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videturfortuna/vehicle_reid_itsc2023/HEAD/tensorboard_log.py -------------------------------------------------------------------------------- /teste.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videturfortuna/vehicle_reid_itsc2023/HEAD/teste.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videturfortuna/vehicle_reid_itsc2023/HEAD/utils.py --------------------------------------------------------------------------------