(self, input)
| 241 | self.target = gram_matrix(target_feature).detach() |
| 242 | |
| 243 | def forward(self, input): |
| 244 | G = gram_matrix(input) |
| 245 | self.loss = F.mse_loss(G, self.target) |
| 246 | return input |
| 247 | |
| 248 | |
| 249 | ###################################################################### |
nothing calls this directly
no test coverage detected