While debugging, how to print all variables (which is in list format) who are trainable in Tensorflow?
For instance,
tvars = tf.trainable_variables()
I want to check all the variables in tvars (which is list type).
I've already tried the below code which returns error,
myvars = session.run([tvars])
print(myvars)