diff options
author | nunzip <np.scarh@gmail.com> | 2019-03-14 17:10:43 +0000 |
---|---|---|
committer | nunzip <np.scarh@gmail.com> | 2019-03-14 17:10:43 +0000 |
commit | 35decb12e21819c00b94d0abf8a8eccd521f87dd (patch) | |
tree | 310b9cb87a92ea887db7d8bd9f7530b680700e48 /ncdcgan.py | |
parent | 6effc451abbde373ef1930b8baa356f7981350d6 (diff) | |
download | e4-gan-35decb12e21819c00b94d0abf8a8eccd521f87dd.tar.gz e4-gan-35decb12e21819c00b94d0abf8a8eccd521f87dd.tar.bz2 e4-gan-35decb12e21819c00b94d0abf8a8eccd521f87dd.zip |
Set medium depth due to time reasons
Diffstat (limited to 'ncdcgan.py')
-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 = 256 + n_channel = 128 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 = 256 + n_channel = 128 kernel_size = 3 con1 = Dense(n_channel, activation='tanh')(con) #model settings |