powered by
Takes a neural network shown in vectorized form and explicitly displays it.
view_nn(nn)
A displayed version of the neural network. This may be required if the neural network is very deep.
A neural network., i.e. a list of lists of \(W\) and \(b\).
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()
Run the code above in your browser using DataLab