Views
No views yet
| Model | Approach | Key Metric |
|---|---|---|
| YOLOv8n | Supervised | mAP50 = 0.09 |
| PatchCore | Unsupervised | AUROC = 0.9976 |
1import torch
2from huggingface_hub import hf_hub_download
3
4path = hf_hub_download(repo_id='Chasston/defect-vision-patchcore-bottle', filename='memory_bank.pt')
5data = torch.load(path)
6memory_bank = data['memory_bank']