Skip to content

Instantly share code, notes, and snippets.

@NMZivkovic
Created December 16, 2018 16:21
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
import numpy as np
from keras.datasets import fashion_mnist
from image_helper import ImageHelper
from gan import GAN
(X, _), (_, _) = fashion_mnist.load_data()
X_train = X / 127.5 - 1.
X_train = np.expand_dims(X_train, axis=3)
image_helper = ImageHelper()
generative_advarsial_network = GAN(X_train[0].shape, 100, image_helper)
generative_advarsial_network.train(30000, X_train, batch_size=32)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment