Skip to content

Commit 8fd6d67

Browse files
authored
Remove outdated TODOs.
1 parent 2248095 commit 8fd6d67

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

site/en/tutorials/eager/automatic_differentiation.ipynb

-4
Original file line numberDiff line numberDiff line change
@@ -268,10 +268,8 @@
268268
"source": [
269269
"x = tf.ones((2, 2))\n",
270270
" \n",
271-
"# TODO(b/78880779): Remove the 'persistent=True' argument and use\n",
272271
"# a single t.gradient() call when the bug is resolved.\n",
273272
"with tf.GradientTape(persistent=True) as t:\n",
274-
" # TODO(ashankar): Explain with \"watch\" argument better?\n",
275273
" t.watch(x)\n",
276274
" y = tf.reduce_sum(x)\n",
277275
" z = tf.multiply(y, y)\n",
@@ -315,8 +313,6 @@
315313
},
316314
"outputs": [],
317315
"source": [
318-
"# TODO(ashankar): Should we use the persistent tape here instead? Follow up on Tom and Alex's discussion\n",
319-
"\n",
320316
"x = tf.constant(1.0) # Convert the Python 1.0 to a Tensor object\n",
321317
"\n",
322318
"with tf.GradientTape() as t:\n",

0 commit comments

Comments
 (0)