computeEntryWeightUpdate method

E computeEntryWeightUpdate(
  1. E weight,
  2. E weightLastUpdate,
  3. E gradient,
  4. E previousGradient,
  5. T previousUpdateDeltas,
  6. T noImprovementCounter,
  7. int weightsEntryIndex,
  8. E neuronOutput,
)
inherited

Implementation

E computeEntryWeightUpdate(
  E weight,
  E weightLastUpdate,
  E gradient,
  E previousGradient,
  T previousUpdateDeltas,
  T noImprovementCounter,
  int weightsEntryIndex,
  E neuronOutput,
) {
  return _computeEntryWeightUpdateNonSIMD(
      weight,
      weightLastUpdate,
      gradient,
      previousGradient,
      previousUpdateDeltas,
      noImprovementCounter,
      weightsEntryIndex,
      neuronOutput);
}