Skip to content

Commit cef6396

Browse files
authored
Merge pull request nfmcclure#147 from crouchred/master
Update tf.sub in Ch2:07_combining_everything_together.ipynb
2 parents 4111ba8 + dc3e680 commit cef6396

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

02_TensorFlow_Way/07_Combining_Everything_Together/07_combining_everything_together.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@
173173
"# x1 - A*x2 + b\n",
174174
"my_mult = tf.matmul(x2_data, A)\n",
175175
"my_add = tf.add(my_mult, b)\n",
176-
"my_output = tf.sub(x1_data, my_add)"
176+
"my_output = tf.subtract(x1_data, my_add)"
177177
]
178178
},
179179
{

0 commit comments

Comments
 (0)