I am trying to get the value of a full feature matrix.
Here is my simplified code
aTensor is assigned
aTensor = tf.nn.relu(tf.nn.bias_add(tf.nn.conv2d(image1, w, strides=[1,1,1,1], padding='SAME'),b))
Trying to get detailed data obtained by aTensor
print aTensor
I get following
Tensor("Relu_1:0", shape=TensorShape([Dimension(None), Dimension(5), Dimension(5), Dimension(8)]), dtype=float32)
How can I get the values stored in "Dimension(5), Dimension(5), Dimension(8)
"?
Many thanks