(self, image)
| 115 | super().__init__() |
| 116 | |
| 117 | def forward(self, image): |
| 118 | out = self.model(image[None]) |
| 119 | out['x_hat'].clamp_(0, 1) |
| 120 | return out['x_hat'].squeeze() |
| 121 | |
| 122 | class VAEBmshj2018Attack(VAEAttack): |
| 123 | def __init__(self): |
nothing calls this directly
no outgoing calls
no test coverage detected