Water Tank
  • Home
  • Notebooks
  • API Reference
  1. Learning rules
  2. DeltaLearningRule
  • API reference
  • Layers
    • RecurrentLayer
    • LinearReadout
    • StaticInput
    • TimeSeriesInput
  • Projections
    • connect
  • Learning rules
    • DeltaLearningRule
    • RLS
  • Random distributions
    • Const
    • Uniform
    • Normal
    • Bernouilli
  • Utilities
    • Recorder

On this page

  • DeltaLearningRule
    • Parameters

DeltaLearningRule

rules.DeltaLearningRule.DeltaLearningRule(self, projection, learning_rate)

Delta learning rule (online linear regression).

Equation:

\Delta W = \eta \, (\mathbf{t} - \mathbf{y}) \times \mathbf{x}^T

Parameters

Name Type Description Default
projection Projection projection on which to apply the learning rule. required
learning_rate float learning rate. required
connect
RLS
 

Copyright Julien Vitay