Difference between revisions of "Regularization"

From
Jump to: navigation, search
Line 9: Line 9:
 
* use architectures that generalize well
 
* use architectures that generalize well
 
* reduce architecture complexity
 
* reduce architecture complexity
* add [[Regularization]]
+
* add Regularization
 
** [[L1 and L2 Regularization]] -  update the general cost function by adding another term known as the regularization term.  
 
** [[L1 and L2 Regularization]] -  update the general cost function by adding another term known as the regularization term.  
 
** [[Dropout]] - at every iteration, it randomly selects some nodes and temporarily removes the nodes (along with all of their incoming and outgoing connections)
 
** [[Dropout]] - at every iteration, it randomly selects some nodes and temporarily removes the nodes (along with all of their incoming and outgoing connections)

Revision as of 17:04, 30 December 2018

Youtube search... ...Google search

Good practices for addressing the Overfitting Challenge:


Regularization is a technique which makes slight modifications to the learning algorithm such that the model generalizes better. This in turn improves the model’s performance on the unseen data as well. An Overview of Regularization Techniques in Deep Learning (with Python code) | Shubham Jain