Open gaceladri opened 6 years ago
Hi, The problem may be caused by the version of your Tensorflow and python are not the version I have. You may replace : score_tensor = tf.matmul(hidden, Ws) by: score_tensor =tf.reduce_sum(tf.mul(tf.cast(hidden,tf.float32),Ws),reduction_indices=1) of the related lines. Or, you may just use environment the same as mine for simplicity.
Hi @biuyq, The problem that I have is in logits = tf.matmul(tf.squeeze(pool3), w) I can not see score_tensor
@gaceladri you may try logits = tf.matmul(tf.squeeze(pool3, [1, 2]), w) to replace logits = tf.matmul(tf.squeeze(pool3), w)
@biuyq It worked. Thanks a lot!
And thanks a lot for your awesome work also.
Regards.
tf.reshape(input, shape=[x,x,x,x]) try to convert the shape
@gaceladri you may try logits = tf.matmul(tf.squeeze(pool3, [1, 2]), w) to replace logits = tf.matmul(tf.squeeze(pool3), w)
I am getting out of memory error and the script gets killed
Hi,
Excellent work. I am trying to run CT_gan_cifar_resnet.py and I am getting the next error:
Before this I had to change the line 88 in inception_score.py:
to fix this:
python 3.5