Commit 89fcf0fe authored by Peter Parente's avatar Peter Parente Committed by GitHub

Merge pull request #391 from saulshanabrook/patch-1

Update Tensorflow example
parents 2689d1d3 817da424
...@@ -27,7 +27,7 @@ import tensorflow as tf ...@@ -27,7 +27,7 @@ import tensorflow as tf
hello = tf.Variable('Hello World!') hello = tf.Variable('Hello World!')
sess = tf.Session() sess = tf.Session()
init = tf.initialize_all_variables() init = tf.global_variables_initializer()
sess.run(init) sess.run(init)
sess.run(hello) sess.run(hello)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment