WGAN replaces the JS divergence with the Wasserstein distance (earth-mover, via the Kantorovich-Rubinstein duality):
W(Pr,Pg)=sup∥f∥L≤1Ex∼Pr[f(x)]−Ez∼pz[f(G(z))], requiring the critic
f to be 1-Lipschitz. The original WGAN enforces this via weight clipping, which distorts the distribution; WGAN-GP instead penalizes the gradient norm on linear interpolations
x^ between real and fake samples:
λEx^∼Px^[(∥∇x^D(x^)∥2−1)2] (default
λ=10).