コード例 #1
0
def main():
    checkDirectory('./many_models/model_images/')
    checkDirectory('./many_models/models/')

    # Variables for different images
    x_dim = 1440
    y_dim = 1080

    color_channels = 1

    # Edit these to make specific types of models
    zs = list(range(3, 4))
    neurons = list(range(15, 20))
    layers = list(range(3, 5))

    tests = [0, 1, 2, 3, 4, 5]  # the different types of networks
    scale = 24

    for z_dim in zs:
        for neurons_per_layer in neurons:
            for number_of_layers in layers:
                for t in tests:
                    # Make a new CPPN
                    interpolations_per_image = 1
                    cppn = CPPN(x_dim,
                                y_dim,
                                z_dim,
                                scale,
                                neurons_per_layer,
                                number_of_layers,
                                color_channels,
                                interpolations_per_image,
                                test=t)
                    cppn.neural_net(True)

                    dict_key = makeKey(z_dim, neurons_per_layer,
                                       number_of_layers, t)

                    # Save the model
                    cppn.save_model(model_name=dict_key,
                                    model_dir='many_models/models',
                                    save_outfile=True)

                    z = np.random.uniform(-1.0, 1.0,
                                          size=(z_dim)).astype(np.float32)

                    # Save a test image
                    filename = "./many_models/model_images/%s.png" % (dict_key)
                    cppn.save_png(z, filename, save=True)

                    cppn.close()

                print('num/l', number_of_layers, 'neur/l', neurons_per_layer,
                      'z', z_dim, 'all_tests completed')
コード例 #2
0
class Window(Frame):

    # Define settings upon initialization. Here you can specify
    def __init__(self,
                 x_dim=1280,
                 y_dim=720,
                 z_dim=5,
                 scale=16,
                 neurons_per_layer=6,
                 number_of_layers=8,
                 color_channels=1,
                 number_of_stills=5,
                 interpolations_per_image=24,
                 file_name='./p.png',
                 model_name=None,
                 outfile=None,
                 model_dir=None,
                 master=None):

        if (model_name == None or outfile == None or model_dir == None):
            print('Supply a model name and outfile!')
            exit(0)

        checkpoint_path = os.path.join(model_dir, model_name)
        outfile_name = checkpoint_path + 'meta_data'
        with open(outfile_name, 'rb') as fp:  # 'outfile' can be renamed
            data = pickle.load(fp)

        x_dim = data[0]
        y_dim = data[1]
        z_dim = data[2]
        scale = data[3]
        neurons_per_layer = data[4]
        number_of_layers = data[5]
        color_channels = data[6]
        test = data[7]

        self.cppn = CPPN(x_dim,
                         y_dim,
                         z_dim,
                         scale,
                         neurons_per_layer,
                         number_of_layers,
                         color_channels,
                         interpolations_per_image,
                         test=test)
        self.cppn.neural_net(True)

        self.cppn.load_model(model_name=model_name, model_dir=model_dir)

        self.outfile = outfile

        self.z_vector = [0] * self.cppn.z_dim

        # parameters that you want to send through the Frame class.
        Frame.__init__(self, master)

        #reference to the master widget, which is the tk window
        self.master = master

        self.varHolders = []
        self.saved_data = []
        self.scaler = DoubleVar()

        self.save_image_name = 'image_name.png'

        #with that, we want to then run init_window, which doesn't yet exist
        self.init_window()

    #Creation of init_window
    def init_window(self):

        # changing the title of our master widget
        self.master.title("GUI")

        # allowing the widget to take the full space of the root window
        self.pack(fill=BOTH, expand=1)

        for i in range(self.cppn.z_dim):
            m = DoubleVar()
            w = Scale(self.master,
                      from_=-2,
                      to=2,
                      variable=m,
                      resolution=.01,
                      command=self.updateValue,
                      orient=HORIZONTAL)
            w.pack(side=LEFT)
            self.varHolders.append(m)

        w = Scale(self.master,
                  from_=1,
                  to=48,
                  variable=self.scaler,
                  resolution=.1,
                  command=self.updateValue,
                  orient=HORIZONTAL)
        w.pack(side=LEFT)

        # creating a button instance
        saveDataButton = Button(self.master,
                                text="save data",
                                command=self.saveData)
        saveDataButton.pack()

        pickleButton = Button(self.master,
                              text="pickle data",
                              command=self.pickleData)
        pickleButton.pack()

    def pickleData(self):
        print('Data pickled!')
        with open(self.outfile, 'wb') as f:  # can change 'outfile'
            pickle.dump(self.saved_data, f)

    def saveData(self):
        print('saved ', len(self.saved_data))
        zs = []
        for value in self.varHolders:
            zs.append(value.get())
        zs.append(self.scaler.get())
        self.saved_data.append(zs)

    def updateValue(self, event):
        for index, value in enumerate(self.varHolders):
            self.z_vector[index] = value.get()
        z = np.array(self.z_vector)
        self.cppn.scale = self.scaler.get()

        # if save set to false, just sets cppn.curImage to image
        self.cppn.save_png(z, self.save_image_name, save=False)
        self.showImg()

    def showImg(self):
        load = self.cppn.curImage
        resized = load.resize((800, 600), Image.ANTIALIAS)
        render = ImageTk.PhotoImage(load)

        # labels can be text or images
        img = Label(self, image=render)
        img.image = render
        img.place(x=0, y=0)