0 0 votes With L2-regularization, which vector would we choose?$w_1=\left[\begin{array}{l}100 \\ 0.02\end{array}\right]$ $w_2=\left[\begin{array}{c}100 \\ 0\end{array}\right]$ $w_3=\left[\begin{array}{c}99.99 \\ 0.02\end{array}\right]$ Any of A, B, C Machine Learning goclasses goclasses-da-course machine-learning regularization + – GO Classes 178 views answer comment Share Follow Print 0 reply Please log in or register to add a comment.
0 0 votes \begin{aligned} \left\|w_1\right\|^2 & =100^2+0.02^2=10000.0004 \\ \left\|w_2\right\|^2 & =100^2+0^2=10000 \\ \left\|w_3\right\|^2 & =99.99^2+0.02^2=9998.0005 \end{aligned} $\text { L2-regularization selects w3. }$ GO Classes answered Mar 17, 2025 GO Classes comment Share Follow 0 reply Please log in or register to add a comment.