Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Tensorflow: How does tf.get_variable work?

Tags:

tensorflow

I have read about tf.get_variable from this question and also a bit from the documentation available at the tensorflow website. However, I am still not clear and was unable to find an answer online.

How does tf.get_variable work? For example:

var1 = tf.Variable(3.,dtype=float64) var2 = tf.get_variable("var1",[],dtype=tf.float64) 

Does it mean that var2 is another variable with initialization similar to var1? Or is var2 an alias for var1 (I tried and it doesn't seem to)?

How are var1 and var2 related?

How is a variable constructed when the variable we are getting doesn't really exist?

like image 760
firewithin Avatar asked Jul 13 '17 07:07

firewithin


People also ask

What is the difference between tf variable and tf get_variable?

As far as I know, Variable is the default operation for making a variable, and get_variable is mainly used for weight sharing.

What is tf Global_variables_initializer ()?

Variable() function in order to create a Variable and define what value it will be initialized with. We then have to explicitly perform an initialization operation by running the session with the tf. global_variables_initializer() method, which allocates the memory for the Variable and sets its initial values.

Is tf variable trainable?

tf. GradientTape watches trainable variables by default: with tf.

How do I assign a value in TensorFlow?

Tensorflow variables represent the tensors whose values can be changed by running operations on them. The assign() is the method available in the Variable class which is used to assign the new tf. Tensor to the variable. The new value must have the same shape and dtype as the old Variable value.


2 Answers

tf.get_variable(name) creates a new variable called name (or add _ if name already exists in the current scope) in the tensorflow graph.

In your example, you're creating a python variable called var1.

The name of that variable in the tensorflow graph is not ** var1, but is Variable:0.

Every node you define has its own name that you can specify or let tensorflow give a default (and always different) one. You can see the name value accessing the name property of the python variable. (ie print(var1.name)).

On your second line, you're defining a Python variable var2 whose name in the tensorflow graph is var1.

The script

import tensorflow as tf  var1 = tf.Variable(3.,dtype=tf.float64) print(var1.name) var2 = tf.get_variable("var1",[],dtype=tf.float64) print(var2.name) 

In fact prints:

Variable:0 var1:0 

If you, instead, want to define a variable (node) called var1 in the tensorflow graph and then getting a reference to that node, you cannot simply use tf.get_variable("var1"), because it will create a new different variable valled var1_1.

This script

var1 = tf.Variable(3.,dtype=tf.float64, name="var1") print(var1.name) var2 = tf.get_variable("var1",[],dtype=tf.float64) print(var2.name) 

prints:

var1:0 var1_1:0 

If you want to create a reference to the node var1, you first:

  1. Have to replace tf.Variable with tf.get_variable. The variables created with tf.Variable can't be shared, while the latter can.

  2. Know what the scope of the var1 is and allow the reuse of that scope when declaring the reference.

Looking at the code is the better way for understanding

import tensorflow as tf  #var1 = tf.Variable(3.,dtype=tf.float64, name="var1") var1 = tf.get_variable(initializer=tf.constant_initializer(3.), dtype=tf.float64, name="var1", shape=()) current_scope = tf.contrib.framework.get_name_scope() print(var1.name) with tf.variable_scope(current_scope, reuse=True):     var2 = tf.get_variable("var1",[],dtype=tf.float64)     print(var2.name) 

outputs:

var1:0 var1:0 
like image 161
nessuno Avatar answered Oct 13 '22 02:10

nessuno


If you define a variable with a name that has been defined before, then TensorFlow throws an exception. Hence, it is convenient to use the tf.get_variable() function instead of tf.Variable(). The function tf.get_variable() returns the existing variable with the same name if it exists, and creates the variable with the specified shape and initializer if it does not exist.

like image 27
concaption Avatar answered Oct 13 '22 02:10

concaption