By name, I mean:
tf.placeholder(tf.float32, name='NAME') tf.get_variable("W", [n_in, n_out],initializer=w_init())
I have several placeholders that I want to access from external functions without passing a link, provided that there are those that store these names, how can you get a link to them? (this is all at the time of plotting, not at runtime)
And my second question: how can I get all the variables that contain the given name, regardless of scope?
Example: all my weights have the name "W" in many areas, I want all of them to be included in the list. I do not want to add them manually. The same thing can be done with prejudices, say, I want to make a histogram.
user2180519
source share