소스 검색

Merge pull request #107 from VikramTiwari/patch-1

Update basic_operations.ipynb
Aymeric Damien 8 년 전
부모
커밋
176ba8cd08
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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)"
    ]