Learn Before
Challenges with Deep Learning Optimizer Algorithms
Poor Correspondence between Local and Global Structure
This problem arises from the fact that fixing a local problem does not necessarily provide a global solution to a function.
One of the most popular solutions to solving the disparity between the local and global structure is to design a way to finding good initial points for problems with difficult global solutions rather than coming up with an algorithm that uses non-local moves.
In the example below, the cost function contains only asymptotes toward low values, not minima. The main cause of difficulty in this case is being initialized on the wrong side of the “mountain” and not being able to traverse it. The simple and most optimal solution is to move the starting point to the right side of the “mountain”.
0
1
Tags
Data Science
Related
Inexact Gradients
Poor Correspondence between Local and Global Structure