├── .gitignore ├── LICENSE.md ├── README.md ├── anomaly-detection.ipynb ├── imgs ├── example_1.png ├── example_2.png └── example_3.png └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .ipynb_checkpoints/ 2 | data/ 3 | models.zip -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SulekBartek/Anomaly_detection_MVtec/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SulekBartek/Anomaly_detection_MVtec/HEAD/README.md -------------------------------------------------------------------------------- /anomaly-detection.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SulekBartek/Anomaly_detection_MVtec/HEAD/anomaly-detection.ipynb -------------------------------------------------------------------------------- /imgs/example_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SulekBartek/Anomaly_detection_MVtec/HEAD/imgs/example_1.png -------------------------------------------------------------------------------- /imgs/example_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SulekBartek/Anomaly_detection_MVtec/HEAD/imgs/example_2.png -------------------------------------------------------------------------------- /imgs/example_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SulekBartek/Anomaly_detection_MVtec/HEAD/imgs/example_3.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SulekBartek/Anomaly_detection_MVtec/HEAD/requirements.txt --------------------------------------------------------------------------------