GAN Least Squares Loss is a least squares loss function for generative adversarial networks. Minimizing this objective function is equivalent to minimizing the Pearson χ2 divergence. The objective function (here for LSGAN) can be defined as:
min_DV_LS(D)=21E_x∼p_data(x)[(D(x)−b)2]+21E_z∼p_data(z)[(D(G(z))−a)2]
min_GV_LS(G)=21E_z∼p_z(z)[(D(G(z))−c)2]
where a and b are the labels for fake data and real data and c denotes the value that G wants D to believe for fake data.