Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
98 views
in Technique[技术] by (71.8m points)

python - How do I get the current value of a Variable?

Suppose we have a variable:

x = tf.Variable(...)

This variable can be updated during the training process using the assign() method.

What is the best way to get the current value of a variable?

I know we could use this:

session.run(x)

But I'm afraid this would trigger a whole chain of operations.

In Theano, you could just do

y = theano.shared(...)
y_vals = y.get_value()

I'm looking for the equivalent thing in TensorFlow.

question from:https://stackoverflow.com/questions/33679382/how-do-i-get-the-current-value-of-a-variable

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

In general, session.run(x) will evaluate only the nodes that are necessary to compute x and nothing else, so it should be relatively cheap if you want to inspect the value of the variable.

Take a look at this great answer https://stackoverflow.com/a/33610914/5543198 for more context.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...