File size: 179 Bytes
8c212a5
 
 
 
 
 
 
1
2
3
4
5
6
7
8
# python3.7
"""Collects all loss functions."""

from .logistic_gan_loss import LogisticGANLoss
from .encoder_loss import EncoderLoss

__all__ = ['LogisticGANLoss', 'EncoderLoss']