├── README.md ├── VD_project.py ├── data ├── __pycache__ │ ├── dataloader.cpython-36.pyc │ ├── dataloader.cpython-37.pyc │ ├── dataloader.cpython-38.pyc │ ├── dataset.cpython-36.pyc │ ├── dataset.cpython-37.pyc │ ├── dataset.cpython-38.pyc │ ├── random_erasing.cpython-36.pyc │ ├── random_erasing.cpython-37.pyc │ └── random_erasing.cpython-38.pyc ├── dataloader.py └── dataset.py ├── loss ├── Id_loss.py ├── RankingLoss.py ├── __pycache__ │ ├── Id_loss.cpython-36.pyc │ ├── Id_loss.cpython-37.pyc │ ├── Id_loss.cpython-38.pyc │ ├── RankingLoss.cpython-36.pyc │ ├── RankingLoss.cpython-37.pyc │ ├── RankingLoss.cpython-38.pyc │ └── loss.cpython-36.pyc └── loss.py ├── loss_TransREID ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── arcface.cpython-38.pyc │ ├── center_loss.cpython-38.pyc │ ├── make_loss.cpython-38.pyc │ ├── metric_learning.cpython-38.pyc │ ├── softmax_loss.cpython-38.pyc │ └── triplet_loss.cpython-38.pyc ├── arcface.py ├── center_loss.py ├── make_loss.py ├── metric_learning.py ├── softmax_loss.py └── triplet_loss.py ├── model ├── DETR_model.py ├── __pycache__ │ ├── DETR_model.cpython-37.pyc │ ├── DETR_model.cpython-38.pyc │ ├── model.cpython-36.pyc │ ├── model.cpython-37.pyc │ ├── model.cpython-38.pyc │ ├── text_feature_extract.cpython-36.pyc │ ├── text_feature_extract.cpython-37.pyc │ └── text_feature_extract.cpython-38.pyc ├── model.py └── text_feature_extract.py ├── model_TransREID ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-38.pyc │ └── make_model.cpython-38.pyc ├── backbones │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── resnet.cpython-38.pyc │ │ └── vit_pytorch.cpython-38.pyc │ ├── resnet.py │ └── vit_pytorch.py └── make_model.py ├── models ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── __init__.cpython-38.pyc │ ├── transformer.cpython-37.pyc │ └── transformer.cpython-38.pyc ├── backbone.py ├── matcher.py ├── position_encoding.py ├── segmentation.py └── transformer.py ├── option ├── __pycache__ │ ├── options.cpython-36.pyc │ ├── options.cpython-37.pyc │ └── options.cpython-38.pyc └── options.py ├── processed_data_singledata_CUHK.py ├── processed_data_singledata_ICFG.py ├── random_erasing.py ├── read_json.py ├── reidtools.py ├── test_ICFG_my.py ├── test_during_train.py ├── train_mydecoder_pixelvit_txtimg_3_bert.py ├── utils ├── __pycache__ │ ├── random_erasing.cpython-38.pyc │ ├── read_write_data.cpython-36.pyc │ ├── read_write_data.cpython-37.pyc │ └── read_write_data.cpython-38.pyc └── read_write_data.py ├── utils_RVN ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── directory.cpython-38.pyc │ └── metric.cpython-38.pyc ├── directory.py ├── metric.py └── visualize.py ├── vit_pytorch ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── __init__.cpython-38.pyc │ ├── vit_pytorch.cpython-37.pyc │ └── vit_pytorch.cpython-38.pyc ├── distill.py ├── efficient.py ├── mpp.py ├── t2t.py ├── train_2module_guide.py └── vit_pytorch.py └── vit_pytorch_TransREID ├── __init__.py ├── distill.py ├── efficient.py ├── mpp.py ├── t2t.py └── vit_pytorch.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/README.md -------------------------------------------------------------------------------- /VD_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/VD_project.py -------------------------------------------------------------------------------- /data/__pycache__/dataloader.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/data/__pycache__/dataloader.cpython-36.pyc -------------------------------------------------------------------------------- /data/__pycache__/dataloader.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/data/__pycache__/dataloader.cpython-37.pyc -------------------------------------------------------------------------------- /data/__pycache__/dataloader.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/data/__pycache__/dataloader.cpython-38.pyc -------------------------------------------------------------------------------- /data/__pycache__/dataset.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/data/__pycache__/dataset.cpython-36.pyc -------------------------------------------------------------------------------- /data/__pycache__/dataset.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/data/__pycache__/dataset.cpython-37.pyc -------------------------------------------------------------------------------- /data/__pycache__/dataset.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/data/__pycache__/dataset.cpython-38.pyc -------------------------------------------------------------------------------- /data/__pycache__/random_erasing.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/data/__pycache__/random_erasing.cpython-36.pyc -------------------------------------------------------------------------------- /data/__pycache__/random_erasing.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/data/__pycache__/random_erasing.cpython-37.pyc -------------------------------------------------------------------------------- /data/__pycache__/random_erasing.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/data/__pycache__/random_erasing.cpython-38.pyc -------------------------------------------------------------------------------- /data/dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/data/dataloader.py -------------------------------------------------------------------------------- /data/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/data/dataset.py -------------------------------------------------------------------------------- /loss/Id_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/loss/Id_loss.py -------------------------------------------------------------------------------- /loss/RankingLoss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/loss/RankingLoss.py -------------------------------------------------------------------------------- /loss/__pycache__/Id_loss.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/loss/__pycache__/Id_loss.cpython-36.pyc -------------------------------------------------------------------------------- /loss/__pycache__/Id_loss.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/loss/__pycache__/Id_loss.cpython-37.pyc -------------------------------------------------------------------------------- /loss/__pycache__/Id_loss.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/loss/__pycache__/Id_loss.cpython-38.pyc -------------------------------------------------------------------------------- /loss/__pycache__/RankingLoss.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/loss/__pycache__/RankingLoss.cpython-36.pyc -------------------------------------------------------------------------------- /loss/__pycache__/RankingLoss.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/loss/__pycache__/RankingLoss.cpython-37.pyc -------------------------------------------------------------------------------- /loss/__pycache__/RankingLoss.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/loss/__pycache__/RankingLoss.cpython-38.pyc -------------------------------------------------------------------------------- /loss/__pycache__/loss.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/loss/__pycache__/loss.cpython-36.pyc -------------------------------------------------------------------------------- /loss/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/loss/loss.py -------------------------------------------------------------------------------- /loss_TransREID/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/loss_TransREID/__init__.py -------------------------------------------------------------------------------- /loss_TransREID/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/loss_TransREID/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /loss_TransREID/__pycache__/arcface.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/loss_TransREID/__pycache__/arcface.cpython-38.pyc -------------------------------------------------------------------------------- /loss_TransREID/__pycache__/center_loss.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/loss_TransREID/__pycache__/center_loss.cpython-38.pyc -------------------------------------------------------------------------------- /loss_TransREID/__pycache__/make_loss.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/loss_TransREID/__pycache__/make_loss.cpython-38.pyc -------------------------------------------------------------------------------- /loss_TransREID/__pycache__/metric_learning.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/loss_TransREID/__pycache__/metric_learning.cpython-38.pyc -------------------------------------------------------------------------------- /loss_TransREID/__pycache__/softmax_loss.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/loss_TransREID/__pycache__/softmax_loss.cpython-38.pyc -------------------------------------------------------------------------------- /loss_TransREID/__pycache__/triplet_loss.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/loss_TransREID/__pycache__/triplet_loss.cpython-38.pyc -------------------------------------------------------------------------------- /loss_TransREID/arcface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/loss_TransREID/arcface.py -------------------------------------------------------------------------------- /loss_TransREID/center_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/loss_TransREID/center_loss.py -------------------------------------------------------------------------------- /loss_TransREID/make_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/loss_TransREID/make_loss.py -------------------------------------------------------------------------------- /loss_TransREID/metric_learning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/loss_TransREID/metric_learning.py -------------------------------------------------------------------------------- /loss_TransREID/softmax_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/loss_TransREID/softmax_loss.py -------------------------------------------------------------------------------- /loss_TransREID/triplet_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/loss_TransREID/triplet_loss.py -------------------------------------------------------------------------------- /model/DETR_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/model/DETR_model.py -------------------------------------------------------------------------------- /model/__pycache__/DETR_model.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/model/__pycache__/DETR_model.cpython-37.pyc -------------------------------------------------------------------------------- /model/__pycache__/DETR_model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/model/__pycache__/DETR_model.cpython-38.pyc -------------------------------------------------------------------------------- /model/__pycache__/model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/model/__pycache__/model.cpython-36.pyc -------------------------------------------------------------------------------- /model/__pycache__/model.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/model/__pycache__/model.cpython-37.pyc -------------------------------------------------------------------------------- /model/__pycache__/model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/model/__pycache__/model.cpython-38.pyc -------------------------------------------------------------------------------- /model/__pycache__/text_feature_extract.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/model/__pycache__/text_feature_extract.cpython-36.pyc -------------------------------------------------------------------------------- /model/__pycache__/text_feature_extract.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/model/__pycache__/text_feature_extract.cpython-37.pyc -------------------------------------------------------------------------------- /model/__pycache__/text_feature_extract.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/model/__pycache__/text_feature_extract.cpython-38.pyc -------------------------------------------------------------------------------- /model/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/model/model.py -------------------------------------------------------------------------------- /model/text_feature_extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/model/text_feature_extract.py -------------------------------------------------------------------------------- /model_TransREID/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/model_TransREID/__init__.py -------------------------------------------------------------------------------- /model_TransREID/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/model_TransREID/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /model_TransREID/__pycache__/make_model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/model_TransREID/__pycache__/make_model.cpython-38.pyc -------------------------------------------------------------------------------- /model_TransREID/backbones/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model_TransREID/backbones/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/model_TransREID/backbones/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /model_TransREID/backbones/__pycache__/resnet.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/model_TransREID/backbones/__pycache__/resnet.cpython-38.pyc -------------------------------------------------------------------------------- /model_TransREID/backbones/__pycache__/vit_pytorch.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/model_TransREID/backbones/__pycache__/vit_pytorch.cpython-38.pyc -------------------------------------------------------------------------------- /model_TransREID/backbones/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/model_TransREID/backbones/resnet.py -------------------------------------------------------------------------------- /model_TransREID/backbones/vit_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/model_TransREID/backbones/vit_pytorch.py -------------------------------------------------------------------------------- /model_TransREID/make_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/model_TransREID/make_model.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/models/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/models/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/transformer.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/models/__pycache__/transformer.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/transformer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/models/__pycache__/transformer.cpython-38.pyc -------------------------------------------------------------------------------- /models/backbone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/models/backbone.py -------------------------------------------------------------------------------- /models/matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/models/matcher.py -------------------------------------------------------------------------------- /models/position_encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/models/position_encoding.py -------------------------------------------------------------------------------- /models/segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/models/segmentation.py -------------------------------------------------------------------------------- /models/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/models/transformer.py -------------------------------------------------------------------------------- /option/__pycache__/options.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/option/__pycache__/options.cpython-36.pyc -------------------------------------------------------------------------------- /option/__pycache__/options.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/option/__pycache__/options.cpython-37.pyc -------------------------------------------------------------------------------- /option/__pycache__/options.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/option/__pycache__/options.cpython-38.pyc -------------------------------------------------------------------------------- /option/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/option/options.py -------------------------------------------------------------------------------- /processed_data_singledata_CUHK.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/processed_data_singledata_CUHK.py -------------------------------------------------------------------------------- /processed_data_singledata_ICFG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/processed_data_singledata_ICFG.py -------------------------------------------------------------------------------- /random_erasing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/random_erasing.py -------------------------------------------------------------------------------- /read_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/read_json.py -------------------------------------------------------------------------------- /reidtools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/reidtools.py -------------------------------------------------------------------------------- /test_ICFG_my.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/test_ICFG_my.py -------------------------------------------------------------------------------- /test_during_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/test_during_train.py -------------------------------------------------------------------------------- /train_mydecoder_pixelvit_txtimg_3_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/train_mydecoder_pixelvit_txtimg_3_bert.py -------------------------------------------------------------------------------- /utils/__pycache__/random_erasing.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/utils/__pycache__/random_erasing.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/read_write_data.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/utils/__pycache__/read_write_data.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/read_write_data.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/utils/__pycache__/read_write_data.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/read_write_data.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/utils/__pycache__/read_write_data.cpython-38.pyc -------------------------------------------------------------------------------- /utils/read_write_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/utils/read_write_data.py -------------------------------------------------------------------------------- /utils_RVN/__init__.py: -------------------------------------------------------------------------------- 1 | # encoding: utf-8 2 | 3 | 4 | from .directory import write_json, makedir 5 | -------------------------------------------------------------------------------- /utils_RVN/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/utils_RVN/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /utils_RVN/__pycache__/directory.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/utils_RVN/__pycache__/directory.cpython-38.pyc -------------------------------------------------------------------------------- /utils_RVN/__pycache__/metric.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/utils_RVN/__pycache__/metric.cpython-38.pyc -------------------------------------------------------------------------------- /utils_RVN/directory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/utils_RVN/directory.py -------------------------------------------------------------------------------- /utils_RVN/metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/utils_RVN/metric.py -------------------------------------------------------------------------------- /utils_RVN/visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/utils_RVN/visualize.py -------------------------------------------------------------------------------- /vit_pytorch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/vit_pytorch/__init__.py -------------------------------------------------------------------------------- /vit_pytorch/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/vit_pytorch/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /vit_pytorch/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/vit_pytorch/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /vit_pytorch/__pycache__/vit_pytorch.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/vit_pytorch/__pycache__/vit_pytorch.cpython-37.pyc -------------------------------------------------------------------------------- /vit_pytorch/__pycache__/vit_pytorch.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/vit_pytorch/__pycache__/vit_pytorch.cpython-38.pyc -------------------------------------------------------------------------------- /vit_pytorch/distill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/vit_pytorch/distill.py -------------------------------------------------------------------------------- /vit_pytorch/efficient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/vit_pytorch/efficient.py -------------------------------------------------------------------------------- /vit_pytorch/mpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/vit_pytorch/mpp.py -------------------------------------------------------------------------------- /vit_pytorch/t2t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/vit_pytorch/t2t.py -------------------------------------------------------------------------------- /vit_pytorch/train_2module_guide.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/vit_pytorch/train_2module_guide.py -------------------------------------------------------------------------------- /vit_pytorch/vit_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/vit_pytorch/vit_pytorch.py -------------------------------------------------------------------------------- /vit_pytorch_TransREID/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/vit_pytorch_TransREID/__init__.py -------------------------------------------------------------------------------- /vit_pytorch_TransREID/distill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/vit_pytorch_TransREID/distill.py -------------------------------------------------------------------------------- /vit_pytorch_TransREID/efficient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/vit_pytorch_TransREID/efficient.py -------------------------------------------------------------------------------- /vit_pytorch_TransREID/mpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/vit_pytorch_TransREID/mpp.py -------------------------------------------------------------------------------- /vit_pytorch_TransREID/t2t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/vit_pytorch_TransREID/t2t.py -------------------------------------------------------------------------------- /vit_pytorch_TransREID/vit_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyinShao-H/LGUR/HEAD/vit_pytorch_TransREID/vit_pytorch.py --------------------------------------------------------------------------------