(self, input)
| 179 | self.target = target.detach() |
| 180 | |
| 181 | def forward(self, input): |
| 182 | self.loss = F.mse_loss(input, self.target) |
| 183 | return input |
| 184 | |
| 185 | ###################################################################### |
| 186 | # .. note:: |
nothing calls this directly
no outgoing calls
no test coverage detected