view_nn {nnR}R Documentation

view_nn

Description

Takes a neural network shown in vectorized form and explicitly displays it.

Usage

view_nn(nn)

Arguments

nn

A neural network., i.e. a list of lists of W and b.

Value

A displayed version of the neural network. This may be required if the neural network is very deep.

Examples

c(5, 6, 7, 9) |>
  create_nn() |>
  view_nn()
Sqr(2.1, 0.1) |> view_nn()

Xpn(3, 2.1, 1.1) |> view_nn()
Pwr(2.1, 0.1, 3) |> view_nn()

[Package nnR version 0.1.0 Index]