Assuming that in the constrained version of ridge regression optimization problem, following are the weight vectors to be considered, along with the mean squared error (MSE) produced by each:
$$
\begin{aligned}
& w_1=[2,2,3,1], \text { MSE }=3 \\
& w_2=[1,1,3,1], \text { MSE }=5 \\
& w_3=[3,2,4,1], \text { MSE }=8 \\
& w_4=[1,2,1,1], \text { MSE }=9
\end{aligned}
$$
If the value of $\theta$ is 13 , which of the following weight vectors will be selected as the final weight vector by ridge regression?
Note: $\|w\|^2 \leq \theta$
- W1
- W2
- W3
- W4