Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
DorsaRoh authored Aug 17, 2024
1 parent 503d1de commit 011957a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@ After calculating the weighted sum, we apply an "activation function". Common ch
In this guide, we'll focus on ReLU:

```
ReLU(x) = max(0, x)
def relu(self, x):
return np.maximum(0, x)
```
ReLU is popular because it helps the network learn more effectively.

Expand Down

0 comments on commit 011957a

Please sign in to comment.