dattarij's picture
adding ContraCLIP folder
8c212a5
raw
history blame
179 Bytes
# python3.7
"""Collects all loss functions."""
from .logistic_gan_loss import LogisticGANLoss
from .encoder_loss import EncoderLoss
__all__ = ['LogisticGANLoss', 'EncoderLoss']