applyParamsFrom method

void applyParamsFrom(
  1. ANN other
)

Implementation

void applyParamsFrom(ANN other) {
  weights = other.weights;
  biases = other.biases;
  _inited = true;
}