radames's picture
first
bb0f5a9
raw
history blame
No virus
181 Bytes
import torch
l2_criterion = torch.nn.MSELoss(reduction='mean')
def l2_loss(real_images, generated_images):
loss = l2_criterion(real_images, generated_images)
return loss