Introduction to Machine Learning

Choose Weight Tuning Rule

  1. Select a training example $b$ at random
  2. Compute $error(b)$: \[error(b) = V_{train}(b) - \hat{V}(b)\]
  3. For each board feature $f_{i}$, update weight $w_{i}$: \[w_{i} \leftarrow w_{i} + c \cdot f_{i} \cdot error(b) \] where, $c$ is some small constant, say 0.1, to moderate the rate of learning.
  4. Goto 1

José M. Vidal .

15 of 18