Hi guys, I think there's an issue in the output layer of the generator on line 99. I believe it is a variable misnomer from the execution graph (I hope I am wrong)
I think it should be
W = tf.get_variable('W_'+str(i), shape=[tempDim, self.generatorDims[-1]])
instead of
W = tf.get_variable('W'+str(i), shape=[tempDim, self.generatorDims[-1]])
Hi guys, I think there's an issue in the output layer of the generator on line 99. I believe it is a variable misnomer from the execution graph (I hope I am wrong)
I think it should be
instead of