Skip to content

WGAN¤

Supported owner: artifex.generative_models.models.gan.wgan

Public Imports¤

from artifex.generative_models.models.gan import (
    WGAN,
    WGANDiscriminator,
    WGANGenerator,
    compute_gradient_penalty,
)

Overview¤

The retained WGAN surface consists of the main WGAN model, the concrete WGANGenerator and WGANDiscriminator owners, and the exported compute_gradient_penalty helper.

Generation and objective behavior live on the model instances themselves rather than as additional module-level public helpers.