Neuron constructor

Neuron(
  1. ValueVector w, {
  2. Value? b,
  3. bool nonlin = true,
})

Implementation

Neuron(this.w, {this.b, this.nonlin = true}) : super();