plot.ruta_network | R Documentation |
Draw a neural network
## S3 method for class 'ruta_network' plot(x, ...)
x |
A |
... |
Additional parameters for style. Available parameters:
|
net <- input() + dense(1000, "relu") + dropout() + dense(100, "tanh") + dense(1000, "relu") + dropout() + output("sigmoid") plot(net, log = TRUE, fg = "#30707a", bg = "#e0e6ea")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.