Quellcode durchsuchen

Merge pull request #107 from VikramTiwari/patch-1

Update basic_operations.ipynb
Aymeric Damien vor 8 Jahren
Ursprung
Commit
176ba8cd08
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      notebooks/1_Introduction/basic_operations.ipynb

+ 1 - 1
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)"
    ]