I am trying to present a tensor summary in a tensor. However, I do not see the tensor summary on the board at all. Here is my code:
out = tf.strided_slice(logits, begin=[self.args.uttWindowSize-1, 0], end=[-self.args.uttWindowSize+1, self.args.numClasses], strides=[1, 1], name='softmax_truncated') tf.summary.tensor_summary('softmax_input', out)
where out is the multidimensional tensor. I think there should be something wrong with my code. I probably misused the tensor_summary function.
source share