referring to https://github.com/Newmu/dcgan_code/blob/master/faces/train_uncond_dcgan.py#L118 I tried adding my own bias just before the lrelu, but it is hard to tell if it helps: ``` b = bias_ifn((ndf), 'db') ... h = lrelu(dnn_conv(X, w, subsample=(2, 2), border_mode=(2, 2))+b.dimshuffle('x', 0, 'x', 'x')) ```
referring to https://github.com/Newmu/dcgan_code/blob/master/faces/train_uncond_dcgan.py#L118
I tried adding my own bias just before the lrelu, but it is hard to tell if it helps: