-
Notifications
You must be signed in to change notification settings - Fork 13
Open
Labels
Description
(see branch docs)
- the fact that, when we can, we avoid doing
hcat(X, 1)
- use
IterativeSolvers.cg
and notIterativeSolvers.lsqr
as it allows specifying the operator as a linear map which is efficient and avoids copying when having to add a column for X; anyway it should be identical apart from pathological cases - robust regression with concomitant scale estimation, not done yet
- LAD/quantile explain weight clipping for pathological zero residual
- generally detail how algos do IWLS etc so that it's 100% clear what is being done
- Newton
- NewtonCG (explain briefly then link to Optim)
- LBFGS (explain briefly then link to Optim)
- IWLSCG