Revision 8bb3072678e45a06ce44a4ba2ae3244914a1f857 (click the page title to view the current version)

Reinformcement Learning

Exercises

Task 1

Recall the requirements to model a problem with the MDP framework:

  • Sequential decision problem
  • Stochastic Environment
  • Fully observable
  • with a Markovian Transition model
  • with additive rewards

And the properties:

  • A set of states \(s \in S\)
  • A set of actions \(a \in A\)
  • A transition function \(T(s,a,s')\)
  • A reward function \(R(s,a,s')\)
  • A start state \(S_0\)

Part A

Find a problem on CodinGame (preferably one you have worked on), and check if it fulfills the requirements above. If not, can you think of how you can change the problem (e.g. by adding randomness to actions)? If this is not possible, try with another problem.

Part B

Using the properties of an MDP:

Can you make a graphical representation of the modified problem from Task A? You can chose a subset of the states (and actions if necessary) to reduce the size of the representation. Use either the Dynamic Decision Network from the book (ch 16.1.4), or a simple representation as was done on the slides. (E.g. from here or here )

Part C

  • Does the problem have a finite or infinite horizon?
  • If you were to attempt to solve the MDP, could the current horizon pose a problem, why/why not?

Part D

  • Does the problem have a discounted reward?
  • If you were to attempt to solve the MDP, what discount factor would make sense to use for the utility function?

Task 2

We will be using OpenAI Gym for some of the problems in the two next sessions, and should install and familiarize us with it today (to make sure that everything works ok).

Gym can simply be installed with pip:

Check the version either with

or from python:

it should be > 0.23.0

Part A

Familiarize yourself with the FrozenLake environment You can import and start it like this:

You should now hopefully see a render of the environment. Note that you need to call env.render() for the window to update.

Try out some of these functions and see what they do:

More information on standard actions can be found here More information on the FrozenLake environment can be found here

Try to make a custom Frozen Lake map

When creating a frozen-lake environment you can add a custom-map with the desc argument, e.g:

For a custom 5x4 map.

Task 3

Recall the value/utility-function:

\[U(s) = \mathop\max\limits_{a \in A(s)} \sum\limits_{s'}P(s'|s,a)[R(s,a,s') + \gamma U(s')]\]

The Q-Function:

\[Q(s,a) = \sum\limits_{s'}P(s'|s,a)[R(s,a,s') + \gamma \mathop\max\limits_{a'}Q(s',a')]\]

And the function to extract an optimal policy from the Q-Function:

\[\pi^*(s) = \mathop{\mathrm{argmax}}\limits_aQ(s,a)\]

Part A

Implement the above functions in Python

Part B

Given a FrozenLake map, and a list of pre-calculated expected utilities, (e.g.:

for the default FrozenLake 4x4 map)

  • Test out the utility-function, and see if it makes sense/work as it should.
  • Use the function to extract an optimal policy to move around the map (discount factor can be e.g. 0.99).