Joachim Nolten
Results
2
issues of
Joachim Nolten
A single bulk call on multiple items still results in multiple db operations. Perhaps these could be bundles together somehow. (Example: marking all as done or clearing al marked-as-done in...
This had me stumped for a second: ``` errors = layer.back_propagate(errors) ``` with ``` @neurons.zip(errors).map { |neuron, error| neuron.back_propagate(error) }.sum ``` I had to remember, that `back_propagate` returns a Vector,...