コード例 #1
0
class Sampler():
    def __init__(self, z_dim=8, c_dim=1, scale=10.0, net_size=32):
        self.cppn = CPPN(z_dim=z_dim,
                         c_dim=c_dim,
                         scale=scale,
                         net_size=net_size)
        self.z = self.generate_z(
        )  # saves most recent z here, in case we find a nice image and want the z-vec

    def reinit(self):
        self.cppn.reinit()

    def generate_z(self):
        z = np.random.uniform(-1.0, 1.0,
                              size=(1, self.cppn.z_dim)).astype(np.float32)
        return z

    def generate(self, z=None, x_dim=1080, y_dim=1060, scale=10.0):
        if z is None:
            z = self.generate_z()
        else:
            z = np.reshape(z, (1, self.cppn.z_dim))
        self.z = z
        return self.cppn.generate(z, x_dim, y_dim, scale)[0]

    def train(self, image_path="", z=None, x_dim=1, y_dim=1, scale=10.0):
        if z is None:
            z = self.generate_z()
        else:
            z = np.reshape(z, (1, self.cppn.z_dim))
        self.z = z
        return self.cppn.train(z=z, image_path=image_path, scale=scale)

    def show_image(self, image_data):
        '''
    image_data is a tensor, in [height width depth]
    image_data is NOT the PIL.Image class
    '''
        plt.subplot(1, 1, 1)
        y_dim = image_data.shape[0]
        x_dim = image_data.shape[1]
        c_dim = self.cppn.c_dim
        if c_dim > 1:
            plt.imshow(image_data, interpolation='nearest')
        else:
            plt.imshow(image_data.reshape(y_dim, x_dim),
                       cmap='Greys',
                       interpolation='nearest')
        plt.axis('off')
        plt.show()

    def save_png(self, image_data, filename):
        img_data = np.array(1 - image_data)
        y_dim = image_data.shape[0]
        x_dim = image_data.shape[1]
        c_dim = self.cppn.c_dim
        if c_dim > 1:
            img_data = np.array(img_data.reshape(
                (y_dim, x_dim, c_dim)) * 255.0,
                                dtype=np.uint8)
        else:
            img_data = np.array(img_data.reshape((y_dim, x_dim)) * 255.0,
                                dtype=np.uint8)
        im = Image.fromarray(img_data)
        im.save(filename)

    def to_image(self, image_data):
        # convert to PIL.Image format from np array (0, 1)
        img_data = np.array(1 - image_data)
        y_dim = image_data.shape[0]
        x_dim = image_data.shape[1]
        c_dim = self.cppn.c_dim
        if c_dim > 1:
            img_data = np.array(img_data.reshape(
                (y_dim, x_dim, c_dim)) * 255.0,
                                dtype=np.uint8)
        else:
            img_data = np.array(img_data.reshape((y_dim, x_dim)) * 255.0,
                                dtype=np.uint8)
        im = Image.fromarray(img_data)
        return im
    def save_anim_gif(self, z1, z2, filename, n_frame = 10, duration1 = 0.5, \
                      duration2 = 1.0, duration = 0.1, x_dim = 512, y_dim = 512, scale = 10.0, reverse = True):
        '''
    this saves an animated gif from two latent states z1 and z2
    n_frame: number of states in between z1 and z2 morphing effect, exclusive of z1 and z2
    duration1, duration2, control how long z1 and z2 are shown.  duration controls frame speed, in seconds
    '''
        delta_z = (z2 - z1) / (n_frame + 1)
        total_frames = n_frame + 2
        images = []
        for i in range(total_frames):
            z = z1 + delta_z * float(i)
            images.append(self.to_image(self.generate(z, x_dim, y_dim, scale)))
            print("processing image ", i)
        durations = [duration1] + [duration] * n_frame + [duration2]
        if reverse == True:  # go backwards in time back to the first state
            revImages = list(images)
            revImages.reverse()
            revImages = revImages[1:]
            images = images + revImages
            durations = durations + [duration] * n_frame + [duration1]
        print("writing gif file...")
        writeGif(filename, images, duration=durations)
コード例 #2
0
test = mnist.test_loader

if opt.cuda:
    cuda_gpu = torch.device('cuda:0')
    model = CPPN(cuda_device=cuda_gpu)
    model.cuda()
else:
    model = CPPN()

le = 0
ld = 0
lg = 0

indices_train = np.arange(60000)

model.train()
for epoch in range(opt.n_epochs):
    print("STARTING EPOCH {}".format(epoch))
    for idx, (im, _) in enumerate(train_mnist):
        model.optimizer_discriminator.zero_grad()
        model.optimizer_encoder.zero_grad()
        model.optimizer_generator.zero_grad()

        if opt.cuda:
            im = im.cuda()

        gen, mu, logvar, d_r, d_f = model.forward(im)

        loss_encoder, bce = model.loss_encoder(
            gen, im.view(model.n_points, model.batch_size), mu, logvar)
        loss_discriminator, l_f = model.loss_discriminator(d_f, d_r)