Introduction to Machine Learning

Possible Definition for Target Function

  1. if $b$ is a final board state that is won, then $V(b) = 100$
  2. if $b$ is a final board state that is lost, then $V(b) = -100$
  3. if $b$ is a final board state that is drawn, then $V(b) = 0$
  4. if $b$ is a not a final state in the game, then $V(b) = V(b')$, where $b'$ is the best final board state that can be achieved starting from $b$ and playing optimally until the end of the game.

José M. Vidal .

11 of 18