Description Usage Arguments Details Value
Constructs a GELnet model for linear regression using coordinate descent.
1 2 3 4 |
X |
n-by-p matrix of n samples in p dimensions |
z |
n-by-1 vector of response values |
l1 |
coefficient for the L1-norm penalty |
l2 |
coefficient for the L2-norm penalty |
max_iter |
maximum number of iterations |
eps |
convergence precision |
fix_bias |
set to TRUE to prevent the bias term from being updated (default: FALSE) |
silent |
set to TRUE to suppress run-time output; overwrites verbose (default: FALSE) |
verbose |
set to TRUE to see extra output; is overwritten by silent (default: FALSE) |
nonneg |
set to TRUE to enforce non-negativity constraints on the weights (default: FALSE ) |
w_init |
initial parameter estimate for the weights |
b_init |
initial parameter estimate for the bias term |
a |
n-by-1 vector of sample weights |
d |
p-by-1 vector of feature weights |
P |
p-by-p feature association penalty matrix |
m |
p-by-1 vector of translation coefficients |
The method operates through cyclical coordinate descent. The optimization is terminated after the desired tolerance is achieved, or after a maximum number of iterations.
A list with two elements:
p-by-1 vector of p model weights
scalar, bias term for the linear model
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.