What does phi signify in Machine Learning?

3.4k Views Asked by At

I was reading Pattern Recognition and Machine Learning and I ran into this equation, and I can't figure out what phi(xn) is referring to. I am aware that it is representing regularized regression, but not sure what phi symbolizes or why you need to transpose w:

enter image description here

1

There are 1 best solutions below

0
On BEST ANSWER

I think $\phi(x_n)$ is a feature representation of $x_n$, i.e. it is the original data point $x_n$ lifted to a higher-dimensional feature space $\phi(x_n)$. The inner product $w^{T}\phi(x_n)$ is a weighted combination of feature vectors and is an example of a generalized linear model.