There was an error while loading. Please reload this page.
1 parent 5682d45 commit 42abdf5Copy full SHA for 42abdf5
notes/README.md
@@ -18,6 +18,10 @@ Need to multiply the matrices: input and LSTM cell dimension.
18
19
- What is `dropout` exactly?
20
21
+```Python
22
+model.add(Dropout(0.5))
23
+````
24
+
25
Dropout is a regularization technique, and it means: ignoring units i.e., neurons during the training
26
process certain set of neurons which is chosen at random, they are not considered in a particular forward or backward pass.
27
0 commit comments