diff options
author | nunzip <np.scarh@gmail.com> | 2019-03-14 17:07:32 +0000 |
---|---|---|
committer | nunzip <np.scarh@gmail.com> | 2019-03-14 17:07:32 +0000 |
commit | 6effc451abbde373ef1930b8baa356f7981350d6 (patch) | |
tree | 573d70a0499e84095f2dc423bd62f4f073a2875c | |
parent | 4570936bb6a5d713eba58dba8fc103c517754158 (diff) | |
download | e4-gan-6effc451abbde373ef1930b8baa356f7981350d6.tar.gz e4-gan-6effc451abbde373ef1930b8baa356f7981350d6.tar.bz2 e4-gan-6effc451abbde373ef1930b8baa356f7981350d6.zip |
Increase depth
-rwxr-xr-x | ncdcgan.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -67,7 +67,7 @@ class nCDCGAN(): def build_generator(self, noise, con): - n_channel = 64 + n_channel = 256 kernel_size = 3 con1 = Dense(n_channel, activation='tanh')(con) #model settings @@ -106,7 +106,7 @@ class nCDCGAN(): def build_discriminator(self, img, con): - n_channel = 64 + n_channel = 256 kernel_size = 3 con1 = Dense(n_channel, activation='tanh')(con) #model settings |