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 |