(self, x)
| 60 | self.max_noise_level = 0 |
| 61 | |
| 62 | def forward(self, x): |
| 63 | # fix to constant noise level |
| 64 | return x, torch.zeros(x.shape[0], device=x.device).long() |
| 65 | |
| 66 | |
| 67 | class ImageConcatWithNoiseAugmentation(AbstractLowScaleModel): |
nothing calls this directly
no outgoing calls
no test coverage detected