├── LICENSE ├── README.md ├── assets └── roc_curve_efficientnet-b4.png ├── data └── .gitkeep ├── requirements.txt └── src ├── __init__.py ├── datasets ├── __init__.py └── mvtec.py └── main.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byungjae89/MahalanobisAD-pytorch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byungjae89/MahalanobisAD-pytorch/HEAD/README.md -------------------------------------------------------------------------------- /assets/roc_curve_efficientnet-b4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byungjae89/MahalanobisAD-pytorch/HEAD/assets/roc_curve_efficientnet-b4.png -------------------------------------------------------------------------------- /data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byungjae89/MahalanobisAD-pytorch/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/datasets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/datasets/mvtec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byungjae89/MahalanobisAD-pytorch/HEAD/src/datasets/mvtec.py -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byungjae89/MahalanobisAD-pytorch/HEAD/src/main.py --------------------------------------------------------------------------------