zoukankan      html  css  js  c++  java
  • 生成对抗网络

    Generative Adversarial Networks

    Throughout most of this book, we have talked about how to make predictions. In some form or another, we used deep neural networks learned mappings from data points to labels. This kind of learning is called discriminative learning, as in, we'd like to be able to discriminate between photos cats and photos of dogs. Classifiers and regressors are both examples of discriminative learning. And neural networks trained by backpropagation have upended everything we thought we knew about discriminative learning on large complicated datasets. Classification accuracies on high-res images has gone from useless to human-level (with some caveats) in just 5-6 years. We will spare you another spiel about all the other discriminative tasks where deep neural networks do astoundingly well.

    But there is more to machine learning than just solving discriminative tasks. For example, given a large dataset, without any labels, we might want to learn a model that concisely captures the characteristics of this data. Given such a model, we could sample synthetic data points that resemble the distribution of the training data. For example, given a large corpus of photographs of faces, we might want to be able to generate a new photorealistic image that looks like it might plausibly have come from the same dataset. This kind of learning is called generative modeling.

    Until recently, we had no method that could synthesize novel photorealistic images. But the success of deep neural networks for discriminative learning opened up new possibilities. One big trend over the last three years has been the application of discriminative deep nets to overcome challenges in problems that we do not generally think of as supervised learning problems. The recurrent neural network language models are one example of using a discriminative network (trained to predict the next character) that once trained can act as a generative model.

    In 2014, a breakthrough paper introduced Generative adversarial networks (GANs) Goodfellow.Pouget-Abadie.Mirza.ea.2014, a clever new way to leverage the power of discriminative models to get good generative models. At their heart, GANs rely on the idea that a data generator is good if we cannot tell fake data apart from real data. In statistics, this is called a two-sample test - a test to answer the question whether datasets (X={x_1,ldots, x_n}) and (X'={x'_1,ldots, x'_n}) were drawn from the same distribution. The main difference between most statistics papers and GANs is that the latter use this idea in a constructive way. In other words, rather than just training a model to say "hey, these two datasets do not look like they came from the same distribution", they use the two-sample test to provide training signals to a generative model. This allows us to improve the data generator until it generates something that resembles the real data. At the very least, it needs to fool the classifier. Even if our classifier is a state of the art deep neural network.

    Image Name

    The GAN architecture is illustrated.As you can see, there are two pieces in GAN architecture - first off, we need a device (say, a deep network but it really could be anything, such as a game rendering engine) that might potentially be able to generate data that looks just like the real thing. If we are dealing with images, this needs to generate images. If we are dealing with speech, it needs to generate audio sequences, and so on. We call this the generator network. The second component is the discriminator network. It attempts to distinguish fake and real data from each other. Both networks are in competition with each other. The generator network attempts to fool the discriminator network. At that point, the discriminator network adapts to the new fake data. This information, in turn is used to improve the generator network, and so on.

    The discriminator is a binary classifier to distinguish if the input (x) is real (from real data) or fake (from the generator). Typically, the discriminator outputs a scalar prediction (oinmathbb R) for input (mathbf x), such as using a dense layer with hidden size 1, and then applies sigmoid function to obtain the predicted probability (D(mathbf x) = 1/(1+e^{-o})). Assume the label (y) for the true data is (1) and (0) for the fake data. We train the discriminator to minimize the cross-entropy loss, i.e.,

    [ min_D { - y log D(mathbf x) - (1-y)log(1-D(mathbf x)) }, ]

    For the generator, it first draws some parameter (mathbf zinmathbb R^d) from a source of randomness, e.g., a normal distribution (mathbf z sim mathcal{N} (0, 1)). We often call (mathbf z) as the latent variable. It then applies a function to generate (mathbf x'=G(mathbf z)). The goal of the generator is to fool the discriminator to classify (mathbf x'=G(mathbf z)) as true data, i.e., we want (D( G(mathbf z)) approx 1). In other words, for a given discriminator (D), we update the parameters of the generator (G) to maximize the cross-entropy loss when (y=0), i.e.,

    [ max_G { - (1-y) log(1-D(G(mathbf z))) } = max_G { - log(1-D(G(mathbf z))) }. ]

    If the discriminator does a perfect job, then (D(mathbf x')approx 0) so the above loss near 0, which results the gradients are too small to make a good progress for the generator. So commonly we minimize the following loss:

    [ min_G { - y log(D(G(mathbf z))) } = min_G { - log(D(G(mathbf z))) }, ]

    which is just feed (mathbf x'=G(mathbf z)) into the discriminator but giving label (y=1).

    To sum up, (D) and (G) are playing a "minimax" game with the comprehensive objective function:

    [min_D max_G { -E_{x sim ext{Data}} log D(mathbf x) - E_{z sim ext{Noise}} log(1 - D(G(mathbf z))) }. ]

    Many of the GANs applications are in the context of images. As a demonstration purpose, we are going to content ourselves with fitting a much simpler distribution first. We will illustrate what happens if we use GANs to build the world's most inefficient estimator of parameters for a Gaussian. Let's get started.

    %matplotlib inline
    import matplotlib.pyplot as plt
    from torch.utils.data import DataLoader
    from torch import nn
    import numpy as np
    from torch.autograd import Variable
    import torch
    

    Generate some "real" data

    Since this is going to be the world's lamest example, we simply generate data drawn from a Gaussian.

    X=np.random.normal(size=(1000,2))
    A=np.array([[1,2],[-0.1,0.5]])
    b=np.array([1,2])
    data=X.dot(A)+b
    

    Let's see what we got. This should be a Gaussian shifted in some rather arbitrary way with mean (b) and covariance matrix (A^TA).

    plt.figure(figsize=(3.5,2.5))
    plt.scatter(X[:100,0],X[:100,1],color='red')
    plt.show()
    plt.figure(figsize=(3.5,2.5))
    plt.scatter(data[:100,0],data[:100,1],color='blue')
    plt.show()
    print("The covariance matrix is
    %s" % np.dot(A.T, A))
    
    The covariance matrix is
    [[1.01 1.95]
     [1.95 4.25]]
    
    batch_size=8
    data_iter=DataLoader(data,batch_size=batch_size)
    

    Generator

    Our generator network will be the simplest network possible - a single layer linear model. This is since we will be driving that linear network with a Gaussian data generator. Hence, it literally only needs to learn the parameters to fake things perfectly.

    class net_G(nn.Module):
        def __init__(self):
            super(net_G,self).__init__()
            self.model=nn.Sequential(
                nn.Linear(2,2),
            )
            self._initialize_weights()
        def forward(self,x):
            x=self.model(x)
            return x
        def _initialize_weights(self):
            for m in self.modules():
                if isinstance(m,nn.Linear):
                    m.weight.data.normal_(0,0.02)
                    m.bias.data.zero_()
    

    Discriminator

    For the discriminator we will be a bit more discriminating: we will use an MLP with 3 layers to make things a bit more interesting.

    class net_D(nn.Module):
        def __init__(self):
            super(net_D,self).__init__()
            self.model=nn.Sequential(
                nn.Linear(2,5),
                nn.Tanh(),
                nn.Linear(5,3),
                nn.Tanh(),
                nn.Linear(3,1),
                nn.Sigmoid()
            )
            self._initialize_weights()
        def forward(self,x):
            x=self.model(x)
            return x
        def _initialize_weights(self):
            for m in self.modules():
                if isinstance(m,nn.Linear):
                    m.weight.data.normal_(0,0.02)
                    m.bias.data.zero_()
    

    Training

    First we define a function to update the discriminator.

    # Saved in the d2l package for later use
    def update_D(X,Z,net_D,net_G,loss,trainer_D):
        batch_size=X.shape[0]
        Tensor=torch.FloatTensor
        ones=Variable(Tensor(np.ones(batch_size))).view(batch_size,1)
        zeros = Variable(Tensor(np.zeros(batch_size))).view(batch_size,1)
        real_Y=net_D(X.float())
        fake_X=net_G(Z)
        fake_Y=net_D(fake_X)
        loss_D=(loss(real_Y,ones)+loss(fake_Y,zeros))/2
        loss_D.backward()
        trainer_D.step()
        return float(loss_D.sum())
    

    The generator is updated similarly. Here we reuse the cross-entropy loss but change the label of the fake data from (0) to (1).

    # Saved in the d2l package for later use
    def update_G(Z,net_D,net_G,loss,trainer_G):
        batch_size=Z.shape[0]
        Tensor=torch.FloatTensor
        ones=Variable(Tensor(np.ones((batch_size,)))).view(batch_size,1)
        fake_X=net_G(Z)
        fake_Y=net_D(fake_X)
        loss_G=loss(fake_Y,ones)
        loss_G.backward()
        trainer_G.step()
        return float(loss_G.sum())
    

    Both the discriminator and the generator performs a binary logistic regression with the cross-entropy loss. We use Adam to smooth the training process. In each iteration, we first update the discriminator and then the generator. We visualize both losses and generated examples.

    def train(net_D,net_G,data_iter,num_epochs,lr_D,lr_G,latent_dim,data):
        loss=nn.BCELoss()
        Tensor=torch.FloatTensor
        trainer_D=torch.optim.Adam(net_D.parameters(),lr=lr_D)
        trainer_G=torch.optim.Adam(net_G.parameters(),lr=lr_G)
        plt.figure(figsize=(7,4))
        d_loss_point=[]
        g_loss_point=[]
        d_loss=0
        g_loss=0
        for epoch in range(1,num_epochs+1):
            d_loss_sum=0
            g_loss_sum=0
            batch=0
            for X in data_iter:
                batch+=1
                X=Variable(X)
                batch_size=X.shape[0]
                Z=Variable(Tensor(np.random.normal(0,1,(batch_size,latent_dim))))
                trainer_D.zero_grad()
                d_loss = update_D(X, Z, net_D, net_G, loss, trainer_D)
                d_loss_sum+=d_loss
                trainer_G.zero_grad()
                g_loss = update_G(Z, net_D, net_G, loss, trainer_G)
                g_loss_sum+=g_loss
            d_loss_point.append(d_loss_sum/batch)
            g_loss_point.append(g_loss_sum/batch)
        plt.ylabel('Loss', fontdict={'size': 14})
        plt.xlabel('epoch', fontdict={'size': 14})
        plt.xticks(range(0,num_epochs+1,3))
        plt.plot(range(1,num_epochs+1),d_loss_point,color='orange',label='discriminator')
        plt.plot(range(1,num_epochs+1),g_loss_point,color='blue',label='generator')
        plt.legend()
        plt.show()
        print(d_loss,g_loss)
        
        Z =Variable(Tensor( np.random.normal(0, 1, size=(100, latent_dim))))
        fake_X=net_G(Z).detach().numpy()
        plt.figure(figsize=(3.5,2.5))
        plt.scatter(data[:,0],data[:,1],color='blue',label='real')
        plt.scatter(fake_X[:,0],fake_X[:,1],color='orange',label='generated')
        plt.legend()
        plt.show()
    

    Now we specify the hyper-parameters to fit the Gaussian distribution.

    if __name__ == '__main__':
        lr_D,lr_G,latent_dim,num_epochs=0.05,0.005,2,20
        generator=net_G()
        discriminator=net_D()
        train(discriminator,generator,data_iter,num_epochs,lr_D,lr_G,latent_dim,data)
    
    0.6932446360588074 0.6927103996276855
    

    Summary

    • Generative adversarial networks (GANs) composes of two deep networks, the generator and the discriminator.
    • The generator generates the image as much closer to the true image as possible to fool the discriminator, via maximizing the cross-entropy loss, i.e., (max log(D(mathbf{x'}))).
    • The discriminator tries to distinguish the generated images from the true images, via minimizing the cross-entropy loss, i.e., (min - y log D(mathbf{x}) - (1-y)log(1-D(mathbf{x}))).

    Exercises

    • Does an equilibrium exist where the generator wins, i.e. the discriminator ends up unable to distinguish the two distributions on finite samples?
  • 相关阅读:
    WebView断网提示
    Android连续点击多次事件的实现
    Android ADB Server启动失败
    Android Studio撤销与SVN的关联
    SVN拉取后撤销,恢复未拉取之前的状态
    如何通过报表单元格右键控制报表跳转到不同链接地址
    如何提高报表的取数性能
    如何实现参数级联查询
    如何实现参数和报表间的联动效果
    如何实现报表直接打印需求
  • 原文地址:https://www.cnblogs.com/hichens/p/12355040.html
Copyright © 2011-2022 走看看