Explorar el Código

Update basic_operations.ipynb

Vikram hace 8 años
padre
commit
8f0d6daa36
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      notebooks/1_Introduction/basic_operations.ipynb

+ 2 - 2
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
-}
+}