3.1.0 - 2024-11-11
New features:
- New argument
max_inner_iter
for classesGeneralizedLinearRegressor
andGeneralizedLinearRegressorCV
to control the maximum number of iterations of the inner solver in the IRLS-CD algorithm. - New fitted attributes
col_means_
andcol_stds_
for classesGeneralizedLinearRegressor
andGeneralizedLinearRegressorCV
. GeneralizedLinearRegressor
now prints more informative logs when fitting withalpha_search=True
andverbose=True
.
Bug fixes:
- Fixed a bug where
GeneralizedLinearRegressor.fit
would raise adtype
mismatch error if fit withalpha_search=True
. - Use data type (
float64
orfloat32
) dependent precision in solvers.