diff options
| author | nunzip <np.scarh@gmail.com> | 2019-02-27 22:47:03 +0000 |
|---|---|---|
| committer | nunzip <np.scarh@gmail.com> | 2019-02-27 22:47:03 +0000 |
| commit | c7c740caff2afc4d615e289ef147c6228cca4a0e (patch) | |
| tree | a1b2e70074619b3f42578f5bf7d2f1a6c950dc91 | |
| parent | 508f3feb670506b63b30b6032949913efd8c8ca1 (diff) | |
| download | e4-gan-c7c740caff2afc4d615e289ef147c6228cca4a0e.tar.gz e4-gan-c7c740caff2afc4d615e289ef147c6228cca4a0e.tar.bz2 e4-gan-c7c740caff2afc4d615e289ef147c6228cca4a0e.zip | |
Add import keras
| -rw-r--r-- | cgan.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,6 @@ from __future__ import print_function, division - +import tensorflow.keras as keras +import tensorflow as tf from keras.datasets import mnist from keras.layers import Input, Dense, Reshape, Flatten, Dropout, multiply from keras.layers import BatchNormalization, Activation, Embedding, ZeroPadding2D |
