├── .gitignore ├── LICENSE ├── README.md ├── data ├── dataset.py ├── dataset_osr_test.py └── sampler.py ├── docs ├── SURE_OOD.pdf ├── Support.md ├── diagram.png ├── ood.png ├── rank.jpg └── rank.png ├── main.py ├── metric_result_GradNorm.py ├── model ├── classifier.py └── get_model.py ├── requirements.txt ├── run ├── run_deit_Inet1k.sh └── run_eval_TTA.sh ├── splits └── imagenet_ssb_splits.json ├── test_osr_ood_TTA.py ├── train.py └── utils ├── model_emb.py ├── optim.py ├── option.py ├── sam.py ├── test_option.py ├── test_osr_ood.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intellindust-AI-Lab/SSB-OSR/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intellindust-AI-Lab/SSB-OSR/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intellindust-AI-Lab/SSB-OSR/HEAD/README.md -------------------------------------------------------------------------------- /data/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intellindust-AI-Lab/SSB-OSR/HEAD/data/dataset.py -------------------------------------------------------------------------------- /data/dataset_osr_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intellindust-AI-Lab/SSB-OSR/HEAD/data/dataset_osr_test.py -------------------------------------------------------------------------------- /data/sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intellindust-AI-Lab/SSB-OSR/HEAD/data/sampler.py -------------------------------------------------------------------------------- /docs/SURE_OOD.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intellindust-AI-Lab/SSB-OSR/HEAD/docs/SURE_OOD.pdf -------------------------------------------------------------------------------- /docs/Support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intellindust-AI-Lab/SSB-OSR/HEAD/docs/Support.md -------------------------------------------------------------------------------- /docs/diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intellindust-AI-Lab/SSB-OSR/HEAD/docs/diagram.png -------------------------------------------------------------------------------- /docs/ood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intellindust-AI-Lab/SSB-OSR/HEAD/docs/ood.png -------------------------------------------------------------------------------- /docs/rank.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intellindust-AI-Lab/SSB-OSR/HEAD/docs/rank.jpg -------------------------------------------------------------------------------- /docs/rank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intellindust-AI-Lab/SSB-OSR/HEAD/docs/rank.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intellindust-AI-Lab/SSB-OSR/HEAD/main.py -------------------------------------------------------------------------------- /metric_result_GradNorm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intellindust-AI-Lab/SSB-OSR/HEAD/metric_result_GradNorm.py -------------------------------------------------------------------------------- /model/classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intellindust-AI-Lab/SSB-OSR/HEAD/model/classifier.py -------------------------------------------------------------------------------- /model/get_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intellindust-AI-Lab/SSB-OSR/HEAD/model/get_model.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intellindust-AI-Lab/SSB-OSR/HEAD/requirements.txt -------------------------------------------------------------------------------- /run/run_deit_Inet1k.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intellindust-AI-Lab/SSB-OSR/HEAD/run/run_deit_Inet1k.sh -------------------------------------------------------------------------------- /run/run_eval_TTA.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intellindust-AI-Lab/SSB-OSR/HEAD/run/run_eval_TTA.sh -------------------------------------------------------------------------------- /splits/imagenet_ssb_splits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intellindust-AI-Lab/SSB-OSR/HEAD/splits/imagenet_ssb_splits.json -------------------------------------------------------------------------------- /test_osr_ood_TTA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intellindust-AI-Lab/SSB-OSR/HEAD/test_osr_ood_TTA.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intellindust-AI-Lab/SSB-OSR/HEAD/train.py -------------------------------------------------------------------------------- /utils/model_emb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intellindust-AI-Lab/SSB-OSR/HEAD/utils/model_emb.py -------------------------------------------------------------------------------- /utils/optim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intellindust-AI-Lab/SSB-OSR/HEAD/utils/optim.py -------------------------------------------------------------------------------- /utils/option.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intellindust-AI-Lab/SSB-OSR/HEAD/utils/option.py -------------------------------------------------------------------------------- /utils/sam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intellindust-AI-Lab/SSB-OSR/HEAD/utils/sam.py -------------------------------------------------------------------------------- /utils/test_option.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intellindust-AI-Lab/SSB-OSR/HEAD/utils/test_option.py -------------------------------------------------------------------------------- /utils/test_osr_ood.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intellindust-AI-Lab/SSB-OSR/HEAD/utils/test_osr_ood.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intellindust-AI-Lab/SSB-OSR/HEAD/utils/utils.py --------------------------------------------------------------------------------