e4dedd15f0dd909f48385867b874519e57ea0363,implementations/aae/aae.py,Encoder,__init__,#Encoder#,45

Before Change


    def __init__(self):
        super(Encoder, self).__init__()

        layers = [  nn.Linear(opt.img_size**2, 512),
                    nn.LeakyReLU(0.2, inplace=True),
                    nn.Linear(512, 512),
                    nn.BatchNorm1d(512),
                    nn.LeakyReLU(0.2, inplace=True),
                    nn.Linear(512, opt.latent_dim)]

        self.model = nn.Sequential(*layers)

    def forward(self, img):
        img_flat = img.view(img.shape[0], -1)
        latent = self.model(img_flat)

After Change


    def __init__(self):
        super(Encoder, self).__init__()

        self.model = nn.Sequential(
            nn.Linear(opt.img_size**2, 512),
            nn.LeakyReLU(0.2, inplace=True),
            nn.Linear(512, 512),
            nn.BatchNorm1d(512),
            nn.LeakyReLU(0.2, inplace=True),
            nn.Linear(512, opt.latent_dim)
        )

    def forward(self, img):
        img_flat = img.view(img.shape[0], -1)
        latent = self.model(img_flat)
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 4

Non-data size: 20

Instances


Project Name: eriklindernoren/PyTorch-GAN
Commit Name: e4dedd15f0dd909f48385867b874519e57ea0363
Time: 2018-04-23
Author: eriklindernoren@gmail.com
File Name: implementations/aae/aae.py
Class Name: Encoder
Method Name: __init__


Project Name: eriklindernoren/PyTorch-GAN
Commit Name: 570cd4f66bdf9c3e4b4bb8fbc31fa24b0bd7cdbd
Time: 2018-04-22
Author: eriklindernoren@live.se
File Name: implementations/aae/aae.py
Class Name: Decoder
Method Name: __init__


Project Name: eriklindernoren/PyTorch-GAN
Commit Name: 570cd4f66bdf9c3e4b4bb8fbc31fa24b0bd7cdbd
Time: 2018-04-22
Author: eriklindernoren@live.se
File Name: implementations/aae/aae.py
Class Name: Encoder
Method Name: __init__


Project Name: eriklindernoren/PyTorch-GAN
Commit Name: e4dedd15f0dd909f48385867b874519e57ea0363
Time: 2018-04-23
Author: eriklindernoren@gmail.com
File Name: implementations/aae/aae.py
Class Name: Decoder
Method Name: __init__