# global variables initialiser
# only w,b
init= tf.global_variables_initializer()
with tf.Session() as session:
session.run(init)
.....
I want a way(operation or any attribute of tf.global_variables_initializer())
to print information about w,b
here.This help to keep check of How many variables I have defined in my graph when it goes bigger.?
Any suggestion will be helpful.