diff options
-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 = 128 + n_channel = 64 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 = 128 + n_channel = 64 kernel_size = 3 con1 = Dense(n_channel, activation='tanh')(con) #model settings |