C4_W2_Lab_3_deep_NN
This is what the text says in the notebook:
The generated graph above shows the values of the range of learning rates that leads to lower losses (i.e. sloping downward) and also which ones cause the training to become unstable (i.e. jagged edges and pointing upwards). In general, you will want to pick a point in a downward slope. That means the network is still learning at that point and is stable. Choosing close to the minimum point of the graph will make the training converge to that loss value quicker, as will be shown in the next cells.
but, in the notebook, the lr is selected as 4e-6 from this graph, which I assume should be somewhere in the green region? please correct me if I am wrong. Why not directly take e-5, which is the lowest point of the curve and it appears smooth.
Also, what do the divisions between 10**x represent there? Could you please clarify? why they are not uniformly spaced?