zoukankan      html  css  js  c++  java
  • [Paper Review] Generative Adversarial Nets, 2014

    GANs is supervised learning, so there is only X, no label y. The network tries to learn the data distribution of X, and the goal is to generate new synthetic samples that belong to this distribution. To learn the generator's distribution pg over data X, we define a prior on input noise variables pz(Z), then represent a mapping to data space as G(z,θg), where G is a differentiable function represented by a multilayer perceptron with parameters θg.

    This process is explained very well in reference[2]: GANs seem to generate RV from multi-dimensional noise, but it actually transforms a simple RV to a much more complex RV. We can consider a RV Z as the result of a inversible operation or a process: F(X) = Z, and then X = F-1(Z). If we know the funtion F-1, we could transform a RV belonging to distribution X based on a RV from distribution Z.

    From blue distribution(uniform) to orange distribution(Gaussian)

    The generative model can be thought of as analogous to a team of counterfeiters, trying to produce fake currency and use it without detection, while the discriminative model is analogous to the police, trying to detect the counterfeit currency. Competition in this game drives both teams to improve their methods until the counterfeits are indistiguishable from the genuine articles.

    G(z) is the fake data, and D(x) represents the probability that x came from the data rather than pg. D and G play the following two-player minimax game with value function V (G;D):

    Here is the figure to show how generative model G and discriminative model D improve themselves, in which the first figure ever published in a GAN paper, illustrating a GAN learning to map uniform noise to the normal distribution. Black dots are the real data points, the green curve is the distribution generated by the GAN, and the blue curve is the discriminator’s confidence that a sample in that region is real. Here x denotes the sample space and z the latent space.

     

    Reference:

    [1] Goodfellow, Ian J., et al. Generative Adversarial Networks. June 2014.

    [2] https://towardsdatascience.com/understanding-generative-adversarial-networks-gans-cd6e4651a29

  • 相关阅读:
    ASP.NET Web API中通过URI显示实体中的部分字段
    ASP.NET Web API中把分页信息放Header中返回给前端
    写一个针对IQueryable<T>的扩展方法支持动态排序
    Perl处理和收走子进程(退出状态码和wait)
    Perl多进程
    Perl信号处理
    大话西游之大圣娶亲中的至尊宝和紫霞仙子
    Perl List::Util模块用法详解
    Python面向对象:杂七杂八的知识点
    Python迭代和解析(5):搞懂生成器和yield机制
  • 原文地址:https://www.cnblogs.com/rhyswang/p/11639990.html
Copyright © 2011-2022 走看看