Skip to content

Commit b7263d3

Browse files
committed
Point to the autodiff notebook in index.ipynb and math_differential_calculus.ipynb
1 parent 6833f8d commit b7263d3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

index.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"* [Differential Calculus](math_differential_calculus.ipynb)\n",
4242
"\n",
4343
"## Extra Material\n",
44-
"Work in progress\n",
44+
"* [Auto-differentiation](extra_autodiff.ipynb)\n",
4545
"\n",
4646
"## Misc.\n",
4747
"* [Equations](book_equations.pdf) (list of equations in the book)\n"

math_differential_calculus.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -2247,7 +2247,7 @@
22472247
"id": "ebb31wJp72Zn"
22482248
},
22492249
"source": [
2250-
"**Important note:** in Deep Learning, differentiation is almost always performed automatically by the framework you are using (such as TensorFlow or PyTorch). This is called auto-diff, and I did [another notebook](https://github.com/ageron/handson-ml/blob/master/extra_autodiff.ipynb) on that topic. However, you should still make sure you have a good understanding of derivatives, or else they will come and bite you one day, for example when you use a square root in your cost function without realizing that its derivative approaches infinity when $x$ approaches 0 (tip: you should use $\\sqrt{x+\\epsilon}$ instead, where $\\epsilon$ is some small constant, such as $10^{-4}$)."
2250+
"**Important note:** in Deep Learning, differentiation is almost always performed automatically by the framework you are using (such as TensorFlow or PyTorch). This is called auto-diff, and I did [another notebook](https://github.com/ageron/handson-ml2/blob/master/extra_autodiff.ipynb) on that topic. However, you should still make sure you have a good understanding of derivatives, or else they will come and bite you one day, for example when you use a square root in your cost function without realizing that its derivative approaches infinity when $x$ approaches 0 (tip: you should use $\\sqrt{x+\\epsilon}$ instead, where $\\epsilon$ is some small constant, such as $10^{-4}$)."
22512251
]
22522252
},
22532253
{

0 commit comments

Comments
 (0)