Skip to content

Commit 9e589c4

Browse files
committed
layout fixes
1 parent d26032b commit 9e589c4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

code/ch14/ch14.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -248,11 +248,11 @@
248248
" b = tf.constant(2, name='b') \n",
249249
" c = tf.constant(3, name='c') \n",
250250
"\n",
251-
" t = 2*(a-b) + c\n",
251+
" z = 2*(a-b) + c\n",
252252
" \n",
253253
"## launch the graph\n",
254254
"with tf.Session(graph=g) as sess:\n",
255-
" print('2*(a-b)+c => ', sess.run(t))"
255+
" print('2*(a-b)+c => ', sess.run(z))"
256256
]
257257
},
258258
{
@@ -1331,7 +1331,7 @@
13311331
" t1 = tf.ones(shape=(10, 1), \n",
13321332
" dtype=tf.float32, name='t1')\n",
13331333
" t2 = tf.zeros(shape=(10, 1),\n",
1334-
" dtype=tf.float32, name='t1')\n",
1334+
" dtype=tf.float32, name='t2')\n",
13351335
" print(t1)\n",
13361336
" print(t2)\n",
13371337
" \n",

0 commit comments

Comments
 (0)