Can I implement ridge regression in terms of OLS regression? Is it even possible?
I am interested because scikit-learn
supports non-negative least squares (NNLS), but not non-negative ridge regression. So, I'd like to transform my data as to be able to call the underlying NNLS function, but achieve ridge regression functionality.