Extract coefficients from RVFLNet model

# S3 method for class 'rvflnet'
coef(object, s = NULL, ...)

Arguments

object

rvflnet object

s

lambda value (passed to glmnet)

...

additional arguments passed to coef.glmnet

Value

coefficient matrix. NOTE: Coefficients apply to the augmented feature space [original features | random hidden features]. The first p coefficients correspond to original inputs, remaining n_hidden to random features. These are NOT directly interpretable as "feature importance" in the original input space due to the nonlinear random projection.

Examples

if (FALSE) { # \dontrun{
coef(model, s = "lambda.min")
} # }