0 votes
par dans 01 - Bases, concepts et histoire
Hi,

how do I avoid being trapped in a local minimum with the regression?

Thanks

1 Réponse

0 votes
par Vétéran du GPU 🐋 (48.7k points)
sélectionné par
 
Meilleure réponse
Linear régression does not have local minimum issue. It is a convex problem
par Vétéran du GPU 🐋 (48.7k points)
Well if your optimisation is polynomial (non-linear) wrt parameters then yeah you can have multiple solution. But in your example, you're polynomial wrt inputs and linear wrt parameters so only one solution with this algorithm.
par
What does wrt mean, please?
par Vétéran du GPU 🐋 (48.7k points)
With respect to
par
To clarify, how should I have indicated my function as multi-dim?
If I write f(para1, para2, para3) you cannot see IMHO you cannot see if it is non-linear.
par Vétéran du GPU 🐋 (48.7k points)
No I don't know if it is non-linear, but I assumed it was because 99.9999% of the time in deep learning it is non linear. Otherwise the linear regression will do just fine.
...