├── README.md ├── config ├── awa2.yaml ├── cub.yaml └── sun.yaml ├── data ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── __init__.cpython-37.pyc │ ├── build.cpython-36.pyc │ ├── build.cpython-37.pyc │ ├── test_dataset.cpython-36.pyc │ └── test_dataset.cpython-37.pyc ├── build.py ├── episode_dataset │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── __init__.cpython-37.pyc │ │ ├── dataset.cpython-36.pyc │ │ ├── dataset.cpython-37.pyc │ │ ├── samplers.cpython-36.pyc │ │ └── samplers.cpython-37.pyc │ ├── dataset.py │ └── samplers.py ├── random_dataset │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── __init__.cpython-37.pyc │ │ ├── dataset.cpython-36.pyc │ │ └── dataset.cpython-37.pyc │ └── dataset.py ├── test_dataset.py └── transforms │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── __init__.cpython-37.pyc │ ├── data_transform.cpython-36.pyc │ └── data_transform.cpython-37.pyc │ └── data_transform.py ├── extract_attribute_w2v_AWA2.py ├── extract_attribute_w2v_CUB.py ├── extract_attribute_w2v_SUN.py ├── framework.png ├── models ├── .DS_Store ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ └── __init__.cpython-37.pyc ├── config │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ └── defaults.cpython-36.pyc │ └── defaults.py ├── engine │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── __init__.cpython-37.pyc │ │ ├── inferencer.cpython-36.pyc │ │ ├── inferencer.cpython-37.pyc │ │ ├── trainer.cpython-36.pyc │ │ └── trainer.cpython-37.pyc │ ├── inferencer.py │ └── trainer.py ├── modeling │ ├── .DS_Store │ ├── PSVMAModel │ │ ├── PSVMANet.py │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── GEMNet.cpython-36.pyc │ │ │ ├── GEMNet.cpython-37.pyc │ │ │ ├── PSVMANet.cpython-36.pyc │ │ │ ├── PSVMANet.cpython-37.pyc │ │ │ ├── PSVMANet1.cpython-36.pyc │ │ │ ├── PSVMANet_737.cpython-36.pyc │ │ │ ├── PSVMANet_7378.cpython-36.pyc │ │ │ ├── PSVMANet_wait.cpython-36.pyc │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── pipeline.cpython-36.pyc │ │ │ └── pipeline.cpython-37.pyc │ │ └── pipeline.py │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── __init__.cpython-37.pyc │ │ ├── anchors.cpython-36.pyc │ │ ├── anchors.cpython-37.pyc │ │ ├── utils.cpython-36.pyc │ │ └── utils.cpython-37.pyc │ ├── backbone │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── resnet_features.cpython-36.pyc │ │ │ └── resnet_features.cpython-37.pyc │ │ └── resnet_features.py │ ├── backbone_vit │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── resnet_features.cpython-36.pyc │ │ │ └── vit_model.cpython-36.pyc │ │ └── vit_model.py │ └── utils.py ├── solver │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── __init__.cpython-37.pyc │ │ ├── build.cpython-36.pyc │ │ └── build.cpython-37.pyc │ └── build.py └── utils │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── __init__.cpython-37.pyc │ ├── comm.cpython-36.pyc │ ├── comm.cpython-37.pyc │ ├── utils.cpython-36.pyc │ └── utils.cpython-37.pyc │ ├── comm.py │ └── utils.py ├── test.py └── train.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/README.md -------------------------------------------------------------------------------- /config/awa2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/config/awa2.yaml -------------------------------------------------------------------------------- /config/cub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/config/cub.yaml -------------------------------------------------------------------------------- /config/sun.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/config/sun.yaml -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/data/__init__.py -------------------------------------------------------------------------------- /data/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/data/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /data/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/data/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /data/__pycache__/build.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/data/__pycache__/build.cpython-36.pyc -------------------------------------------------------------------------------- /data/__pycache__/build.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/data/__pycache__/build.cpython-37.pyc -------------------------------------------------------------------------------- /data/__pycache__/test_dataset.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/data/__pycache__/test_dataset.cpython-36.pyc -------------------------------------------------------------------------------- /data/__pycache__/test_dataset.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/data/__pycache__/test_dataset.cpython-37.pyc -------------------------------------------------------------------------------- /data/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/data/build.py -------------------------------------------------------------------------------- /data/episode_dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/data/episode_dataset/__init__.py -------------------------------------------------------------------------------- /data/episode_dataset/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/data/episode_dataset/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /data/episode_dataset/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/data/episode_dataset/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /data/episode_dataset/__pycache__/dataset.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/data/episode_dataset/__pycache__/dataset.cpython-36.pyc -------------------------------------------------------------------------------- /data/episode_dataset/__pycache__/dataset.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/data/episode_dataset/__pycache__/dataset.cpython-37.pyc -------------------------------------------------------------------------------- /data/episode_dataset/__pycache__/samplers.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/data/episode_dataset/__pycache__/samplers.cpython-36.pyc -------------------------------------------------------------------------------- /data/episode_dataset/__pycache__/samplers.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/data/episode_dataset/__pycache__/samplers.cpython-37.pyc -------------------------------------------------------------------------------- /data/episode_dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/data/episode_dataset/dataset.py -------------------------------------------------------------------------------- /data/episode_dataset/samplers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/data/episode_dataset/samplers.py -------------------------------------------------------------------------------- /data/random_dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/data/random_dataset/__init__.py -------------------------------------------------------------------------------- /data/random_dataset/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/data/random_dataset/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /data/random_dataset/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/data/random_dataset/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /data/random_dataset/__pycache__/dataset.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/data/random_dataset/__pycache__/dataset.cpython-36.pyc -------------------------------------------------------------------------------- /data/random_dataset/__pycache__/dataset.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/data/random_dataset/__pycache__/dataset.cpython-37.pyc -------------------------------------------------------------------------------- /data/random_dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/data/random_dataset/dataset.py -------------------------------------------------------------------------------- /data/test_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/data/test_dataset.py -------------------------------------------------------------------------------- /data/transforms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/data/transforms/__init__.py -------------------------------------------------------------------------------- /data/transforms/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/data/transforms/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /data/transforms/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/data/transforms/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /data/transforms/__pycache__/data_transform.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/data/transforms/__pycache__/data_transform.cpython-36.pyc -------------------------------------------------------------------------------- /data/transforms/__pycache__/data_transform.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/data/transforms/__pycache__/data_transform.cpython-37.pyc -------------------------------------------------------------------------------- /data/transforms/data_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/data/transforms/data_transform.py -------------------------------------------------------------------------------- /extract_attribute_w2v_AWA2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/extract_attribute_w2v_AWA2.py -------------------------------------------------------------------------------- /extract_attribute_w2v_CUB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/extract_attribute_w2v_CUB.py -------------------------------------------------------------------------------- /extract_attribute_w2v_SUN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/extract_attribute_w2v_SUN.py -------------------------------------------------------------------------------- /framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/framework.png -------------------------------------------------------------------------------- /models/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/.DS_Store -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /models/config/__init__.py: -------------------------------------------------------------------------------- 1 | from .defaults import _C as cfg -------------------------------------------------------------------------------- /models/config/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/config/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /models/config/__pycache__/defaults.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/config/__pycache__/defaults.cpython-36.pyc -------------------------------------------------------------------------------- /models/config/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/config/defaults.py -------------------------------------------------------------------------------- /models/engine/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/engine/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/engine/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /models/engine/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/engine/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /models/engine/__pycache__/inferencer.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/engine/__pycache__/inferencer.cpython-36.pyc -------------------------------------------------------------------------------- /models/engine/__pycache__/inferencer.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/engine/__pycache__/inferencer.cpython-37.pyc -------------------------------------------------------------------------------- /models/engine/__pycache__/trainer.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/engine/__pycache__/trainer.cpython-36.pyc -------------------------------------------------------------------------------- /models/engine/__pycache__/trainer.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/engine/__pycache__/trainer.cpython-37.pyc -------------------------------------------------------------------------------- /models/engine/inferencer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/engine/inferencer.py -------------------------------------------------------------------------------- /models/engine/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/engine/trainer.py -------------------------------------------------------------------------------- /models/modeling/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/modeling/.DS_Store -------------------------------------------------------------------------------- /models/modeling/PSVMAModel/PSVMANet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/modeling/PSVMAModel/PSVMANet.py -------------------------------------------------------------------------------- /models/modeling/PSVMAModel/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/modeling/PSVMAModel/__init__.py -------------------------------------------------------------------------------- /models/modeling/PSVMAModel/__pycache__/GEMNet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/modeling/PSVMAModel/__pycache__/GEMNet.cpython-36.pyc -------------------------------------------------------------------------------- /models/modeling/PSVMAModel/__pycache__/GEMNet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/modeling/PSVMAModel/__pycache__/GEMNet.cpython-37.pyc -------------------------------------------------------------------------------- /models/modeling/PSVMAModel/__pycache__/PSVMANet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/modeling/PSVMAModel/__pycache__/PSVMANet.cpython-36.pyc -------------------------------------------------------------------------------- /models/modeling/PSVMAModel/__pycache__/PSVMANet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/modeling/PSVMAModel/__pycache__/PSVMANet.cpython-37.pyc -------------------------------------------------------------------------------- /models/modeling/PSVMAModel/__pycache__/PSVMANet1.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/modeling/PSVMAModel/__pycache__/PSVMANet1.cpython-36.pyc -------------------------------------------------------------------------------- /models/modeling/PSVMAModel/__pycache__/PSVMANet_737.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/modeling/PSVMAModel/__pycache__/PSVMANet_737.cpython-36.pyc -------------------------------------------------------------------------------- /models/modeling/PSVMAModel/__pycache__/PSVMANet_7378.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/modeling/PSVMAModel/__pycache__/PSVMANet_7378.cpython-36.pyc -------------------------------------------------------------------------------- /models/modeling/PSVMAModel/__pycache__/PSVMANet_wait.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/modeling/PSVMAModel/__pycache__/PSVMANet_wait.cpython-36.pyc -------------------------------------------------------------------------------- /models/modeling/PSVMAModel/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/modeling/PSVMAModel/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /models/modeling/PSVMAModel/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/modeling/PSVMAModel/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /models/modeling/PSVMAModel/__pycache__/pipeline.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/modeling/PSVMAModel/__pycache__/pipeline.cpython-36.pyc -------------------------------------------------------------------------------- /models/modeling/PSVMAModel/__pycache__/pipeline.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/modeling/PSVMAModel/__pycache__/pipeline.cpython-37.pyc -------------------------------------------------------------------------------- /models/modeling/PSVMAModel/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/modeling/PSVMAModel/pipeline.py -------------------------------------------------------------------------------- /models/modeling/__init__.py: -------------------------------------------------------------------------------- 1 | from .PSVMAModel import build_gzsl_pipeline -------------------------------------------------------------------------------- /models/modeling/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/modeling/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /models/modeling/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/modeling/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /models/modeling/__pycache__/anchors.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/modeling/__pycache__/anchors.cpython-36.pyc -------------------------------------------------------------------------------- /models/modeling/__pycache__/anchors.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/modeling/__pycache__/anchors.cpython-37.pyc -------------------------------------------------------------------------------- /models/modeling/__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/modeling/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /models/modeling/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/modeling/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /models/modeling/backbone/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/modeling/backbone/__init__.py -------------------------------------------------------------------------------- /models/modeling/backbone/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/modeling/backbone/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /models/modeling/backbone/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/modeling/backbone/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /models/modeling/backbone/__pycache__/resnet_features.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/modeling/backbone/__pycache__/resnet_features.cpython-36.pyc -------------------------------------------------------------------------------- /models/modeling/backbone/__pycache__/resnet_features.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/modeling/backbone/__pycache__/resnet_features.cpython-37.pyc -------------------------------------------------------------------------------- /models/modeling/backbone/resnet_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/modeling/backbone/resnet_features.py -------------------------------------------------------------------------------- /models/modeling/backbone_vit/__init__.py: -------------------------------------------------------------------------------- 1 | from .vit_model import * -------------------------------------------------------------------------------- /models/modeling/backbone_vit/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/modeling/backbone_vit/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /models/modeling/backbone_vit/__pycache__/resnet_features.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/modeling/backbone_vit/__pycache__/resnet_features.cpython-36.pyc -------------------------------------------------------------------------------- /models/modeling/backbone_vit/__pycache__/vit_model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/modeling/backbone_vit/__pycache__/vit_model.cpython-36.pyc -------------------------------------------------------------------------------- /models/modeling/backbone_vit/vit_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/modeling/backbone_vit/vit_model.py -------------------------------------------------------------------------------- /models/modeling/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/modeling/utils.py -------------------------------------------------------------------------------- /models/solver/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/solver/__init__.py -------------------------------------------------------------------------------- /models/solver/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/solver/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /models/solver/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/solver/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /models/solver/__pycache__/build.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/solver/__pycache__/build.cpython-36.pyc -------------------------------------------------------------------------------- /models/solver/__pycache__/build.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/solver/__pycache__/build.cpython-37.pyc -------------------------------------------------------------------------------- /models/solver/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/solver/build.py -------------------------------------------------------------------------------- /models/utils/__init__.py: -------------------------------------------------------------------------------- 1 | from .utils import ReDirectSTD -------------------------------------------------------------------------------- /models/utils/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/utils/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /models/utils/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/utils/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /models/utils/__pycache__/comm.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/utils/__pycache__/comm.cpython-36.pyc -------------------------------------------------------------------------------- /models/utils/__pycache__/comm.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/utils/__pycache__/comm.cpython-37.pyc -------------------------------------------------------------------------------- /models/utils/__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/utils/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /models/utils/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/utils/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /models/utils/comm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/utils/comm.py -------------------------------------------------------------------------------- /models/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/models/utils/utils.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManLiuCoder/PSVMA/HEAD/train.py --------------------------------------------------------------------------------