aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/grid_rnn
diff options
context:
space:
mode:
authorGravatar Illia Polosukhin <ipolosukhin@google.com>2016-11-03 14:46:06 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-11-03 16:09:01 -0700
commitcbd3cacfb73bbea912b9d01c2540187684f751a7 (patch)
treec2c22af2d05583491b1370dcabdb2e83cb61e2ee /tensorflow/contrib/grid_rnn
parent703fce57eaae725c4ae4b0bd23629c4f04a9de16 (diff)
Replace usages initialize_all_variables -> global_variables_initializer
Change: 138128703
Diffstat (limited to 'tensorflow/contrib/grid_rnn')
-rw-r--r--tensorflow/contrib/grid_rnn/python/kernel_tests/grid_rnn_test.py38
1 files changed, 19 insertions, 19 deletions
diff --git a/tensorflow/contrib/grid_rnn/python/kernel_tests/grid_rnn_test.py b/tensorflow/contrib/grid_rnn/python/kernel_tests/grid_rnn_test.py
index abd06ffa26..c7b14eff40 100644
--- a/tensorflow/contrib/grid_rnn/python/kernel_tests/grid_rnn_test.py
+++ b/tensorflow/contrib/grid_rnn/python/kernel_tests/grid_rnn_test.py
@@ -37,7 +37,7 @@ class GridRNNCellTest(tf.test.TestCase):
self.assertEqual(g.get_shape(), (1, 2))
self.assertEqual(s.get_shape(), (1, 8))
- sess.run([tf.initialize_all_variables()])
+ sess.run([tf.global_variables_initializer()])
res = sess.run(
[g, s], {x: np.array([[1., 1., 1.]]),
m: np.array([[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8]])})
@@ -75,7 +75,7 @@ class GridRNNCellTest(tf.test.TestCase):
self.assertEqual(g.get_shape(), (1, 2))
self.assertEqual(s.get_shape(), (1, 8))
- sess.run([tf.initialize_all_variables()])
+ sess.run([tf.global_variables_initializer()])
res = sess.run(
[g, s], {x: np.array([[1., 1., 1.]]),
m: np.array([[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8]])})
@@ -107,7 +107,7 @@ class GridRNNCellTest(tf.test.TestCase):
self.assertEqual(g.get_shape(), (1, 2))
self.assertEqual(s.get_shape(), (1, 4))
- sess.run([tf.initialize_all_variables()])
+ sess.run([tf.global_variables_initializer()])
res = sess.run([g, s], {x: np.array([[1., 1., 1.]]),
m: np.array([[0.1, 0.2, 0.3, 0.4]])})
self.assertEqual(res[0].shape, (1, 2))
@@ -131,7 +131,7 @@ class GridRNNCellTest(tf.test.TestCase):
self.assertEqual(g.get_shape(), (1, 2))
self.assertEqual(s.get_shape(), (1, 8))
- sess.run([tf.initialize_all_variables()])
+ sess.run([tf.global_variables_initializer()])
res = sess.run(
[g, s], {x: np.array([[1., 1., 1.]]),
m: np.array([[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8]])})
@@ -155,7 +155,7 @@ class GridRNNCellTest(tf.test.TestCase):
self.assertEqual(g.get_shape(), (1, 2))
self.assertEqual(s.get_shape(), (1, 8))
- sess.run([tf.initialize_all_variables()])
+ sess.run([tf.global_variables_initializer()])
res = sess.run(
[g, s], {x: np.array([[1., 1., 1.]]),
m: np.array([[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8]])})
@@ -179,7 +179,7 @@ class GridRNNCellTest(tf.test.TestCase):
self.assertEqual(g.get_shape(), (1, 2))
self.assertEqual(s.get_shape(), (1, 4))
- sess.run([tf.initialize_all_variables()])
+ sess.run([tf.global_variables_initializer()])
res = sess.run([g, s], {x: np.array([[1., 1., 1.]]),
m: np.array([[0.1, 0.2, 0.3, 0.4]])})
self.assertEqual(res[0].shape, (1, 2))
@@ -203,7 +203,7 @@ class GridRNNCellTest(tf.test.TestCase):
self.assertEqual(g.get_shape(), (2, 2))
self.assertEqual(s.get_shape(), (2, 4))
- sess.run([tf.initialize_all_variables()])
+ sess.run([tf.global_variables_initializer()])
res = sess.run(
[g, s], {x: np.array([[1., 1.], [2., 2.]]),
m: np.array([[0.1, 0.1, 0.1, 0.1], [0.2, 0.2, 0.2, 0.2]])})
@@ -227,7 +227,7 @@ class GridRNNCellTest(tf.test.TestCase):
self.assertEqual(g.get_shape(), (2, 2))
self.assertEqual(s.get_shape(), (2, 4))
- sess.run([tf.initialize_all_variables()])
+ sess.run([tf.global_variables_initializer()])
res = sess.run(
[g, s], {x: np.array([[1., 1.], [2., 2.]]),
m: np.array([[0.1, 0.1, 0.1, 0.1], [0.2, 0.2, 0.2, 0.2]])})
@@ -252,7 +252,7 @@ class GridRNNCellTest(tf.test.TestCase):
self.assertEqual(g.get_shape(), (1, 2))
self.assertEqual(s.get_shape(), (1, 2))
- sess.run([tf.initialize_all_variables()])
+ sess.run([tf.global_variables_initializer()])
res = sess.run([g, s], {x: np.array([[1., 1.]]),
m: np.array([[0.1, 0.1]])})
self.assertEqual(res[0].shape, (1, 2))
@@ -276,7 +276,7 @@ class GridRNNCellTest(tf.test.TestCase):
self.assertEqual(g.get_shape(), (1, 2))
self.assertEqual(s.get_shape(), (1, 4))
- sess.run([tf.initialize_all_variables()])
+ sess.run([tf.global_variables_initializer()])
res = sess.run([g, s], {x: np.array([[1., 1., 1.]]),
m: np.array([[0.1, 0.2, 0.3, 0.4]])})
self.assertEqual(res[0].shape, (1, 2))
@@ -292,7 +292,7 @@ class GridRNNCellTest(tf.test.TestCase):
self.assertEqual(g2.get_shape(), (1, 2))
self.assertEqual(s2.get_shape(), (1, 4))
- sess.run([tf.initialize_all_variables()])
+ sess.run([tf.global_variables_initializer()])
res = sess.run([g2, s2], {m: res[1]})
self.assertEqual(res[0].shape, (1, 2))
self.assertEqual(res[1].shape, (1, 4))
@@ -304,7 +304,7 @@ class GridRNNCellTest(tf.test.TestCase):
self.assertEqual(g3.get_shape(), (1, 2))
self.assertEqual(s3.get_shape(), (1, 4))
- sess.run([tf.initialize_all_variables()])
+ sess.run([tf.global_variables_initializer()])
res = sess.run([g3, s3], {m: res[1]})
self.assertEqual(res[0].shape, (1, 2))
self.assertEqual(res[1].shape, (1, 4))
@@ -327,7 +327,7 @@ class GridRNNCellTest(tf.test.TestCase):
self.assertEqual(g.get_shape(), (1, 2))
self.assertEqual(s.get_shape(), (1, 12))
- sess.run([tf.initialize_all_variables()])
+ sess.run([tf.global_variables_initializer()])
res = sess.run([g, s], {x: np.array([[1., 1., 1.]]),
m: np.array([[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7,
0.8, -0.1, -0.2, -0.3, -0.4]])})
@@ -361,7 +361,7 @@ class GridRNNCellTest(tf.test.TestCase):
self.assertEqual(g.get_shape(), (3, 2))
self.assertEqual(s.get_shape(), (0, 0))
- sess.run([tf.initialize_all_variables()])
+ sess.run([tf.global_variables_initializer()])
res = sess.run([g, s], {x: np.array([[1., -1.], [-2, 1], [2, -1]])})
self.assertEqual(res[0].shape, (3, 2))
self.assertEqual(res[1].shape, (0, 0))
@@ -385,7 +385,7 @@ class GridRNNCellTest(tf.test.TestCase):
self.assertEqual(g.get_shape(), (0, 0))
self.assertEqual(s.get_shape(), (1, 4))
- sess.run([tf.initialize_all_variables()])
+ sess.run([tf.global_variables_initializer()])
res = sess.run([g, s], {x: np.array([[1., 1.]]),
m: np.array([[0.1, 0.1, 0.1, 0.1]])})
self.assertEqual(res[0].shape, (0, 0))
@@ -419,7 +419,7 @@ class GridRNNCellTest(tf.test.TestCase):
self.assertEqual(out.dtype, inp.dtype)
with self.test_session() as sess:
- sess.run(tf.initialize_all_variables())
+ sess.run(tf.global_variables_initializer())
input_value = np.ones((batch_size, input_size))
values = sess.run(outputs + [state], feed_dict={inputs[0]: input_value})
@@ -452,7 +452,7 @@ class GridRNNCellTest(tf.test.TestCase):
self.assertEqual(out.dtype, inp.dtype)
with self.test_session() as sess:
- sess.run(tf.initialize_all_variables())
+ sess.run(tf.global_variables_initializer())
input_value = np.ones((batch_size, input_size))
values = sess.run(outputs + [state], feed_dict={inputs[0]: input_value})
@@ -485,7 +485,7 @@ class GridRNNCellTest(tf.test.TestCase):
self.assertEqual(out.dtype, inp.dtype)
with self.test_session() as sess:
- sess.run(tf.initialize_all_variables())
+ sess.run(tf.global_variables_initializer())
input_value = np.ones((batch_size, input_size))
values = sess.run(outputs + [state], feed_dict={inputs[0]: input_value})
@@ -515,7 +515,7 @@ class GridRNNCellTest(tf.test.TestCase):
self.assertEqual(out.dtype, inp.dtype)
with self.test_session() as sess:
- sess.run(tf.initialize_all_variables())
+ sess.run(tf.global_variables_initializer())
input_value = np.ones((batch_size, input_size))
values = sess.run(outputs + [state], feed_dict={inputs[0]: input_value})