R/network_plot.R
plot.ruta_network.Rd
Draw a neural network
# S3 method for ruta_network plot(x, ...)
A "ruta_network" object
"ruta_network"
Additional parameters for style. Available parameters:
bg: Color for the text over layers
bg
fg: Color for the background of layers
fg
log: Use logarithmic scale
log
net <- input() + dense(1000, "relu") + dropout() + dense(100, "tanh") + dense(1000, "relu") + dropout() + output("sigmoid") plot(net, log = TRUE, fg = "#30707a", bg = "#e0e6ea")