为什么在GAN中使用KL散度会出现模式坍缩的问题?

李宏毅老师GAN的课程中曾经对于这个问题有一个直观的解释,大体上可以参考以下的简单理解

https://blog.csdn.net/Forlogen/article/details/88921247

那么具体在数学上如何理解这个问题的产生呢?在Goodfellow提出的GAN的原始论文中指出,当生成器和判别器的能力足够强的时候,一定可以收敛到纳什均衡点,此时得到的最优的判别器 D ∗ D^* D
D ∗ = p r ( x ) p r ( x ) + p θ ( x ) D^*=\frac{p_{r}(x)}{p_{r}(x)+p_{\theta}(x)} D=pr(x)+pθ(x)pr(x)
而当判别器固定时,生成器的目标函数为:
max ⁡ θ ( E z ∼ p ( z ) [ log ⁡ D ( G ( z , θ ) , ϕ ) ] ) \max _{\theta}\left(\mathbb{E}_{\mathrm{z} \sim p(\mathrm{z})}[\log D(G(\mathbf{z}, \theta), \phi)]\right) θmax(Ezp(z)[logD(G(z,θ),ϕ)])
那么将 D ∗ D^* D的表达式代入上式有
L ′ ( G ∣ D ⋆ ) = E x ∼ p θ ( x ) [ log ⁡ D ⋆ ( x ) ] = E x ∼ p θ ( x ) [ log ⁡ p r ( x ) p r ( x ) + p θ ( x ) ⋅ p θ ( x ) p θ ( x ) ] = − E x ∼ p θ ( x ) [ log ⁡ p θ ( x ) p r ( x ) ] + E x ∼ p θ ( x ) [ log ⁡ p θ ( x ) p r ( x ) + p θ ( x ) ] = − D K L ( p θ ∥ p r ) + E x ∼ p θ ( x ) [ log ⁡ ( 1 − D ⋆ ( x ) ) ] = − D K L ( p θ ∥ p r ) + 2 D J S ( p r ∥ p θ ) − 2 log ⁡ 2 − E x ∼ p r ( x ) [ log ⁡ D ⋆ ( x ) ] \begin{array}{l}{\mathcal{L}^{\prime}\left(G | D^{\star}\right)=\mathbb{E}_{\mathbf{x} \sim p_{\theta}(\mathbf{x})}\left[\log D^{\star}(\mathbf{x})\right]} \\ {\quad=\mathbb{E}_{\mathbf{x} \sim p_{\theta}(\mathbf{x})}\left[\log \frac{p_{r}(\mathbf{x})}{p_{r}(\mathbf{x})+p_{\theta}(\mathbf{x})} \cdot \frac{p_{\theta}(\mathbf{x})}{p_{\theta}(\mathbf{x})}\right]} \\ {=-\mathbb{E}_{\mathbf{x} \sim p_{\theta}(\mathbf{x})}\left[\log \frac{p_{\theta}(\mathbf{x})}{p_{r}(\mathbf{x})}\right]+\mathbb{E}_{\mathbf{x} \sim p_{\theta}(\mathbf{x})}\left[\log \frac{p_{\theta}(\mathbf{x})}{p_{r}(\mathbf{x})+p_{\theta}(\mathbf{x})}\right]} \\ \begin{array}{l}{=-D_{\mathrm{KL}}\left(p_{\theta} \| p_{r}\right)+\mathbb{E}_{\mathrm{x} \sim p_{\theta}(\mathrm{x})}\left[\log \left(1-D^{\star}(\mathrm{x})\right)\right]} \\ {=-D_{\mathrm{KL}}\left(p_{\theta} \| p_{r}\right)+2 D_{\mathrm{JS}}\left(p_{r} \| p_{\theta}\right)-2 \log 2-\mathbb{E}_{\mathrm{x} \sim p_{r}(\mathrm{x})}\left[\log D^{\star}(\mathrm{x})\right]}\end{array} \end{array} L(GD)=Expθ(x)[logD(x)]=Expθ(x)[logpr(x)+pθ(x)pr(x)pθ(x)pθ(x)]=Expθ(x)[logpr(x)pθ(x)]+Expθ(x)[logpr(x)+pθ(x)pθ(x)]=DKL(pθpr)+Expθ(x)[log(1D(x))]=DKL(pθpr)+2DJS(prpθ)2log2Expr(x)[logD(x)]
其中后两项为常数,只有前两项与生成器有关,所以可以将生成器的目标函数表示为
max ⁡ θ L ′ ( G ∣ D ⋆ ) = min ⁡ θ D K L ( p θ ∥ p r ) − 2 D J S ( p r ∥ p θ ) \max _{\theta} \mathcal{L}^{\prime}\left(G | D^{\star}\right)=\min _{\theta} D_{\mathrm{KL}}\left(p_{\theta} \| p_{r}\right)-2 D_{\mathrm{JS}}\left(p_{r} \| p_{\theta}\right) θmaxL(GD)=θminDKL(pθpr)2DJS(prpθ)
那么根据原论文中的介绍,其中第二项的 2 D J S ( p r ∥ p θ ) 2 D_{\mathrm{JS}}\left(p_{r} \| p_{\theta}\right) 2DJS(prpθ)为有界函数,因此 L \mathcal{L} L主要受逆向KL散度 D K L ( p θ ∥ p r ) D_{\mathrm{KL}}\left(p_{\theta} \| p_{r}\right) DKL(pθpr)的影响,因此为了更快的收敛,生成器会倾向于生成一些已经骗过判别器的样本,这样的话,样本的多样性就会下降,从而造成了**模式坍缩(model collapse)**的问题。


为什么当 L \mathcal{L} L主要受逆向KL散度 D K L ( p θ ∥ p r ) D_{\mathrm{KL}}\left(p_{\theta} \| p_{r}\right) DKL(pθpr)的影响时就会出现模式坍缩呢?这要从逆向KL散度的性质来看。我们知道KL散度是非对称的,印象按照表达式中分布顺序的不同,可以分为正向KL散度和逆向KL散度,表达如下所示
D K L ( p r ∥ p θ ) = ∫ p r ( x ) log ⁡ p r ( x ) p θ ( x ) d x D K L ( p θ ∥ p r ) = ∫ p θ ( x ) log ⁡ p θ ( x ) p r ( x ) d x \begin{aligned} D_{\mathrm{KL}}\left(p_{r} \| p_{\theta}\right) &=\int p_{r}(\mathrm{x}) \log \frac{p_{r}(\mathrm{x})}{p_{\theta}(\mathrm{x})} d \mathrm{x} \\ D_{\mathrm{KL}}\left(p_{\theta} \| p_{r}\right) &=\int p_{\theta}(\mathrm{x}) \log \frac{p_{\theta}(\mathrm{x})}{p_{r}(\mathrm{x})} d \mathrm{x} \end{aligned} DKL(prpθ)DKL(pθpr)=pr(x)logpθ(x)pr(x)dx=pθ(x)logpr(x)pθ(x)dx
在前向KL散度中:

  • p x → 0 p_{x} \rightarrow 0 px0 p θ > 0 p_{\theta}>0 pθ>0时,积分号内整体趋近于0,所以 p θ ( x ) p_{\theta}(x) pθ(x)的取值对于KL散度的计算不起任何作用
  • p x > 0 p_{x} > 0 px>0 p θ → 0 p_{\theta} \rightarrow0 pθ0时,积分号内整体趋近于 ∞ \infty ,所以KL散度会变得非常大

从中我们可以看出,前向KL散度会鼓励模型分布 p θ ( x ) p_{\theta}(x) pθ(x) 尽可能的覆盖所有真实分布 p r ( x ) > 0 p_{r}(x) >0 pr(x)>0的点,而不用会回避 p r ( x ) ≈ 0 p_{r}(x) \approx 0 pr(x)0的点。换言之,如果我们使用前向KL散度来衡量两个分布,生成器会更加倾向于生成多样性更好的样本。

而在逆向的KL散度中

  • p x → 0 p_{x} \rightarrow 0 px0 p θ > 0 p_{\theta}>0 pθ>0时,积分号内整体趋近于 ∞ \infty ,即当 p θ ( x ) p_{\theta}(x) pθ(x)趋近于0时,而 p θ ( x ) p_{\theta}(x) pθ(x)有一定的密度时,逆向KL散度的值就会变得非常大
  • p θ → 0 p_{\theta} \rightarrow0 pθ0时,无论 p r ( x ) p_{r}(x) pr(x)如何取值,积分号内的整体都将趋近于0

从中我们可以看出,逆向KL散度会鼓励模型分布 p θ ( x ) p_{\theta}(x) pθ(x) 尽可能避开所有真实分布 p r ( x ) ≈ 0 p_{r}(x) \approx 0 pr(x)0 的点,而不需要考虑是否覆盖所有 p r ( x ) > 0 p_{r}(x) > 0 pr(x)>0的点。这样的话,只要真实分布不趋近于0,模型就会尽量生成类似于已接近真实分布的新样本,而不是去生成所有覆盖真实分布的样本。

形象的表示如下


在这里插入图片描述

因此,如果使用逆向KL散度作为衡量手段的话,就会出现模式坍缩的问题。为了解决这个问题,不少人针对两个分布之间的衡量提出了很多GAN的变体,例如WGAN、Improved-WAN、LSGAN等等。

邱锡鹏《神经网络与深度学习》13.3.5.1节

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值