R/network.R
sub-.ruta_network.Rd
Access subnetworks of a network
# S3 method for ruta_network [(net, index)
A "ruta_network" object
"ruta_network"
An integer vector of indices of layers to be extracted
A "ruta_network" object containing the specified layers.
(input() + dense(30))[2] #> Network structure: #> dense(30 units) - linear long <- input() + dense(1000) + dense(100) + dense(1000) + output() short <- long[c(1, 3, 5)]