├── .DS_Store ├── .idea ├── .gitignore ├── AMPF code for Github.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml └── modules.xml ├── LICENSE ├── README.md ├── core ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── consistency_detection.cpython-38.pyc │ ├── create_dir_file.cpython-38.pyc │ ├── create_models.cpython-38.pyc │ ├── evaluation.cpython-38.pyc │ ├── load_osr_data.cpython-38.pyc │ ├── split.cpython-38.pyc │ ├── test.cpython-38.pyc │ ├── train.cpython-38.pyc │ └── utils.cpython-38.pyc ├── consistency_detection.py ├── create_dir_file.py ├── create_models.py ├── evaluation.py ├── load_osr_data.py ├── spectral_normalization.py ├── split.py ├── test.py ├── train.py └── utils.py ├── data └── mnist │ ├── MNISTRGB │ ├── processed │ │ ├── test.pt │ │ └── training.pt │ └── raw │ │ ├── t10k-images-idx3-ubyte.gz │ │ ├── t10k-labels-idx1-ubyte.gz │ │ ├── train-images-idx3-ubyte.gz │ │ └── train-labels-idx1-ubyte.gz │ └── MNIST_Filter │ ├── processed │ ├── test.pt │ └── training.pt │ └── raw │ ├── t10k-images-idx3-ubyte.gz │ ├── t10k-labels-idx1-ubyte.gz │ ├── train-images-idx3-ubyte.gz │ └── train-labels-idx1-ubyte.gz ├── datasets ├── __pycache__ │ └── osr_dataloader.cpython-38.pyc ├── datasets.py └── osr_dataloader.py ├── img ├── ARPLoss_visualize_open_set.png ├── GCPLoss_visualize_open_set.png ├── MPFLoss_visualize_open_set.png ├── RPLoss_visualize_open_set.png └── Softmax_visualize_open_set.png ├── loss ├── AMPFLoss.py ├── ARPLoss.py ├── Dist.py ├── GCPLoss.py ├── RPLoss.py ├── Softmax.py ├── __init__.py └── __pycache__ │ ├── AMPFLoss.cpython-38.pyc │ ├── Dist.cpython-38.pyc │ └── __init__.cpython-38.pyc ├── models ├── ABN.py ├── RAN.py ├── __pycache__ │ ├── ABN.cpython-38.pyc │ ├── RAN.cpython-38.pyc │ ├── backbone_wide_resnet.cpython-38.pyc │ ├── gan.cpython-38.pyc │ ├── model.cpython-38.pyc │ ├── resnest.cpython-38.pyc │ └── resnet.cpython-38.pyc ├── backbone_wide_resnet.py ├── configs.py ├── gan.py ├── model.py ├── resnest.py ├── resnet.py ├── resnetABN.py └── resnet_ImageNet.py └── osr.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/.DS_Store -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/AMPF code for Github.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/.idea/AMPF code for Github.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/README.md -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/core/__init__.py -------------------------------------------------------------------------------- /core/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/core/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /core/__pycache__/consistency_detection.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/core/__pycache__/consistency_detection.cpython-38.pyc -------------------------------------------------------------------------------- /core/__pycache__/create_dir_file.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/core/__pycache__/create_dir_file.cpython-38.pyc -------------------------------------------------------------------------------- /core/__pycache__/create_models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/core/__pycache__/create_models.cpython-38.pyc -------------------------------------------------------------------------------- /core/__pycache__/evaluation.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/core/__pycache__/evaluation.cpython-38.pyc -------------------------------------------------------------------------------- /core/__pycache__/load_osr_data.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/core/__pycache__/load_osr_data.cpython-38.pyc -------------------------------------------------------------------------------- /core/__pycache__/split.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/core/__pycache__/split.cpython-38.pyc -------------------------------------------------------------------------------- /core/__pycache__/test.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/core/__pycache__/test.cpython-38.pyc -------------------------------------------------------------------------------- /core/__pycache__/train.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/core/__pycache__/train.cpython-38.pyc -------------------------------------------------------------------------------- /core/__pycache__/utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/core/__pycache__/utils.cpython-38.pyc -------------------------------------------------------------------------------- /core/consistency_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/core/consistency_detection.py -------------------------------------------------------------------------------- /core/create_dir_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/core/create_dir_file.py -------------------------------------------------------------------------------- /core/create_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/core/create_models.py -------------------------------------------------------------------------------- /core/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/core/evaluation.py -------------------------------------------------------------------------------- /core/load_osr_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/core/load_osr_data.py -------------------------------------------------------------------------------- /core/spectral_normalization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/core/spectral_normalization.py -------------------------------------------------------------------------------- /core/split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/core/split.py -------------------------------------------------------------------------------- /core/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/core/test.py -------------------------------------------------------------------------------- /core/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/core/train.py -------------------------------------------------------------------------------- /core/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/core/utils.py -------------------------------------------------------------------------------- /data/mnist/MNISTRGB/processed/test.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/data/mnist/MNISTRGB/processed/test.pt -------------------------------------------------------------------------------- /data/mnist/MNISTRGB/processed/training.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/data/mnist/MNISTRGB/processed/training.pt -------------------------------------------------------------------------------- /data/mnist/MNISTRGB/raw/t10k-images-idx3-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/data/mnist/MNISTRGB/raw/t10k-images-idx3-ubyte.gz -------------------------------------------------------------------------------- /data/mnist/MNISTRGB/raw/t10k-labels-idx1-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/data/mnist/MNISTRGB/raw/t10k-labels-idx1-ubyte.gz -------------------------------------------------------------------------------- /data/mnist/MNISTRGB/raw/train-images-idx3-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/data/mnist/MNISTRGB/raw/train-images-idx3-ubyte.gz -------------------------------------------------------------------------------- /data/mnist/MNISTRGB/raw/train-labels-idx1-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/data/mnist/MNISTRGB/raw/train-labels-idx1-ubyte.gz -------------------------------------------------------------------------------- /data/mnist/MNIST_Filter/processed/test.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/data/mnist/MNIST_Filter/processed/test.pt -------------------------------------------------------------------------------- /data/mnist/MNIST_Filter/processed/training.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/data/mnist/MNIST_Filter/processed/training.pt -------------------------------------------------------------------------------- /data/mnist/MNIST_Filter/raw/t10k-images-idx3-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/data/mnist/MNIST_Filter/raw/t10k-images-idx3-ubyte.gz -------------------------------------------------------------------------------- /data/mnist/MNIST_Filter/raw/t10k-labels-idx1-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/data/mnist/MNIST_Filter/raw/t10k-labels-idx1-ubyte.gz -------------------------------------------------------------------------------- /data/mnist/MNIST_Filter/raw/train-images-idx3-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/data/mnist/MNIST_Filter/raw/train-images-idx3-ubyte.gz -------------------------------------------------------------------------------- /data/mnist/MNIST_Filter/raw/train-labels-idx1-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/data/mnist/MNIST_Filter/raw/train-labels-idx1-ubyte.gz -------------------------------------------------------------------------------- /datasets/__pycache__/osr_dataloader.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/datasets/__pycache__/osr_dataloader.cpython-38.pyc -------------------------------------------------------------------------------- /datasets/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/datasets/datasets.py -------------------------------------------------------------------------------- /datasets/osr_dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/datasets/osr_dataloader.py -------------------------------------------------------------------------------- /img/ARPLoss_visualize_open_set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/img/ARPLoss_visualize_open_set.png -------------------------------------------------------------------------------- /img/GCPLoss_visualize_open_set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/img/GCPLoss_visualize_open_set.png -------------------------------------------------------------------------------- /img/MPFLoss_visualize_open_set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/img/MPFLoss_visualize_open_set.png -------------------------------------------------------------------------------- /img/RPLoss_visualize_open_set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/img/RPLoss_visualize_open_set.png -------------------------------------------------------------------------------- /img/Softmax_visualize_open_set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/img/Softmax_visualize_open_set.png -------------------------------------------------------------------------------- /loss/AMPFLoss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/loss/AMPFLoss.py -------------------------------------------------------------------------------- /loss/ARPLoss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/loss/ARPLoss.py -------------------------------------------------------------------------------- /loss/Dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/loss/Dist.py -------------------------------------------------------------------------------- /loss/GCPLoss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/loss/GCPLoss.py -------------------------------------------------------------------------------- /loss/RPLoss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/loss/RPLoss.py -------------------------------------------------------------------------------- /loss/Softmax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/loss/Softmax.py -------------------------------------------------------------------------------- /loss/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /loss/__pycache__/AMPFLoss.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/loss/__pycache__/AMPFLoss.cpython-38.pyc -------------------------------------------------------------------------------- /loss/__pycache__/Dist.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/loss/__pycache__/Dist.cpython-38.pyc -------------------------------------------------------------------------------- /loss/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/loss/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /models/ABN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/models/ABN.py -------------------------------------------------------------------------------- /models/RAN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/models/RAN.py -------------------------------------------------------------------------------- /models/__pycache__/ABN.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/models/__pycache__/ABN.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/RAN.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/models/__pycache__/RAN.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/backbone_wide_resnet.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/models/__pycache__/backbone_wide_resnet.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/gan.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/models/__pycache__/gan.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/models/__pycache__/model.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/resnest.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/models/__pycache__/resnest.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/resnet.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/models/__pycache__/resnet.cpython-38.pyc -------------------------------------------------------------------------------- /models/backbone_wide_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/models/backbone_wide_resnet.py -------------------------------------------------------------------------------- /models/configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/models/configs.py -------------------------------------------------------------------------------- /models/gan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/models/gan.py -------------------------------------------------------------------------------- /models/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/models/model.py -------------------------------------------------------------------------------- /models/resnest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/models/resnest.py -------------------------------------------------------------------------------- /models/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/models/resnet.py -------------------------------------------------------------------------------- /models/resnetABN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/models/resnetABN.py -------------------------------------------------------------------------------- /models/resnet_ImageNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/models/resnet_ImageNet.py -------------------------------------------------------------------------------- /osr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaziheng89/Adversarial-Motorial-Prototype-Framework-for-Open-Set-Recognition/HEAD/osr.py --------------------------------------------------------------------------------