MSherbinii's picture
Upload README.md with huggingface_hub
337d91c verified
---
license: mit
tags:
- anomaly-detection
- efficientad
- mvtec-ad
- metal_nut
---
# EfficientAD - Metal Nut
EfficientAD model for detecting scratches, bends, and flips in metal nuts
## Model Details
- **Architecture**: EfficientAD (Teacher-Student-Autoencoder)
- **Model Size**: Medium (512-dimensional features)
- **Dataset**: MVTec AD - Metal Nut
- **AU-ROC**: 99.7%
- **Training**: Custom training on Apple Silicon (MPS)
## Files
- `teacher.pth`: Pre-trained teacher network (31MB)
- `student.pth`: Trained student network (44MB)
- `autoencoder.pth`: Trained autoencoder (4.2MB)
## Usage
```python
import torch
# Load models
teacher = torch.load('teacher.pth')
student = torch.load('student.pth')
autoencoder = torch.load('autoencoder.pth')
```
## Citation
```bibtex
@article{efficientad2023,
title={EfficientAD: Accurate Visual Anomaly Detection at Millisecond-Level Latencies},
author={Batzner, Kilian and Heckler, Lars and König, Rebecca},
journal={arXiv preprint arXiv:2303.14535},
year={2023}
}
```
Generated with Lumina Tech Platform