adelie.solver.bvls#
- adelie.solver.bvls(X: ndarray | MatrixNaiveBase32 | MatrixNaiveBase64, y: ndarray, lower: ndarray, upper: ndarray, *, weights: ndarray | None = None, kappa: int | None = None, max_iters: int = 100000, tol: float = 1e-07, n_threads: int = 1, warm_start=None)[source]#
Solves bounded variable least squares.
The bounded variable least squares is given by
where
is the feature matrix, is the response vector, is the (diagonal) observation weights, and are the lower and upper bounds, respectively.- Parameters:
- X(n, p) Union[ndarray, MatrixNaiveBase32, MatrixNaiveBase64]
Feature matrix. It is typically one of the matrices defined in
adelie.matrix
submodule ornumpy.ndarray
.- y(n,) ndarray
Response vector.
- lower(p,) ndarray
Lower bound for each variable.
- upper(p,) ndarray
Upper bound for each variable.
- weights(n,) ndarray, optional
Observation weights. If
None
, it is set tonp.full(n, 1/n)
. Default isNone
.- kappaint, optional
Violation batching size. If
None
, it is set tomin(n, p)
. Default isNone
.- max_itersint, optional
Maximum number of coordinate descents. Default is
int(1e5)
.- tolfloat, optional
Convergence tolerance. Default is
1e-7
.- n_threadsint, optional
Number of threads. Default is
1
.- warm_startoptional
If no warm-start is provided, the initial solution is set to the vertex of the box closest to the origin. Otherwise, the warm-start is used to extract all necessary state variables. Default is
None
.
- Returns:
- state
The resulting state after running the solver.