├── README.md ├── compute_threshold.py ├── datasets └── id_data │ └── __init__.py ├── eval.py ├── figs └── results.png ├── models ├── __init__.py ├── mobilenet.py └── resnet.py ├── score.py └── util ├── args_loader.py ├── data_loader.py ├── dataset_largescale.py ├── mahalanobis_lib.py ├── metrics.py ├── model_loader.py └── svhn_loader.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeplearning-wisc/react/HEAD/README.md -------------------------------------------------------------------------------- /compute_threshold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeplearning-wisc/react/HEAD/compute_threshold.py -------------------------------------------------------------------------------- /datasets/id_data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeplearning-wisc/react/HEAD/eval.py -------------------------------------------------------------------------------- /figs/results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeplearning-wisc/react/HEAD/figs/results.png -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/mobilenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeplearning-wisc/react/HEAD/models/mobilenet.py -------------------------------------------------------------------------------- /models/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeplearning-wisc/react/HEAD/models/resnet.py -------------------------------------------------------------------------------- /score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeplearning-wisc/react/HEAD/score.py -------------------------------------------------------------------------------- /util/args_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeplearning-wisc/react/HEAD/util/args_loader.py -------------------------------------------------------------------------------- /util/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeplearning-wisc/react/HEAD/util/data_loader.py -------------------------------------------------------------------------------- /util/dataset_largescale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeplearning-wisc/react/HEAD/util/dataset_largescale.py -------------------------------------------------------------------------------- /util/mahalanobis_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeplearning-wisc/react/HEAD/util/mahalanobis_lib.py -------------------------------------------------------------------------------- /util/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeplearning-wisc/react/HEAD/util/metrics.py -------------------------------------------------------------------------------- /util/model_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeplearning-wisc/react/HEAD/util/model_loader.py -------------------------------------------------------------------------------- /util/svhn_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deeplearning-wisc/react/HEAD/util/svhn_loader.py --------------------------------------------------------------------------------