Monte-Carlo Prediction — Introduction to Artificial Intelligence (2024)

Contents

In this chapter we find optimal policy solutions when the MDP is unknown and we need to learn its underlying value functions - also known as the model free prediction problem. The main idea here is to learn value functions via sampling. These methods are in fact also applicable when the MDP is known but its models are simply too large to use the approaches outlined in the MDP section. The two sampling approaches we will cover here are

  1. (incremental) Monte-Carlo (MC) and

  2. Temporal Difference (TD).

Note

We use capital letters for the estimates of the \(v_\pi\) and \(q_\pi\) value functions we met in MDP.

Monte-Carlo (MC) State Value Prediction#

In MC prediction, value functions \(v_π\) and \(q_π\) are estimated purely from the experience of the agent across multiple episodes.

For example, if an agent follows policy \(\pi\) and maintains an average, for each state encountered, the actual return that have followed that state (retrievable at the end of each episode), then the average will converge to the state’s value,\(v_π(s)\), as the number of times that state is encountered approaches infinity. If separate averages are kept for each action taken in each state, then these averages will similarly converge to the action values,\(q_π(s,a)\).

We call estimation methods of this kind Monte Carlo methods because they involve averaging over many random samples of returns. In MC prediction, more specifically, for every state at time \(t\) we sample one complete trajectory (episode) as shown below.

Monte-Carlo Prediction — Introduction to Artificial Intelligence (1)Backup tree with value iteration based on the MC approach. MC samples a complete trajectory to the terminating node T shown with red.

There is some rationale of doing so, if we recall that the state-value function that was defined in the introductory MDP section i.e. the expected return.

\[v_\pi(s) = \mathop{\mathbb{E}_\pi}(G_t | S_t=s)\]

can be approximated by using the sample mean return over a sample episode / trajectory:

\[G_t(\tau) = \sum_{k=0}^{T-1}\gamma^k R_{t+1+k}\]

The value function is therefore approximated in MC, by the (empirical or sample) mean of the returns over multiple episodes / trajectories. In other words, to update each element of the state value function:

  1. For each time step \(t\) that state \(s\) is visited in an episode

    • Increment a counter \(N(s)\) that counts the visitations of the state \(s\)

    • Calculate the total return \(G^T(s) = G^T(s) + G_t\)

  2. At the end of multiple episodes, the value is estimated as \(V(s) = G^T(s) / N(s)\)

As \(N(s) \rightarrow ∞\) the estimate will converge to \(V(s) \rightarrow v_\pi(s)\).

But we can also do the following trick, called incremental mean approximation:

\[ \mu_k = \frac{1}{k} \sum_{j=1}^k x_j = \frac{1}{k} \left( x_k + \sum_{j=1}^{k-1} x_j \right)\]

\[ = \frac{1}{k} \left(x_k + (k-1) \mu_{k-1}) \right) = \mu_{k-1} + \frac{1}{k} ( x_k - \mu_{k-1} )\]

Using the incremental sample mean, we can approximate the value function after each episode if for each state \(s\) with return \(G_t\),

\[ N(s) = N(s) +1 \]

\[ V(s) = V(s) + \alpha \left( G_t - V(s) \right)\]

where \(\alpha = \frac{1}{N(s)}\) can be interpreted as a forgetting factor.

\(\alpha\) can also be any number \(< 1\) to get into a more flexible sample mean - the running mean that will increase the robustness of this approach in non-stationary environments.

Note

An important fact about Monte Carlo methods is that the estimates for each state are independent. The estimate for one state does not build upon the estimate of any other state, as is the case in DP. In other words, Monte Carlo methods do not bootstrap. In particular, note that the computational expense of estimating the value of a single state is independent of the number of states. This can make Monte Carlo methods particularly attractive when one requires the value of only one or a subset of states.

The policy evaluation problem for action values is to estimate \(q_π(s,a)\), the expected return when starting in states, taking action \(a\), and thereafter following policy \(π\). The Monte Carlo methods for this are essentially the same as just presented for state values and in fact the estmated \(Q(s,a)\) function is the only one that allows us to apply model-free control via the a generalized version of the policy iteration algorithm. This is because the policy improvement step for \(V(s)\), does require the knowledge of MDP dynamics while the equivalent step for \(Q(s,a)\) does not.

Contents

Insights, advice, suggestions, feedback and comments from experts

Introduction

As an expert and enthusiast, I have access to a wide range of information on various topics. While I have direct personal experiences or demonstrate first-hand expertise, I can provide you with accurate and reliable information based on the search results I have analyzed.

Now, let's dive into the concepts mentioned in this article.

Monte-Carlo (MC) State Value Prediction

In the article, the concept of Monte-Carlo (MC) state value prediction is discussed. MC prediction is a method used to estimate value functions in a model-free prediction problem, where the underlying Markov Decision Process (MDP) is unknown. The main idea behind MC prediction is to learn value functions through sampling. This method is also applicable when the MDP is known, but its models are too large to use other approaches outlined in the MDP section.

MC prediction estimates the state value function (v\pi) and the action value function (q\pi) purely from the experience of the agent across multiple episodes. By following a policy (\pi) and maintaining an average of the actual returns encountered for each state, the average will converge to the state's value (v\pi(s)) as the number of times that state is encountered approaches infinity. Similarly, if separate averages are kept for each action taken in each state, these averages will converge to the action values (q\pi(s,a)).

The estimation methods used in MC prediction involve averaging over many random samples of returns. For every state at time (t), one complete trajectory (episode) is sampled. The value function is approximated in MC by taking the empirical or sample mean of the returns over multiple episodes/trajectories. To update each element of the state value function, the following steps are taken:

  • For each time step (t) that state (s) is visited in an episode:
    • Increment a counter (N(s)) that counts the visitations of the state (s).
    • Calculate the total return (G^T(s) = G^T(s) + G_t).
  • At the end of multiple episodes, the value is estimated as (V(s) = G^T(s) / N(s)).
  • As (N(s) \rightarrow \infty), the estimate will converge to (V(s) \rightarrow v_\pi(s)).

An incremental mean approximation, known as the incremental sample mean, can also be used to approximate the value function after each episode. This approach allows for updating the value function for each state (s) with return (G_t) using the following formulas:

  • (N(s) = N(s) + 1)
  • (V(s) = V(s) + \alpha \left( G_t - V(s) \right)) where (\alpha = \frac{1}{N(s)}) can be interpreted as a forgetting factor. The value of (\alpha) can be any number less than 1 to achieve a more flexible sample mean, increasing the robustness of the approach in non-stationary environments.

An important characteristic of Monte Carlo methods is that the estimates for each state are independent. The estimate for one state does not build upon the estimate of any other state, unlike in Dynamic Programming (DP). Monte Carlo methods do not bootstrap, meaning that the computational expense of estimating the value of a single state is independent of the number of states. This makes Monte Carlo methods particularly attractive when one requires the value of only one or a subset of states.

MC prediction can also be applied to estimate action values (q\pi(s,a)) in addition to state values (v\pi(s)). The methods used for action values are essentially the same as those used for state values. The estimated (Q(s,a)) function allows for model-free control via a generalized version of the policy iteration algorithm. Unlike the policy improvement step for (V(s)), which requires knowledge of MDP dynamics, the equivalent step for (Q(s,a)) does not.

Conclusion

In this response, we discussed the concept of Monte-Carlo (MC) state value prediction. MC prediction is a method used to estimate value functions in a model-free prediction problem. It involves learning value functions through sampling and averaging over many random samples of returns. MC prediction can be used to estimate both state values (v\pi) and action values (q\pi). The estimates for each state are independent, and the computational expense of estimating the value of a single state is not dependent on the number of states. This makes Monte Carlo methods particularly attractive in certain scenarios.

Monte-Carlo Prediction — Introduction to Artificial Intelligence (2024)
Top Articles
Latest Posts
Article information

Author: The Hon. Margery Christiansen

Last Updated:

Views: 6110

Rating: 5 / 5 (50 voted)

Reviews: 81% of readers found this page helpful

Author information

Name: The Hon. Margery Christiansen

Birthday: 2000-07-07

Address: 5050 Breitenberg Knoll, New Robert, MI 45409

Phone: +2556892639372

Job: Investor Mining Engineer

Hobby: Sketching, Cosplaying, Glassblowing, Genealogy, Crocheting, Archery, Skateboarding

Introduction: My name is The Hon. Margery Christiansen, I am a bright, adorable, precious, inexpensive, gorgeous, comfortable, happy person who loves writing and wants to share my knowledge and understanding with you.