james-oldfield's picture
Upload 194 files
2a76164
raw
history blame contribute delete
No virus
179 Bytes
# python3.7
"""Collects all loss functions."""
from .logistic_gan_loss import LogisticGANLoss
from .encoder_loss import EncoderLoss
__all__ = ['LogisticGANLoss', 'EncoderLoss']