forward method

Iterable<Value> forward(
  1. Iterable<Value> inputs
)

Implementation

Iterable<Value> forward(Iterable<Value> inputs) {
  return [for (final neuron in neurons) neuron.forward(inputs)];
}