From 8f0d6daa367c0333abafb6aadbf3066422964039 Mon Sep 17 00:00:00 2001 From: Vikram Date: Sat, 25 Feb 2017 00:42:04 -0800 Subject: [PATCH] Update basic_operations.ipynb --- notebooks/1_Introduction/basic_operations.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/notebooks/1_Introduction/basic_operations.ipynb b/notebooks/1_Introduction/basic_operations.ipynb index 92b06f5d..ee8ea8e3 100644 --- a/notebooks/1_Introduction/basic_operations.ipynb +++ b/notebooks/1_Introduction/basic_operations.ipynb @@ -59,7 +59,7 @@ "source": [ "# Launch the default graph.\n", "with tf.Session() as sess:\n", - " print \"a=2, b=3\"\n", + " print \"a: %i\" % sess.run(a), \"b: %i\" % sess.run(b)\n", " print \"Addition with constants: %i\" % sess.run(a+b)\n", " print \"Multiplication with constants: %i\" % sess.run(a*b)" ] @@ -217,4 +217,4 @@ }, "nbformat": 4, "nbformat_minor": 0 -} \ No newline at end of file +}