(self, img)
| 287 | self.std = torch.tensor(std).view(-1, 1, 1) |
| 288 | |
| 289 | def forward(self, img): |
| 290 | # normalize ``img`` |
| 291 | return (img - self.mean) / self.std |
| 292 | |
| 293 | |
| 294 | ###################################################################### |
nothing calls this directly
no outgoing calls
no test coverage detected