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 = 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  | 
