Hi, recently I've been studying your code, especially on the conditional DCGAN you made for MNIST dataset.
I see that you concatenated the condition on every layer right after BatchNorm and ReLu, but I still get puzzled with the conv_cond_concat function that you use to concat the condition into hidden layer. On some layer, you simply use T.concatenate to join them, but on the other layer, you join them using conv_cond_concat function as described below
Hi, recently I've been studying your code, especially on the conditional DCGAN you made for MNIST dataset.
I see that you concatenated the condition on every layer right after BatchNorm and ReLu, but I still get puzzled with the
conv_cond_concat
function that you use to concat the condition into hidden layer. On some layer, you simply useT.concatenate
to join them, but on the other layer, you join them usingconv_cond_concat
function as described belowMy questions are,
T.concatenate
?y
, I assume you are depth-concatenating it. Am I correct?