Skip to content

Instantly share code, notes, and snippets.

@NMZivkovic
Created December 16, 2018 16:21
Show Gist options
  • Save NMZivkovic/1181f38cf2129cb1cc2982a7a04089dc to your computer and use it in GitHub Desktop.
Save NMZivkovic/1181f38cf2129cb1cc2982a7a04089dc to your computer and use it in GitHub Desktop.
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