Below is the constrained version of the ridge regression optimization problem:
minw∈R∑i=1n(wTxi−yi)2
subject to ∣∣w∣∣2≤θ.
Following are the weight vectors to be considered, along with the mean squared error (MSE) produced by each:
w1=[1111]T, MSE=2
w2=[0213]T, MSE=7
w3=[1201]T, MSE=1
w4=[2112]T, MSE=8
If θ=10, which of the following weight vectors will be selected as the final weight vector by ridge regression?