DiscriminatorAdversarialLoss¶
Inheritance Diagram
-
class
ashpy.losses.gan.
DiscriminatorAdversarialLoss
(loss_fn=None)[source]¶ Bases:
ashpy.losses.gan.GANExecutor
Base class for the adversarial loss of the discriminator.
Methods
__init__
([loss_fn])Initialize the Executor. call
(*args, **kwargs)Attributes
fn
Return the Keras loss function to execute. global_batch_size
Global batch size comprises the batch size for each cpu. weight
Return the loss weight. -
__init__
(loss_fn=None)[source]¶ Initialize the Executor.
Parameters: - loss_fn (
tf.keras.losses.Loss
) – Loss function call passing - d_fake) ((d_real,) –
Return type: None
- loss_fn (
-