coef.citodnn {cito} | R Documentation |
Returns list of parameters the neural network model currently has in use
Description
Returns list of parameters the neural network model currently has in use
Usage
## S3 method for class 'citodnn'
coef(object, ...)
## S3 method for class 'citodnnBootstrap'
coef(object, ...)
Arguments
object |
a model created by |
... |
nothing implemented yet |
Value
list of weights of neural network
Examples
if(torch::torch_is_installed()){
library(cito)
set.seed(222)
validation_set<- sample(c(1:nrow(datasets::iris)),25)
# Build and train Network
nn.fit<- dnn(Sepal.Length~., data = datasets::iris[-validation_set,])
# Sturcture of Neural Network
print(nn.fit)
#analyze weights of Neural Network
coef(nn.fit)
}
[Package cito version 1.1 Index]