├── .gitignore ├── LICENSE ├── README.md ├── capture └── capture.jpg ├── embeddings └── carpet │ └── embedding.pickle ├── requirements.txt ├── sampling_methods ├── kcenter_greedy.py └── sampling_def.py └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hcw-00/PatchCore_anomaly_detection/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hcw-00/PatchCore_anomaly_detection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hcw-00/PatchCore_anomaly_detection/HEAD/README.md -------------------------------------------------------------------------------- /capture/capture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hcw-00/PatchCore_anomaly_detection/HEAD/capture/capture.jpg -------------------------------------------------------------------------------- /embeddings/carpet/embedding.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hcw-00/PatchCore_anomaly_detection/HEAD/embeddings/carpet/embedding.pickle -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hcw-00/PatchCore_anomaly_detection/HEAD/requirements.txt -------------------------------------------------------------------------------- /sampling_methods/kcenter_greedy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hcw-00/PatchCore_anomaly_detection/HEAD/sampling_methods/kcenter_greedy.py -------------------------------------------------------------------------------- /sampling_methods/sampling_def.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hcw-00/PatchCore_anomaly_detection/HEAD/sampling_methods/sampling_def.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hcw-00/PatchCore_anomaly_detection/HEAD/train.py --------------------------------------------------------------------------------