I'm going a tutorial of Tensorflow.
I would like to display the values of variables W
and b
, which are the weight and bias respectively and placeholders x
, y
by using print
.
Is it possible to display?
print x,y,b,W
What I see currently is as the following
Tensor("Placeholder:0", shape=TensorShape([Dimension(None), Dimension(784)]), dtype=float32)
Tensor("Softmax:0", shape=TensorShape([Dimension(None), Dimension(10)]), dtype=float32)
tensorflow.python.ops.variables.Variable object at 0x1006b0b90>
tensorflow.python.ops.variables.Variable object at 0x101b76410>