This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from keras.datasets import mnist | |
from keras.layers import Input, Dense, Reshape, Flatten | |
from keras.layers import BatchNormalization | |
from keras.layers.advanced_activations import LeakyReLU | |
from keras.models import Sequential, Model | |
from keras.optimizers import Adam | |
import matplotlib.pyplot as plt | |
import numpy as np | |