NeuralNet.wire

Create a directed edge between parent and child nodes.

  1. void wire(string parent, string child, bool with_alloc)
    class NeuralNet
    void
    wire
    (
    string parent
    ,
    string child
    ,
    bool with_alloc = true
    )
  2. void wire(NeuralLayer parent, NeuralLayer child, bool with_alloc)

Parameters

parent string

name of origin layer

child string

name of destination layer

with_alloc bool

whether or not both layers should allocate internal parameters

Meta