PatchCore anomaly detection class.
(self, device)
| 18 | |
| 19 | class PatchCore(torch.nn.Module): |
| 20 | def __init__(self, device): |
| 21 | """PatchCore anomaly detection class.""" |
| 22 | super(PatchCore, self).__init__() |
| 23 | self.device = device |
| 24 | |
| 25 | def load( |
| 26 | self, |
nothing calls this directly
no outgoing calls
no test coverage detected