Plot neural network architecture
Value
The return value of plotnet, called for
its side effect of drawing the network diagram, or NULL if the
NeuralNetTools package is not installed.
Examples
# \donttest{
if (requireNamespace("NeuralNetTools", quietly = TRUE)) {
model <- tl_model(iris, Species ~ ., method = "nn", size = 3)
tl_plot_nn_architecture(model)
}
# }
