From c86b85f8bdc6b88a0a6ab5b1a82366422cc75692 Mon Sep 17 00:00:00 2001 From: Rishabh Agrawal <41741481+r1shbh@users.noreply.github.com> Date: Fri, 8 May 2020 15:30:44 +0530 Subject: [PATCH] Updated readme.md (Line 185) in the **d** direction should be: in the 'b' direction --- 1- Neural Networks and Deep Learning/Readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1- Neural Networks and Deep Learning/Readme.md b/1- Neural Networks and Deep Learning/Readme.md index 787825f8..0bb94b36 100644 --- a/1- Neural Networks and Deep Learning/Readme.md +++ b/1- Neural Networks and Deep Learning/Readme.md @@ -182,7 +182,7 @@ Here are the course summary as its given on the course [link](https://www.course - The actual equations we will implement: - `w = w - alpha * d(J(w,b) / dw)` (how much the function slopes in the w direction) - - `b = b - alpha * d(J(w,b) / db)` (how much the function slopes in the d direction) + - `b = b - alpha * d(J(w,b) / db)` (how much the function slopes in the b direction) ### Derivatives