I am new to machine learning. I am currently studying various kinds of regressions using the scikit-learn Python library. Here's an example from the documentation: https://scikit-learn.org/stable/modules/linear_model.html#logistic-regression There are a lot of mathematical formulas here and I don't understand many of the notation.
For example : There is some function :
y(w,x) = w0 + w1*x1 + ... + wp * xp
and
vector w = (w1,....wp)
In that case linear regression looks like:
What does it mean "||" and two "2" in bottom and top? I guess "2" on top means square.
Could anyone explain on the fingers or give a link to the source, where the symbols are explained. Thanks.
