Skip to content

Commit 42abdf5

Browse files
committed
Add dropout keras
1 parent 5682d45 commit 42abdf5

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

notes/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ Need to multiply the matrices: input and LSTM cell dimension.
1818

1919
- What is `dropout` exactly?
2020

21+
```Python
22+
model.add(Dropout(0.5))
23+
````
24+
2125
Dropout is a regularization technique, and it means: ignoring units i.e., neurons during the training
2226
process certain set of neurons which is chosen at random, they are not considered in a particular forward or backward pass.
2327

0 commit comments

Comments
 (0)