Amrrs's picture
Duplicate from DragGan/DragGan-Inversion
04d341d
raw
history blame contribute delete
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