PVD/modules/loss.py

11 lines
163 B
Python
Raw Normal View History

2021-10-19 20:54:46 +00:00
import torch.nn as nn
import modules.functional as F
__all__ = ['KLLoss']
class KLLoss(nn.Module):
def forward(self, x, y):
return F.kl_loss(x, y)