Skip to content

Commit be1ba29

Browse files
Update README.md
1 parent ee5dd31 commit be1ba29

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ filter_2 = np.array([[0, 1, 0], [1, -4, 1], [0, 1, 0]])
8282
filter_3 = np.array([[-1, -1, -1], [-1, 8, -1], [-1, -1, -1]])
8383
```
8484

85-
Creating function to **delete negative values** from resulted image, also known as **ReLU function**.
85+
Creating function to **delete negative values** from resulted image, also known as **ReLU function**, by substituting them with **0**.
8686
<br/>Consider following part of the code:
8787

8888
```py
@@ -97,7 +97,7 @@ def relu(array):
9797
return result
9898
```
9999

100-
Creating function to **delete values that are more than 255**.
100+
Creating function to **delete values that are more than 255** by substituting them with **255**.
101101
<br/>Consider following part of the code:
102102

103103
```py

0 commit comments

Comments
 (0)