What’s new#
Version 0.3.1 (2023/12/21)#
Add support for weights and positive coefficients to MCPRegression Estimator (PR: #184)
Move solver specific computations from
Datafit.initialize()
to separateDatafit
methods to easeSolver
-Datafit
compatibility check (PR: #192)Add LogSumPenalty (PR: ##127)
Remove abstract methods in
BaseDatafit
andBasePenalty
to make solver/penalty/datafit compatibility check easier (PR ##205)Add fixed-point distance to build working sets in ProxNewton solver (#138)
Version 0.3 (2023/07/01)#
Add Cox Estimator with support of L1, L2, and Elastic regularization (PR: #171)
Reduce time overhead when fitting Lasso Estimator (PR: #129)
Add Cox datafit for survival analysis (PR #180, #168, #159, #157)
Add Positivity constraint to L1, L1_plus_L2, WeightedL1 (PR: #110)
Add PositiveConstraint (PR: #126)
Add L-BFGS solver for problems with smooth datafits and penalties (PR: #165, #173)
Experimental Primal-dual coordinate descent solve for problems with non-smooth datafits (PR: #131)
Add support of
float32
in ProxNewton
Version 0.2 (2022/10/18)#
Experimental Square root Lasso class with ProxNewton or Chambolle-Pock solver (PR #57)
Accelerated block coordinate descent solver GroupBCD with working sets for problems with group penalties (PR #29, #28, and #26)
Proximal Newton solver ProxNewton with working sets for problems with non-quadratic datafits (PR #51)
Fitting intercept for Quadratic, Logistic and Huber datafits (PR #55)
Added GramCD, a Gram-based coordinate descent solver for problems with
n_features
`\ll`n_samples
(PR #59)Transform solvers from functions to classes (PR #63)
Version 0.1 (2022/04/25)#
Initial release (initial commit: 2022/04/20)