DiscriminatorAdversarialLoss¶
Inheritance Diagram

-
class
ashpy.losses.gan.DiscriminatorAdversarialLoss(loss_fn=None)[source]¶ Bases:
ashpy.losses.gan.GANExecutorBase class for the adversarial loss of the discriminator.
Methods
__init__([loss_fn])Initialize the Executor.
call(*args, **kwargs)Attributes
fnReturn the Keras loss function to execute.
global_batch_sizeGlobal batch size comprises the batch size for each cpu.
weightReturn the loss weight.
-
__init__(loss_fn=None)[source]¶ Initialize the Executor.
- Parameters
loss_fn (
tf.keras.losses.Loss) – Loss function call passingd_fake) ((d_real,) –
- Return type
None
-