Closed sreejank closed 2 years ago
to add on: I've been using np.exp(model.deltas_)
for now, but not exactly sure if I can consider these the "alphas" (as in, the regularization strength of the different bands in banded ridge regression).
The regularization strength for each band can be computed with 1. / np.exp(model.deltas_)
.
Got it, thanks!
For this code,
I get a
(5,)
when I expected(2,5)
, one for each feature set. Is it possible to get the tuned regularization strength for each individual feature set?