Newmu / dcgan_code

Deep Convolutional Generative Adversarial Networks
MIT License
3.42k stars 696 forks source link

a typo? #21

Open cognitronz opened 8 years ago

cognitronz commented 8 years ago

I see this in the ops.py

def conv_cond_concat(x, y): """ concatenate conditioning vector on feature map axis """ return T.concatenate([x, y*T.ones((x.shape[0], y.shape[1], x.shape[2], x.shape[3]))], axis=1)

does it really mean y.shape[1], and not x.shape[1]?