I just started to learn python and want to learn CNN implementation on PyCharm. I debugged code but I could not see/visualize the output values of matrices. I only received from this to h_conv1 = tf.nn.relu(conv1d(x_image, W_conv1) + b_conv1)
this Tensor("Relu:0", shape=(?, 1, 200, 196), dtype=float32)
. As for as I know about this output tensor, it is 196 matrices of 1*200 dimensions. However, I want to know the output values came inside these matrices. For a more clear understanding, here is the example as can be seen in the below-given image:
We have 6 * 6 * 3, 3 matrices of 6 * 6 and we are applying two filters on each so it leads two matrices of 4*4 dimensions. I would like to see these two matrices values in pycharm by using TensorFlow at the time of debugging?