├── data ├── cifar │ └── unzip data here.txt └── cifar10_relabel.py ├── imgs └── teaser.png ├── models ├── __init__.py ├── utils.py └── wide_resnet_embedding.py ├── pretrain_unknown_detection.py ├── proser_unknown_detection.py ├── readme.md ├── results └── Dcifar10_relabel-Msoftmax-BWideResnet │ └── LR0.1-K[8 4 7 2 1 9]-U[3 0 6 5]-Seed9 │ └── download pretrain model here.txt └── utils.py /data/cifar/unzip data here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/cifar10_relabel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAMDA-CL/CVPR21-Proser/HEAD/data/cifar10_relabel.py -------------------------------------------------------------------------------- /imgs/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAMDA-CL/CVPR21-Proser/HEAD/imgs/teaser.png -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | from .wide_resnet_embedding import * -------------------------------------------------------------------------------- /models/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAMDA-CL/CVPR21-Proser/HEAD/models/utils.py -------------------------------------------------------------------------------- /models/wide_resnet_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAMDA-CL/CVPR21-Proser/HEAD/models/wide_resnet_embedding.py -------------------------------------------------------------------------------- /pretrain_unknown_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAMDA-CL/CVPR21-Proser/HEAD/pretrain_unknown_detection.py -------------------------------------------------------------------------------- /proser_unknown_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAMDA-CL/CVPR21-Proser/HEAD/proser_unknown_detection.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAMDA-CL/CVPR21-Proser/HEAD/readme.md -------------------------------------------------------------------------------- /results/Dcifar10_relabel-Msoftmax-BWideResnet/LR0.1-K[8 4 7 2 1 9]-U[3 0 6 5]-Seed9/download pretrain model here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAMDA-CL/CVPR21-Proser/HEAD/utils.py --------------------------------------------------------------------------------