<< Chapter < Page | Chapter >> Page > |
In detail, the algorithm is as follows:
Above, we had written out fitted value iteration using linear regression as the algorithm to try to make close to . That step of the algorithm is completely analogous to a standard supervised learning (regression) problem in which we have a training set , and want to learn a function mapping from to ; the only difference is that here plays the role of . Eventhough our description above used linear regression, clearly other regression algorithms (such as locally weighted linear regression) can also be used.
Unlike value iteration over a discrete set of states, fitted value iteration cannot be proved to always to converge. However, in practice, it often does converge (or approximately converge), and works well for many problems.Note also that if we are using a deterministic simulator/model of the MDP, then fitted value iteration can be simplified by setting in the algorithm. This is because the expectation in Equation [link] becomes an expectation over a deterministic distribution, and so a single example is sufficient to exactly compute that expectation.Otherwise, in the algorithm above, we had to draw samples, and average to try to approximate that expectation (see the definition of , in the algorithm pseudo-code).
Finally, fitted value iteration outputs , which is an approximation to . This implicitly defines our policy. Specifically,when our system is in some state , and we need to choose an action, we would like to choose the action
The process for computing/approximating this is similar to the inner-loop of fitted value iteration, where for each action, we sample to approximate the expectation. (And again, if the simulator is deterministic, we can set .)
In practice, there're often other ways to approximate this step as well. For example, one very common case is if thesimulator is of the form , where is some determinstic function of the states (such as ), and is zero-mean Gaussian noise. In this case, we can pick the action given by
In other words, here we are just setting (i.e., ignoring the noise in the simulator), and setting . Equivalently, this can be derived from Equation [link] using the approximation
where here the expection is over the random . So long as the noise terms are small, this will usually be a reasonable approximation.
However, for problems that don't lend themselves to such approximations, having to sample states using the model, in order to approximate the expectation above, can be computationally expensive.
Notification Switch
Would you like to follow the 'Machine learning' conversation and receive update notifications?