I'm terrible at interpreting math formulas and would like to ask for some help. I am going through the Scikit-learn library for machine learning in python and stumbled upon this formula:
This is the object function for Lasso linear model. https://scikit-learn.org/stable/modules/linear_model.html#lasso
I assume that the min w means that we wants to minimise the w and that the double horisontal lines are the absolute value.
Would it be possible to rewrite the function like: 1/(2n) * abs(Xw-y) + a*abs(w)
What I don't get is the double horisontal lines with the double 2.
