nlareg | R Documentation |
rtemis internal: NonLinear Activation regression (NLAreg)
nlareg(
x,
y,
b_o = mean(y),
W_o = 1,
b_h = 0,
W_h = 0,
activation = softplus,
optim.method = "BFGS",
control = list(),
...
)
x |
Numeric vector or matrix / data frame of features i.e. independent variables |
y |
Numeric vector of outcome, i.e. dependent variable |
b_o |
Float, vector (length y): Output bias. Defaults to |
W_o |
Float: Output weight. Defaults to 1 |
b_h |
Float: Hidden layer bias. Defaults to 0 |
W_h |
Float, vector (length |
activation |
String or Function: Activation function to use: provide its name or the function itself. Default = linksoftplus |
optim.method |
Character: Optimization method to use: "Nelder-Mead", "BFGS", "CG", "L-BFGS-B",
"SANN", "Brent". See |
control |
List: Control parameters passed to |
... |
Additional arguments |
nlareg
object
E.D. Gennatas
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.