zoukankan      html  css  js  c++  java
  • (转) Read-through: Wasserstein GAN

    In a world where everyone has opinions, one man...also has opinions

    Read-through: Wasserstein GAN

    I really, really like the Wasserstein GAN paper. I know it’s already gotten a lot of hype, but I feel like it could use more.

    I also think the theory in the paper scared off a lot of people, which is a bit of a shame. This is my contribution to make the paper more accessible, while hopefully retaining the thrust of the argument.

    Why Is This Paper Important?

    There’s a giant firehose of machine learning papers - how do you decide which ones are worth reading closely?

    For Wasserstein GAN, it was mostly compelling word of mouth.

    • The paper proposes a new GAN training algorithm that works well on the common GAN datasets.
    • Said training algorithm is backed up by theory. In deep learning, not all theory-justified papers have good empirical results, but theory-justified papers with good empirical results have really good empirical results. For those papers, it’s very important to understand their theory, because the theory usually explains why they perform so much better.
    • I heard that in Wasserstein GAN, you can (and should) train the discriminator to convergence. If true, it would remove needing to balance generator updates with discriminator updates, which feels like one of the big sources of black magic for making GANs train.
    • The paper shows a correlation between discriminator loss and perceptual quality. This is actually huge if it holds up well. In my limited GAN experience, one of the big problems is that the loss doesn’t really mean anything, thanks to adversarial training, which makes it hard to judge if models are training or not. Reinforcement learning has a similar problem with its loss functions, but there we at least get mean episode reward. Even a rough quantitative measure of training progress could be good enough to use automated hyperparam optimization tricks, like Bayesian optimization. (See this post and this post for nice introductions to automatic hyperparam tuning.)

    Additionally, I buy the argument that GANs have close connections to actor-critic reinforcement learning. (See Pfau & Vinyals 2017.) RL is definitely one of my research interests. Also, GANs are taking over the world; I should probably keep an eye on GAN papers anyways.

    lacksquare

    At this point, you may want to download the paper yourself, especially if you want more of the theoretical details. To aid anyone who takes me up on this, the section names in this post will match the ones in the paper.

    Introduction

    The paper begins with background on generative models.

    When learning generative models, we assume the data we have comes from some unknown distributionP_rPr​​. (The r stands for real.) We want to learn a distribution P_ hetaPθ​​ that approximates P_rPr​​, where  hetaθ are the parameters of the distribution.

    You can imagine two approaches for doing this.

    • The parameters  hetaθ directly describe a probability density. Meaning, P_ hetaPθ​​ is a function such that P_ heta(x) ge 0Pθ​​(x)0 and int_x P_ heta(x)\, dx = 1x​​Pθ​​(x)dx=1. We optimize P_ hetaPθ​​ through maximum likelihood estimation.
    • The parameters  hetaθ describe a way to transform an existing distribution ZZ. Here, g_ hetagθ​​ is some differentiable function, ZZ is a common distribution (usually uniform or Gaussian), and P_ heta = g_ heta(Z)Pθ​​=gθ​​(Z).

    The paper starts by explaining why the first approach runs into problems.

    Given function P_ hetaPθ​​, the MLE objective is

    max_{ heta in mathbb{R}^d} frac{1}{m}sum_{i=1}^m log P_ heta(x^{(i)})θRd​​max​​m1​​i=1m​​logPθ​​(x(i)​​)

    In the limit, this is equivalent to minimizing the KL-divergence KL(P_r | P_ heta)KL(Pr​​Pθ​​).

    Aside: Why Is This True?

    Recall that for continuous distributions PP and QQ, the KL divergence is

    KL(P || Q) = int_x P(x) log frac{P(x)}{Q(x)} \,dxKL(PQ)=x​​P(x)logQ(x)P(x)​​dx

    In the limit (as m o inftym∞), samples will appear based on the data distribution P_rPr​​, so

    egin{aligned} lim_{m o infty} max_{ heta in mathbb{R}^d} frac{1}{m}sum_{i=1}^m log P_ heta(x^{(i)}) &= max_{ heta in mathbb{R}^d} int_x P_r(x) log P_ heta(x) \, dx \ &= min_{ heta in mathbb{R}^d} -int_x P_r(x) log P_ heta(x) \, dx \ &= min_{ heta in mathbb{R}^d} int_x P_r(x) log P_r(x) \, dx -int_x P_r(x) log P_ heta(x) \, dx \ &= min_{ heta in mathbb{R}^d} KL(P_r | P_ heta) end{aligned}mlim​​θRd​​max​​m1​​i=1m​​logPθ​​(x(i)​​)​​=θRd​​max​​x​​Pr​​(x)logPθ​​(x)dx=θRd​​min​​x​​Pr​​(x)logPθ​​(x)dx=θRd​​min​​x​​Pr​​(x)logPr​​(x)dxx​​Pr​​(x)logPθ​​(x)dx=θRd​​min​​KL(Pr​​Pθ​​)​​

    (Derivations in order: limit of summation turns into integral, flip max to min by negating, add a constant that doesn’t depends on 

    hetaθ, and apply definition of KL divergence.)lacksquare

    Note that if 

    Q(x) = 0Q(x)=0 at an xx where P(x) > 0P(x)>0, the KL divergence goes to +infty+∞. This is bad for the MLE if P_ hetaPθ​​ has low dimensional support, because it’ll be very unlikely that all of P_rPr​​ lies within that support. If even a single data point lies outside P_ hetaPθ​​’s support, the KL divergence will explode.

    To deal with this, we can random noise to 

    P_ hetaPθ​​ when training the MLE. This ensures the distribution is defined everywhere. But now we introduce some error, and empirically people have needed to add a lot of random noise to make models train. That kind of sucks. Additionally, even if we learn a good density P_ hetaPθ​​, it may be computationally expensive to sample from P_ hetaPθ​​.

    This motivates the latter approach, of learning a 

    g_ hetagθ​​ (a generator) to transform a known distribution ZZ. The other motivation is that it’s very easy to generate samples. Given a trained g_ hetagθ​​, simply sample random noise z sim ZzZ, and evaluate g_ heta(z)gθ​​(z). (The downside of this approach is that we don’t explicitly know what P_ hetaPθ​​, but in practice this isn’t that important.)

    To train 

    g_ hetagθ​​ (and by extension P_ hetaPθ​​), we need a measure of distance between distributions.

    (Note: I will use metric, distance function, and divergence interchangeably. I know this isn’t technically accurate. In particular metric and divergence mean different things. I apologize in advance, the three are all heavily conflated in my head.)

    Different metrics (different definitions of distance) induce different sets of convergent sequences. We say distance 

    dd is weaker than distance d'd​​ if every sequence that converges under d'd​​ converges under dd.

    Looping back to generative models, given a distance 

    dd, we can treat d(P_r, P_ heta)d(Pr​​,Pθ​​) as a loss function. Minimizing d(P_r, P_ heta)d(Pr​​,Pθ​​) with respect to  hetaθ will bring P_ hetaPθ​​ close to P_rPr​​. This is principled as long as the mapping  heta mapsto P_ hetaθPθ​​ is continuous (which will be true if g_ hetagθ​​ is a neural net).

    Different Distances

    We know we want to minimize 

    dd, but how do we define dd? This section compares various distances and their properties.

    Now, I’ll be honest, my measure theory is pretty awful. And the paper immediately starts talking about compact metric sets, Borel subsets, and so forth. This is admirable from a theory standpoint. However, in machine learning, we’re usually working with functions that are “nice enough” (differentiable almost everywhere), and can therefore ignore many of the precise definitions without destroying the argument too much. As long as we aren’t doing any bullshit like the , we’re good.

    Cantor set

    On to the distances at play.

    • The Total Variation (TV) distance is
    delta(P_r, P_g) = sup_{A} | P_r(A) - P_g(A) |δ(Pr​​,Pg​​)=Asup​​Pr​​(A)Pg​​(A)

    The Kullback-Leibler (KL) divergence is

    KL(P_r|P_g) = int_x logleft(frac{P_r(x)}{P_g(x)} ight) P_r(x) \,dxKL(Pr​​Pg​​)=x​​log(Pg​​(x)Pr​​(x)​​)Pr​​(x)dx

    This isn’t symmetric. The reverse KL divergence is defined as 

    KL(P_g | P_r)KL(Pg​​Pr​​).

    The Jenson-Shannon (JS) divergence: Let 

    MM be the mixture distribution M = 1/2 P + 1/2 QM=1/2P+1/2Q. ThenJS(P_r,P_g) = KL(P_r|P_m)+KL(P_g|P_m)JS(Pr​​,Pg​​)=KL(Pr​​Pm​​)+KL(Pg​​Pm​​)

    Finally, the Earth Mover (EM) or Wasserstein distance: Let 

    Pi(P_r, P_g)Π(Pr​​,Pg​​) be the set of all joint distributions gammaγ whose marginal distributions are P_rPr​​ and P_gPg​​. Then.W(P_r, P_g) = inf_{gamma in Pi(P_r ,P_g)} mathbb{E}_{(x, y) sim gamma}ig[:|x - y|:ig]W(Pr​​,Pg​​)=γΠ(Pr​​,Pg​​)inf​​E(x,y)γ​​[xy]

    Aside: What’s Up With The Earth Mover Definition?

    The EM distance definition is a bit opaque. It took me a while to understand it, but I was very pleased once I did.

    First, the intuitive goal of the EM distance. Probability distributions are defined by how much mass they put on each point. Imagine we started with distribution 

    P_rPr​​, and wanted to move mass around to change the distribution into P_gPg​​. Moving mass mm by distance dd costs mcdot dmd effort. The earth mover distance is the minimal effort we need to spend.

    Why does the infimum over 

    Pi(P_r, P_g)Π(Pr​​,Pg​​) give the minimal effort? You can think of each gamma in PiγΠ as a transport plan. To execute the plan, for all x,yx,y move gamma(x,y)γ(x,y) mass from xx to yy.

    Every strategy for moving weight can be represented this way. But what properties does the plan need to satisfy to transform 

    P_rP_gPr​​ into Pg​​?
    • The amount of mass that leaves 
    xint_y gamma(x,y) \,dyP_r(x)xx is y​​γ(x,y)dy. This must equal Pr​​(x), the amount of mass originally at x.
    • The amount of mass that enters 
    yy is int_x gamma(x,y) \,dxx​​γ(x,y)dx. This must equal P_g(y)Pg​​(y), the amount of mass that ends up at yy.

    This shows why the marginals of 

    gamma in PiγΠ must be P_rPr​​ and P_gPg​​. For scoring, the effort spent is int_x int_y gamma(x,y) | x - y | \,dy\,dx = mathbb{E}_{(x,y) sim gamma}ig[|x - y|ig]x​​y​​γ(x,y)xydydx=E(x,y)γ​​[xy] Computing the infinum of this over all valid gammaγ gives the earth mover distance.lacksquare

    Now, the paper introduces a simple example to argue why we should care about the Earth-Mover distance.

    Consider probability distributions defined over 

    mathbb{R}^2R2​​. Let the true data distribution be (0, y)(0,y), with yysampled uniformly from U[0,1]U[0,1]. Consider the family of distributions P_ hetaPθ​​, where P_ heta = ( heta, y)Pθ​​=(θ,y), with yy also sampled from U[0, 1]U[0,1].

     

    Picture of distributions described above

    Real and fake distribution when 

    heta = 1θ=1

    We’d like our optimization algorithm to learn to move 

    heta0 heta o 0d(P_0, P_ heta)θ to 0, As θ0, the distance d(P0​​,Pθ​​) should decrease. But for many common distance functions, this doesn’t happen.
    • Total variation: For any 
    heta eq 0A = {(0, y) : y in [0,1]}delta(P_0, P_ heta) = egin{cases} 1 &quad ext{if } heta eq 0~, \ 0 &quad ext{if } heta = 0~. end{cases}θ0, let A={(0,y):y[0,1]}. This givesδ(P0​​,Pθ​​)={10​​if θ0 ,if θ=0 .​​
    • KL divergence and reverse KL divergence: Recall that the KL divergence 
    KL(P|Q)+infty(x,y)P(x,y) > 0Q(x,y) = 0KL(P_0 | P_ heta)( heta, 0.5)KL(P_ heta | P_0)(0, 0.5)KL(P_0 | P_ heta) = KL(P_ heta | P_0) = egin{cases} +infty &quad ext{if } heta eq 0~, \ 0 &quad ext{if } heta = 0~, end{cases}KL(PQ) is +∞ if there is any point (x,y) where P(x,y)>0 and Q(x,y)=0. For KL(P0​​Pθ​​), this is true at (θ,0.5). For KL(Pθ​​P0​​), this is true at (0,0.5).KL(P0​​Pθ​​)=KL(Pθ​​P0​​)={+0​​if θ0 ,if θ=0 ,​​
    • Jenson-Shannon divergence: Consider the mixture 
    M = frac{1}{2} P_0 + frac{1}{2} P_ hetaM=21​​P0​​+21​​Pθ​​, and now look at just one of the KL terms.KL(P_0 | M) = int_{(x,y)} P_0(x,y) log frac{P_0(x,y)}{M(x,y)} \,dy\,dxKL(P0​​M)=(x,y)​​P0​​(x,y)logM(x,y)P0​​(x,y)​​dydx

    For any 

    x,yP_0(x,y) eq 0M(x,y) = frac{1}{2} P_0(x,y)log 2KL(P_ heta | M)JS(P_0, P_ heta) = egin{cases} log 2 &quad ext{if } heta eq 0~, \ 0 &quad ext{if } heta = 0~, end{cases}x,y where P0​​(x,y)0, M(x,y)=21​​P0​​(x,y), so this integral works out to log2. The same is true of KL(Pθ​​M), so the JS divergence isJS(P0​​,Pθ​​)={log20​​if θ0 ,if θ=0 ,​​
    • Earth Mover distance: Because the two distributions are just translations of one another, the best way transport plan moves mass in a straight line from 
    (0, y)(0,y) to ( heta, y)(θ,y). This gives W(P_0, P_ heta) = | heta|W(P0​​,Pθ​​)=θ This example shows that there exist sequences of distributions that don’t converge under the JS, KL, reverse KL, or TV divergence, but which do converge under the EM distance.

     This is especially damning from an optimization perspective - any approach that works by taking the gradient 

    This example also shows that for the JS, KL, reverse KL, and TV divergence, there are cases where the gradient is always 00. abla_ heta d(P_0, P_ heta)θ​​d(P0​​,Pθ​​) will fail in these cases.

    Admittedly, this is a contrived example because the supports are disjoint, but the paper points out that when the supports are low dimensional manifolds in high dimensional space, it’s very easy for the intersection to be measure zero, which is enough to give similarly bad results.

    This argument is then strengthened by the following theorem.

    Let 

    P_rZg_ heta hetaP_ heta = g_ heta(Z)Pr​​ be a fixed distribution. Let Z be a random variable. Let gθ​​ be a deterministic function parametrized by θ, and let Pθ​​=gθ​​(Z). Then,
    • If 
    g hetaW(P_r, P_ heta)g is continuous in θ, so is W(Pr​​,Pθ​​).
    • If 
    gW(P_r, P_ heta)g is sufficiently nice, then W(Pr​​,Pθ​​) is continuous everywhere, and differentiable almost everywhere.
    • Statements 1-2 are false for the Jensen-Shannon divergence 
    JS(P_r, P_ heta)JS(Pr​​,Pθ​​) and all the KLs.

    You’ll need to refer to the paper to see what “sufficiently nice” means, but for our purposes it’s enough to know that it’s satisfied for feedfoward networks that use standard nonlinearites. Thus, out of JS, KL, and Wassertstein distance, only the Wasserstein distance has guarantees of continuity and differentiability, which are both things you really want in a loss function.

    The second theorem shows that not only does the Wasserstein distance give better guarantees, it’s also the weakest of the group.

    Let 

    P(P_n)_{n in mathbb{N}}P be a distribution, and (Pn​​)nN​​ be a sequence of distributions. Then, the following are true about the limit.
    • The following statements are equivalent.
    delta(P_n, P) o 0delta JS(P_n,P) o 0JSδ(Pn​​,P)0 with δ the total variation distance.JS(Pn​​,P)0 with JS the Jensen-Shannon divergence.
    • The following statements are equivalent.
    W(P_n, P) o 0 P_n ightarrow P ightarrow KL(P_n | P) o 0KL(P | P_n) o 0W(Pn​​,P)0.Pn​​P, where → represents convergence in distribution for random variables.KL(Pn​​P)0 or KL(PPn​​)0 imply the statements in (1).
    • The statements in (1) imply the statements in (2).

    Together, this proves that every distribution that converges under the KL, reverse-KL, TV, and JS divergences also converges under the Wasserstein divergence. It also proves that a small earth mover distance corresponds to a small difference in distributions.

    Combined, this shows the Wasserstein distance is a compelling loss function for generative models.

    Wasserstein GAN

    Unfortunately, computing the Wasserstein distance exactly is intractable. Let’s repeat the definition.

    W(P_r, P_g) = inf_{gamma in Pi(P_r ,P_g)} mathbb{E}_{(x, y) sim gamma}ig[:|x - y|:ig]W(Pr​​,Pg​​)=γΠ(Pr​​,Pg​​)inf​​E(x,y)γ​​[xy]

    The paper now shows how we can compute an approximation of this.

    A result from  shows 

    Kantorovich-Rubinstein dualityWW is equivalent toW(P_r, P_ heta) = sup_{|f|_L leq 1} mathbb{E}_{x sim P_r}[f(x)] - mathbb{E}_{x sim P_ heta}[f(x)]W(Pr​​,Pθ​​)=fL​​1sup​​ExPr​​​​[f(x)]ExPθ​​​​[f(x)]

    where the supremum is taken over all 

    11-Lipschitz functions.

    Aside: What Does Lipschitz Mean?

    Let 

    d_XdX​​ and d_YdY​​ be distance functions on spaces XX and YY. A function f: X o Yf:XY is KK-Lipschitz if for all x_1, x_2 in Xx1​​,x2​​X,d_Y(f(x_1), f(x_2)) le K d_X(x_1, x_2)dY​​(f(x1​​),f(x2​​))KdX​​(x1​​,x2​​)

    Intuitively, the slope of a 

    KK-Lipschitz function never exceeds KK, for a more general definition of slope.lacksquare

    If we replace the supremum over 

    11-Lipschitz functions with the supremum over KK-Lipschitz functions, then the supremum is K cdot W(P_r, P_ heta)KW(Pr​​,Pθ​​) instead. (This is true because every KK-Lipschitz function is a 11-Lipschitz function if you divide it by KK, and the Wasserstein objective is linear.)

    The supremum over 

    KK-Lipschitz functions {f : |f|_L le K}{f:fL​​K} is still intractable, but now it’s easier to approximate. Suppose we have a parametrized function family {f_w}_{w in mathcal{W}}{fw​​}wW​​, where ww are the weights andmathcal{W}W is the set of all possible weights. Further suppose these functions are all KK-Lipschitz for some KK. Then we haveegin{aligned} max_{w in mathcal{W}} mathbb{E}_{x sim P_r}[f_w(x)] - mathbb{E}_{x sim P_ heta}[f_w(x)] &le sup_{|f|_L le K} mathbb{E}_{x sim P_r}[f(x)] - mathbb{E}_{x sim P_ heta}[f(x)] \ &= K cdot W(P_r, P_ heta) end{aligned}wWmax​​ExPr​​​​[fw​​(x)]ExPθ​​​​[fw​​(x)]​​fL​​Ksup​​ExPr​​​​[f(x)]ExPθ​​​​[f(x)]=KW(Pr​​,Pθ​​)​​

    For optimization purposes, we don’t even need to know what 

    KK is! It’s enough to know that it exists, and that it’s fixed throughout training process. Sure, gradients of WW will be scaled by an unknown KK, but they’ll also be scaled by the learning rate alphaα, so KK will get absorbed into the hyperparam tuning.

    If 

    {f_w}_{w in mathcal{W}}{fw​​}wW​​ contains the true supremum among KK-Lipschitz functions, this gives the distance exactly. This probably won’t be true. In that case, the approximation’s quality depends on what KK-Lipschitz functions are missing from {f_w}_{w in mathcal{W}}{fw​​}wW​​.

    Now, let’s loop all this back to generative models. We’d like to train 

    P_ heta = g_ heta(Z)Pθ​​=gθ​​(Z) to match P_rPr​​. Intuitively, given a fixed g_ hetagθ​​, we can compute the optimal f_wfw​​ for the Wasserstein distance. We can then backprop through W(P_r, g_ heta(Z))W(Pr​​,gθ​​(Z)) to get the gradient for  hetaθ.egin{aligned} abla_ heta W(P_r, P_ heta) &= abla_ heta (mathbb{E}_{x sim P_r}[f_w(x)] - mathbb{E}_{z sim Z}[f_w(g_ heta(x))]) \ &= -mathbb{E}_{z sim Z}[ abla_ heta f_w(g_ heta(z))] end{aligned}θ​​W(Pr​​,Pθ​​)​​=θ​​(ExPr​​​​[fw​​(x)]EzZ​​[fw​​(gθ​​(x))])=EzZ​​[θ​​fw​​(gθ​​(z))]​​

    The training process has now broken into three steps.

    • For a fixed 
    hetaW(P_r, P_ heta)f_wθ, compute an approximation of W(Pr​​,Pθ​​) by training fw​​ to convergence.
    • Once we find the optimal 
    f_w heta-mathbb{E}_{z sim Z}[ abla_ heta f_w(g_ heta(z))]z sim Zfw​​, compute the θ gradient EzZ​​[θ​​fw​​(gθ​​(z))] by sampling several zZ.
    • Update 
    hetaθ, and repeat the process.

    There’s one final detail. This entire derivation only works when the function family 

    {f_w}_{winmathcal{W}}{fw​​}wW​​ is KK-Lipschitz. To guarantee this is true, we use weight clamping. The weights ww are constrained to lie within [-c, c][c,c], by clipping ww after every update to ww.

    The full algorithm is below.

     

    Picture of algorithm because it was too hard to typeset

    Aside: Compare & Contrast: Standard GANs

    Let’s compare the WGAN algorithm with the standard GAN algorithm.

    In GANS, the discriminator maximizes

    frac{1}{m} sum_{i=1}^m log D(x^{(i)}) + frac{1}{m} sum_{i=1}^m log (1 - D(g_ heta(z^{(i)})))m1​​i=1m​​logD(x(i)​​)+m1​​i=1m​​log(1D(gθ​​(z(i)​​)))

    where we constraint 

    D(x)D(x) to always be a probabiity p in (0, 1)p(0,1).

    In WGANs, nothing requires 

    f_wf_wfw​​ to output a probability. This explains why the authors tend to call fw​​ the critic instead of the discriminator - it’s not explicitly trying to classify inputs as real or fake.
    • The  showed that in the limit, the maximum of the discriminator objective above is the Jenson-Shannon divergence, up to scaling and constant factors.
    original GAN paper

    In WGANs, it’s the Wasserstein distance instead.

    • Although GANs are formulated as a min max problem, in practice we we never train 
    DD to convergence. In fact, usually the discriminator is too strong, and we need to alternate gradient updates between DD and GG to get reasonable generator updates.

    We aren’t updating 

    GG against the Jenson-Shannon divergence, or even an approximation of the Jenson-Shannon divergence, we’re updating GG against an objective that kind of aims towards the JS divergence, but doesn’t go all the way. It certainly works, but in light of the points this paper makes about gradients of the JS divergence, it’s a bit surprising it does work.

    In contrast, because the Wasserstein distance is differentiable nearly everywhere, we can (and should) train 

    f_wfw​​ to convergence before each generator update, to get as accurate an estimate of W(P_r, P_ heta)W(Pr​​,Pθ​​) as possible. (The more accurate W(P_r, P_ heta)W(Pr​​,Pθ​​) is, the more accurate the gradient  abla_ heta W(P_r, P_ heta)θ​​W(Pr​​,Pθ​​).)

    Empirical Results

    First, the authors set up a small experiment to showcase the difference between GAN and WGAN. There are two 1D Gaussian distributions, blue for real and green for fake. Train a GAN discriminator and WGAN critic to optimality, then plot their values over the space. The red curve is the GAN discriminator output, and the cyan curve is the WGAN critic output.

     

    Distribution comparison

    Both identify which distribution is real and which is fake, but the GAN discriminator does so in a way that makes gradients vanish over most of the space. In contrast, the weight clamping in WGAN gives a reasonably nice gradient over everything.

    Next, the Wasserstein loss seems to correlate well with image quality. Here, the authors plot the loss curve over time, along with the generated samples.

     

    Loss curve and photos

    After reading through the paper, this isn’t too surprising. Since we’re training the critic 

    f_wfw​​ to convergence, these critic’s value should be good approximations of K cdot W(P_r, P_ heta)KW(Pr​​,Pθ​​), where KK is whatever the Lipschitz constant is. As argued before, a low W(P_r, P_ heta)W(Pr​​,Pθ​​) means P_rPr​​ and P_ hetaPθ​​ are “close” to one another. It would be more surprising if the critic value  correspond to visual similarity.didn’t

    The image results also look quite good. Compared to the DCGAN baseline on the bedroom dataset, it performs about as well.

     

    WGAN with DCGAN architecture

     

    DCGAN with DCGAN architecture

     WGAN with the same DCGAN architecture.  DCGAN

    Top:Bottom:

    If we remove batch norm from the generator, WGAN still generates okay samples, but DCGAN fails completely.

     

    WGAN with DCGAN architecture, no batch norm

     

    DCGAN with DCGAN architecture, no batch norm

     WGAN with DCGAN architecture, no batch norm.  DCGAN, no batch norm.

    Top:Bottom:

    Finally, we make the generator a feedforward net instead of a convolutional one. This keeps the number of parameters the same, while removing the inductive bias from convolutional models. The WGAN samples are more detailed, and don’t mode collapse as much as standard GAN. In fact, they report never running into mode collapse at all for WGANs!

     

    WGAN with MLP architecture

     

    DCGAN with MLP architecture

     WGAN with MLP architecture.  Standard GAN, same architecture.

    Top:Bottom:

    Follow-Up Questions

    The read-through of the paper ends here. If you’re interested in the Related Work, or the theorem proofs in the Appendix, you’ll need to read the paper.

    This is a rich enough paper to have several natural follow-up questions.

    The weights in 

    f_wfw​​ are clamped to [-c, +c][c,+c].  Based on lurking /r/MachineLearning, the tentative results say that low How important is cc for performance?cc trains more reliably, but high cc trains faster when it does work. I imagine it’s because there’s a discrepancy between {f_w}_{winmathcal{W}}{fw​​}wW​​ and {f: |f|_L le K}{f:fL​​K}, and that discrepancy changes with cc. There could be interesting work in describing that discrepancy, or in finding ways to bring {f_w}_{winmathcal{W}}{fw​​}wW​​ closer to KK-Lipschitz functions while still be optimizable.

     Again, remember there’s an approximation error from optimizing over 

    Given a fixed critic architecture and fixed cc for clamping, can we quantitatively compare different generators by computing the Wasserstein estimate of both?{f_w: w in mathcal{W}}{fw​​:wW} instead of {f: |f|_L le K}{f:fL​​K}, so we may not be able to do much. However, because we fix both the critic architecture and cc, the hope is that most of the error is some universal error that appears in all distributions. If the approximation error doesn’t change too much between distributions, this would give a way to judge generation quality without relying on Mechanical Turk. (And if the error does change a lot, it would probably be interesting to investigate when that happens.)

    The constant 

    KK depends on both cc and the model architecture, and therefore we can’t directly compare the critics between models with different architectures.  Recall the critic objective converges to Is there a way to estimate KK?K cdot W(P_r, P_ heta)KW(Pr​​,Pθ​​), so dividing by KK would normalize the difference between architectures.

    (This actually seems pretty straightforward. Take either a random generator or pretrained generator, then train critics 

    f_wfw​​ from varying architectures and compare their final values. Again, the approximation error could complicate this, but this could be a way to analyze the approximation error itself. Given a few different generators, the change in estimated KK between different distributions would show how important the distribution is to the approximation error.)

     A converged critic gives the most accurate gradient, but it takes more time. In settings where that’s impractical, can a simple alternating gradient scheme work?

    How important is it to train the critic to convergence?

     At a first glance, I’m now very interested in investigating the magnitude of the actor gradients. If they tend to be very large or very small, we may have a similar saturation problem, and adding a Lipschitz bound through weight clamping could help.

    What ideas from this work are applicable to actor-critic RL?

    These ideas apply not just to generative models, but to general distribution matching problems.  One example of this is the . After a decent amount of theory, it derives a GAN-like algorithm for imitation learning. Switching the discriminator to a WGAN approach may give some straightforward wins.

    Are there any low-hanging distribution matching problems that use the Jenson-Shannon or KL divergence instead of the Wasserstein distance?Generative Adversarial Imitation Learning paper
    ← The Default Position Problem
     
  • 相关阅读:
    最大子列和
    喷水装置
    某种排序
    三个水杯
    奇偶数分离
    ASCII码排序(未完)
    1002
    if语句
    6.7
    A+B问题 涉及EOF
  • 原文地址:https://www.cnblogs.com/wangxiaocvpr/p/6440503.html
Copyright © 2011-2022 走看看