handson-ml/16_reinforcement_learning.i...

1989 lines
62 KiB
Plaintext
Raw Normal View History

{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"**Chapter 16 Reinforcement Learning**"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"This notebook contains all the sample code and solutions to the exersices in chapter 16."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Setup"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"First, let's make sure this notebook works well in both python 2 and 3, import a few common modules, ensure MatplotLib plots figures inline and prepare a function to save the figures:"
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"# To support both python 2 and python 3\n",
"from __future__ import division, print_function, unicode_literals\n",
"\n",
"# Common imports\n",
"import numpy as np\n",
"import os\n",
2017-02-17 11:51:26 +01:00
"import sys\n",
"\n",
"# to make this notebook's output stable across runs\n",
"def reset_graph(seed=42):\n",
" tf.reset_default_graph()\n",
" tf.set_random_seed(seed)\n",
" np.random.seed(seed)\n",
"\n",
"# To plot pretty figures and animations\n",
"%matplotlib nbagg\n",
"import matplotlib\n",
"import matplotlib.animation as animation\n",
"import matplotlib.pyplot as plt\n",
"plt.rcParams['axes.labelsize'] = 14\n",
"plt.rcParams['xtick.labelsize'] = 12\n",
"plt.rcParams['ytick.labelsize'] = 12\n",
"\n",
"# Where to save the figures\n",
2016-11-05 14:29:24 +01:00
"PROJECT_ROOT_DIR = \".\"\n",
"CHAPTER_ID = \"rl\"\n",
"\n",
"def save_fig(fig_id, tight_layout=True):\n",
" path = os.path.join(PROJECT_ROOT_DIR, \"images\", CHAPTER_ID, fig_id + \".png\")\n",
" print(\"Saving figure\", fig_id)\n",
" if tight_layout:\n",
" plt.tight_layout()\n",
" plt.savefig(path, format='png', dpi=300)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Note: there may be minor differences between the output of this notebook and the examples shown in the book. You can safely ignore these differences. They are mainly due to the fact that most of the environments provided by OpenAI gym have some randomness."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Introduction to OpenAI gym"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"In this notebook we will be using [OpenAI gym](https://gym.openai.com/), a great toolkit for developing and comparing Reinforcement Learning algorithms. It provides many environments for your learning *agents* to interact with. Let's start by importing `gym`:"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"import gym"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Next we will load the MsPacman environment, version 0."
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [],
"source": [
"env = gym.make('MsPacman-v0')"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Let's initialize the environment by calling is `reset()` method. This returns an observation:"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"obs = env.reset()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Observations vary depending on the environment. In this case it is an RGB image represented as a 3D NumPy array of shape [width, height, channels] (with 3 channels: Red, Green and Blue). In other environments it may return different objects, as we will see later."
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [],
"source": [
"obs.shape"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"An environment can be visualized by calling its `render()` method, and you can pick the rendering mode (the rendering options depend on the environment). In this example we will set `mode=\"rgb_array\"` to get an image of the environment as a NumPy array:"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"img = env.render(mode=\"rgb_array\")"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Let's plot this image:"
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {
"scrolled": true
},
"outputs": [],
"source": [
"plt.figure(figsize=(5,4))\n",
"plt.imshow(img)\n",
"plt.axis(\"off\")\n",
"save_fig(\"MsPacman\")\n",
"plt.show()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Welcome back to the 1980s! :)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"In this environment, the rendered image is simply equal to the observation (but in many environments this is not the case):"
]
},
{
"cell_type": "code",
"execution_count": 8,
"metadata": {},
"outputs": [],
"source": [
"(img == obs).all()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Let's create a little helper function to plot an environment:"
]
},
{
"cell_type": "code",
"execution_count": 9,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"def plot_environment(env, figsize=(5,4)):\n",
" plt.close() # or else nbagg sometimes plots in the previous cell\n",
" plt.figure(figsize=figsize)\n",
" img = env.render(mode=\"rgb_array\")\n",
" plt.imshow(img)\n",
" plt.axis(\"off\")\n",
" plt.show()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Let's see how to interact with an environment. Your agent will need to select an action from an \"action space\" (the set of possible actions). Let's see what this environment's action space looks like:"
]
},
{
"cell_type": "code",
"execution_count": 10,
"metadata": {},
"outputs": [],
"source": [
"env.action_space"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"`Discrete(9)` means that the possible actions are integers 0 through 8, which represents the 9 possible positions of the joystick (0=center, 1=up, 2=right, 3=left, 4=down, 5=upper-right, 6=upper-left, 7=lower-right, 8=lower-left)."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Next we need to tell the environment which action to play, and it will compute the next step of the game. Let's go left for 110 steps, then lower left for 40 steps:"
]
},
{
"cell_type": "code",
"execution_count": 11,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"env.reset()\n",
"for step in range(110):\n",
" env.step(3) #left\n",
"for step in range(40):\n",
" env.step(8) #lower-left"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Where are we now?"
]
},
{
"cell_type": "code",
"execution_count": 12,
"metadata": {},
"outputs": [],
"source": [
"plot_environment(env)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"The `step()` function actually returns several important objects:"
]
},
{
"cell_type": "code",
"execution_count": 13,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"obs, reward, done, info = env.step(0)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"The observation tells the agent what the environment looks like, as discussed earlier. This is a 210x160 RGB image:"
]
},
{
"cell_type": "code",
"execution_count": 14,
"metadata": {},
"outputs": [],
"source": [
"obs.shape"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"The environment also tells the agent how much reward it got during the last step:"
]
},
{
"cell_type": "code",
"execution_count": 15,
"metadata": {},
"outputs": [],
"source": [
"reward"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"When the game is over, the environment returns `done=True`:"
]
},
{
"cell_type": "code",
"execution_count": 16,
"metadata": {},
"outputs": [],
"source": [
"done"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Finally, `info` is an environment-specific dictionary that can provide some extra information about the internal state of the environment. This is useful for debugging, but your agent should not use this information for learning (it would be cheating)."
]
},
{
"cell_type": "code",
"execution_count": 17,
"metadata": {},
"outputs": [],
"source": [
"info"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Let's play one full game (with 3 lives), by moving in random directions for 10 steps at a time, recording each frame:"
]
},
{
"cell_type": "code",
"execution_count": 18,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"frames = []\n",
"\n",
"n_max_steps = 1000\n",
"n_change_steps = 10\n",
"\n",
"obs = env.reset()\n",
"for step in range(n_max_steps):\n",
" img = env.render(mode=\"rgb_array\")\n",
" frames.append(img)\n",
" if step % n_change_steps == 0:\n",
" action = env.action_space.sample() # play randomly\n",
" obs, reward, done, info = env.step(action)\n",
" if done:\n",
" break"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Now show the animation (it's a bit jittery within Jupyter):"
]
},
{
"cell_type": "code",
"execution_count": 19,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"def update_scene(num, frames, patch):\n",
" patch.set_data(frames[num])\n",
" return patch,\n",
"\n",
"def plot_animation(frames, repeat=False, interval=40):\n",
" plt.close() # or else nbagg sometimes plots in the previous cell\n",
" fig = plt.figure()\n",
" patch = plt.imshow(frames[0])\n",
" plt.axis('off')\n",
" return animation.FuncAnimation(fig, update_scene, fargs=(frames, patch), frames=len(frames), repeat=repeat, interval=interval)"
]
},
{
"cell_type": "code",
"execution_count": 20,
"metadata": {},
"outputs": [],
"source": [
"video = plot_animation(frames)\n",
"plt.show()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Once you have finished playing with an environment, you should close it to free up resources:"
]
},
{
"cell_type": "code",
"execution_count": 21,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"env.close()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"To code our first learning agent, we will be using a simpler environment: the Cart-Pole. "
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# A simple environment: the Cart-Pole"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"The Cart-Pole is a very simple environment composed of a cart that can move left or right, and pole placed vertically on top of it. The agent must move the cart left or right to keep the pole upright."
]
},
{
"cell_type": "code",
"execution_count": 22,
"metadata": {},
"outputs": [],
"source": [
"env = gym.make(\"CartPole-v0\")"
]
},
{
"cell_type": "code",
"execution_count": 23,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"obs = env.reset()"
]
},
{
"cell_type": "code",
"execution_count": 24,
"metadata": {},
"outputs": [],
"source": [
"obs"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"The observation is a 1D NumPy array composed of 4 floats: they represent the cart's horizontal position, its velocity, the angle of the pole (0 = vertical), and the angular velocity. Let's render the environment... unfortunately we need to fix an annoying rendering issue first."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Fixing the rendering issue"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Some environments (including the Cart-Pole) require access to your display, which opens up a separate window, even if you specify the `rgb_array` mode. In general you can safely ignore that window. However, if Jupyter is running on a headless server (ie. without a screen) it will raise an exception. One way to avoid this is to install a fake X server like Xvfb. You can start Jupyter using the `xvfb-run` command:\n",
"\n",
" $ xvfb-run -s \"-screen 0 1400x900x24\" jupyter notebook\n",
"\n",
"If Jupyter is running on a headless server but you don't want to worry about Xvfb, then you can just use the following rendering function for the Cart-Pole:"
]
},
{
"cell_type": "code",
"execution_count": 25,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"from PIL import Image, ImageDraw\n",
"\n",
"try:\n",
" from pyglet.gl import gl_info\n",
" openai_cart_pole_rendering = True # no problem, let's use OpenAI gym's rendering function\n",
"except Exception:\n",
2016-11-25 09:34:55 +01:00
" openai_cart_pole_rendering = False # probably no X server available, let's use our own rendering function\n",
"\n",
"def render_cart_pole(env, obs):\n",
" if openai_cart_pole_rendering:\n",
" # use OpenAI gym's rendering function\n",
" return env.render(mode=\"rgb_array\")\n",
" else:\n",
" # rendering for the cart pole environment (in case OpenAI gym can't do it)\n",
" img_w = 600\n",
" img_h = 400\n",
" cart_w = img_w // 12\n",
" cart_h = img_h // 15\n",
" pole_len = img_h // 3.5\n",
" pole_w = img_w // 80 + 1\n",
" x_width = 2\n",
" max_ang = 0.2\n",
" bg_col = (255, 255, 255)\n",
" cart_col = 0x000000 # Blue Green Red\n",
" pole_col = 0x669acc # Blue Green Red\n",
"\n",
" pos, vel, ang, ang_vel = obs\n",
" img = Image.new('RGB', (img_w, img_h), bg_col)\n",
" draw = ImageDraw.Draw(img)\n",
" cart_x = pos * img_w // x_width + img_w // x_width\n",
" cart_y = img_h * 95 // 100\n",
" top_pole_x = cart_x + pole_len * np.sin(ang)\n",
" top_pole_y = cart_y - cart_h // 2 - pole_len * np.cos(ang)\n",
" draw.line((0, cart_y, img_w, cart_y), fill=0)\n",
" draw.rectangle((cart_x - cart_w // 2, cart_y - cart_h // 2, cart_x + cart_w // 2, cart_y + cart_h // 2), fill=cart_col) # draw cart\n",
" draw.line((cart_x, cart_y - cart_h // 2, top_pole_x, top_pole_y), fill=pole_col, width=pole_w) # draw pole\n",
" return np.array(img)\n",
"\n",
"def plot_cart_pole(env, obs):\n",
" plt.close() # or else nbagg sometimes plots in the previous cell\n",
" img = render_cart_pole(env, obs)\n",
" plt.imshow(img)\n",
" plt.axis(\"off\")\n",
" plt.show()"
]
},
{
"cell_type": "code",
"execution_count": 26,
"metadata": {},
"outputs": [],
"source": [
"plot_cart_pole(env, obs)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Now let's look at the action space:"
]
},
{
"cell_type": "code",
"execution_count": 27,
"metadata": {},
"outputs": [],
"source": [
"env.action_space"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Yep, just two possible actions: accelerate towards the left or towards the right. Let's push the cart left until the pole falls:"
]
},
{
"cell_type": "code",
"execution_count": 28,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"obs = env.reset()\n",
"while True:\n",
" obs, reward, done, info = env.step(0)\n",
" if done:\n",
" break"
]
},
{
"cell_type": "code",
"execution_count": 29,
"metadata": {},
"outputs": [],
"source": [
"plt.close() # or else nbagg sometimes plots in the previous cell\n",
"img = render_cart_pole(env, obs)\n",
"plt.imshow(img)\n",
"plt.axis(\"off\")\n",
"save_fig(\"cart_pole_plot\")"
]
},
{
"cell_type": "code",
"execution_count": 30,
"metadata": {},
"outputs": [],
"source": [
"img.shape"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Notice that the game is over when the pole tilts too much, not when it actually falls. Now let's reset the environment and push the cart to right instead:"
]
},
{
"cell_type": "code",
"execution_count": 31,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"obs = env.reset()\n",
"while True:\n",
" obs, reward, done, info = env.step(1)\n",
" if done:\n",
" break"
]
},
{
"cell_type": "code",
"execution_count": 32,
"metadata": {},
"outputs": [],
"source": [
"plot_cart_pole(env, obs)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Looks like it's doing what we're telling it to do. Now how can we make the poll remain upright? We will need to define a _policy_ for that. This is the strategy that the agent will use to select an action at each step. It can use all the past actions and observations to decide what to do."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# A simple hard-coded policy"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Let's hard code a simple strategy: if the pole is tilting to the left, then push the cart to the left, and _vice versa_. Let's see if that works:"
]
},
{
"cell_type": "code",
"execution_count": 33,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"frames = []\n",
"\n",
"n_max_steps = 1000\n",
"n_change_steps = 10\n",
"\n",
"obs = env.reset()\n",
"for step in range(n_max_steps):\n",
" img = render_cart_pole(env, obs)\n",
" frames.append(img)\n",
"\n",
" # hard-coded policy\n",
" position, velocity, angle, angular_velocity = obs\n",
" if angle < 0:\n",
" action = 0\n",
" else:\n",
" action = 1\n",
"\n",
" obs, reward, done, info = env.step(action)\n",
" if done:\n",
" break"
]
},
{
"cell_type": "code",
"execution_count": 34,
"metadata": {},
"outputs": [],
"source": [
"video = plot_animation(frames)\n",
"plt.show()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Nope, the system is unstable and after just a few wobbles, the pole ends up too tilted: game over. We will need to be smarter than that!"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Neural Network Policies"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Let's create a neural network that will take observations as inputs, and output the action to take for each observation. To choose an action, the network will first estimate a probability for each action, then select an action randomly according to the estimated probabilities. In the case of the Cart-Pole environment, there are just two possible actions (left or right), so we only need one output neuron: it will output the probability `p` of the action 0 (left), and of course the probability of action 1 (right) will be `1 - p`."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Note: instead of using the `fully_connected()` function from the `tensorflow.contrib.layers` module (as in the book), we now use the `dense()` function from the `tf.layers` module, which did not exist when this chapter was written. This is preferable because anything in contrib may change or be deleted without notice, while `tf.layers` is part of the official API. As you will see, the code is mostly the same.\n",
"\n",
"The main differences relevant to this chapter are:\n",
"* the `_fn` suffix was removed in all the parameters that had it (for example the `activation_fn` parameter was renamed to `activation`).\n",
"* the `weights` parameter was renamed to `kernel`,\n",
"* the default activation is `None` instead of `tf.nn.relu`"
]
},
{
"cell_type": "code",
"execution_count": 35,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"import tensorflow as tf\n",
"\n",
"# 1. Specify the network architecture\n",
"n_inputs = 4 # == env.observation_space.shape[0]\n",
"n_hidden = 4 # it's a simple task, we don't need more than this\n",
"n_outputs = 1 # only outputs the probability of accelerating left\n",
"initializer = tf.contrib.layers.variance_scaling_initializer()\n",
"\n",
"# 2. Build the neural network\n",
"X = tf.placeholder(tf.float32, shape=[None, n_inputs])\n",
"hidden = tf.layers.dense(X, n_hidden, activation=tf.nn.elu,\n",
" kernel_initializer=initializer)\n",
"outputs = tf.layers.dense(hidden, n_outputs, activation=tf.nn.sigmoid,\n",
" kernel_initializer=initializer)\n",
"\n",
"# 3. Select a random action based on the estimated probabilities\n",
2017-02-17 11:51:26 +01:00
"p_left_and_right = tf.concat(axis=1, values=[outputs, 1 - outputs])\n",
"action = tf.multinomial(tf.log(p_left_and_right), num_samples=1)\n",
"\n",
2017-02-17 11:51:26 +01:00
"init = tf.global_variables_initializer()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"In this particular environment, the past actions and observations can safely be ignored, since each observation contains the environment's full state. If there were some hidden state then you may need to consider past actions and observations in order to try to infer the hidden state of the environment. For example, if the environment only revealed the position of the cart but not its velocity, you would have to consider not only the current observation but also the previous observation in order to estimate the current velocity. Another example is if the observations are noisy: you may want to use the past few observations to estimate the most likely current state. Our problem is thus as simple as can be: the current observation is noise-free and contains the environment's full state."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"You may wonder why we are picking a random action based on the probability given by the policy network, rather than just picking the action with the highest probability. This approach lets the agent find the right balance between _exploring_ new actions and _exploiting_ the actions that are known to work well. Here's an analogy: suppose you go to a restaurant for the first time, and all the dishes look equally appealing so you randomly pick one. If it turns out to be good, you can increase the probability to order it next time, but you shouldn't increase that probability to 100%, or else you will never try out the other dishes, some of which may be even better than the one you tried."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Let's randomly initialize this policy neural network and use it to play one game:"
]
},
{
"cell_type": "code",
"execution_count": 36,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"n_max_steps = 1000\n",
"frames = []\n",
"\n",
"with tf.Session() as sess:\n",
" init.run()\n",
" obs = env.reset()\n",
" for step in range(n_max_steps):\n",
" img = render_cart_pole(env, obs)\n",
" frames.append(img)\n",
" action_val = action.eval(feed_dict={X: obs.reshape(1, n_inputs)})\n",
" obs, reward, done, info = env.step(action_val[0][0])\n",
" if done:\n",
" break\n",
"\n",
"env.close()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Now let's look at how well this randomly initialized policy network performed:"
]
},
{
"cell_type": "code",
"execution_count": 37,
"metadata": {},
"outputs": [],
"source": [
"video = plot_animation(frames)\n",
"plt.show()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Yeah... pretty bad. The neural network will have to learn to do better. First let's see if it is capable of learning the basic policy we used earlier: go left if the pole is tilting left, and go right if it is tilting right. The following code defines the same neural network but we add the target probabilities `y`, and the training operations (`cross_entropy`, `optimizer` and `training_op`):"
]
},
{
"cell_type": "code",
"execution_count": 38,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"import tensorflow as tf\n",
"\n",
"reset_graph()\n",
"\n",
"n_inputs = 4\n",
"n_hidden = 4\n",
"n_outputs = 1\n",
"\n",
"learning_rate = 0.01\n",
"\n",
"initializer = tf.contrib.layers.variance_scaling_initializer()\n",
"\n",
"X = tf.placeholder(tf.float32, shape=[None, n_inputs])\n",
"y = tf.placeholder(tf.float32, shape=[None, n_outputs])\n",
"\n",
"hidden = tf.layers.dense(X, n_hidden, activation=tf.nn.elu, kernel_initializer=initializer)\n",
"logits = tf.layers.dense(hidden, n_outputs)\n",
"outputs = tf.nn.sigmoid(logits) # probability of action 0 (left)\n",
2017-02-17 11:51:26 +01:00
"p_left_and_right = tf.concat(axis=1, values=[outputs, 1 - outputs])\n",
"action = tf.multinomial(tf.log(p_left_and_right), num_samples=1)\n",
"\n",
2017-02-17 11:51:26 +01:00
"cross_entropy = tf.nn.sigmoid_cross_entropy_with_logits(labels=y, logits=logits)\n",
"optimizer = tf.train.AdamOptimizer(learning_rate)\n",
"training_op = optimizer.minimize(cross_entropy)\n",
"\n",
2017-02-17 11:51:26 +01:00
"init = tf.global_variables_initializer()\n",
"saver = tf.train.Saver()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"We can make the same net play in 10 different environments in parallel, and train for 1000 iterations. We also reset environments when they are done."
]
},
{
"cell_type": "code",
"execution_count": 39,
"metadata": {},
"outputs": [],
"source": [
"n_environments = 10\n",
"n_iterations = 1000\n",
"\n",
"envs = [gym.make(\"CartPole-v0\") for _ in range(n_environments)]\n",
"observations = [env.reset() for env in envs]\n",
"\n",
"with tf.Session() as sess:\n",
" init.run()\n",
" for iteration in range(n_iterations):\n",
" target_probas = np.array([([1.] if obs[2] < 0 else [0.]) for obs in observations]) # if angle<0 we want proba(left)=1., or else proba(left)=0.\n",
" action_val, _ = sess.run([action, training_op], feed_dict={X: np.array(observations), y: target_probas})\n",
" for env_index, env in enumerate(envs):\n",
" obs, reward, done, info = env.step(action_val[env_index][0])\n",
" observations[env_index] = obs if not done else env.reset()\n",
2017-02-17 11:51:26 +01:00
" saver.save(sess, \"./my_policy_net_basic.ckpt\")\n",
"\n",
"for env in envs:\n",
" env.close()"
]
},
{
"cell_type": "code",
"execution_count": 40,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"def render_policy_net(model_path, action, X, n_max_steps = 1000):\n",
" frames = []\n",
" env = gym.make(\"CartPole-v0\")\n",
" obs = env.reset()\n",
" with tf.Session() as sess:\n",
" saver.restore(sess, model_path)\n",
" for step in range(n_max_steps):\n",
" img = render_cart_pole(env, obs)\n",
" frames.append(img)\n",
" action_val = action.eval(feed_dict={X: obs.reshape(1, n_inputs)})\n",
" obs, reward, done, info = env.step(action_val[0][0])\n",
" if done:\n",
" break\n",
" env.close()\n",
" return frames "
]
},
{
"cell_type": "code",
"execution_count": 41,
"metadata": {},
"outputs": [],
"source": [
2017-02-17 11:51:26 +01:00
"frames = render_policy_net(\"./my_policy_net_basic.ckpt\", action, X)\n",
"video = plot_animation(frames)\n",
"plt.show()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Looks like it learned the policy correctly. Now let's see if it can learn a better policy on its own."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Policy Gradients"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"To train this neural network we will need to define the target probabilities `y`. If an action is good we should increase its probability, and conversely if it is bad we should reduce it. But how do we know whether an action is good or bad? The problem is that most actions have delayed effects, so when you win or lose points in a game, it is not clear which actions contributed to this result: was it just the last action? Or the last 10? Or just one action 50 steps earlier? This is called the _credit assignment problem_.\n",
"\n",
"The _Policy Gradients_ algorithm tackles this problem by first playing multiple games, then making the actions in good games slightly more likely, while actions in bad games are made slightly less likely. First we play, then we go back and think about what we did."
]
},
{
"cell_type": "code",
"execution_count": 42,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"import tensorflow as tf\n",
"\n",
"reset_graph()\n",
"\n",
"n_inputs = 4\n",
"n_hidden = 4\n",
"n_outputs = 1\n",
"\n",
"learning_rate = 0.01\n",
"\n",
"initializer = tf.contrib.layers.variance_scaling_initializer()\n",
"\n",
"X = tf.placeholder(tf.float32, shape=[None, n_inputs])\n",
"\n",
"hidden = tf.layers.dense(X, n_hidden, activation=tf.nn.elu, kernel_initializer=initializer)\n",
"logits = tf.layers.dense(hidden, n_outputs)\n",
"outputs = tf.nn.sigmoid(logits) # probability of action 0 (left)\n",
2017-02-17 11:51:26 +01:00
"p_left_and_right = tf.concat(axis=1, values=[outputs, 1 - outputs])\n",
"action = tf.multinomial(tf.log(p_left_and_right), num_samples=1)\n",
"\n",
"y = 1. - tf.to_float(action)\n",
2017-02-17 11:51:26 +01:00
"cross_entropy = tf.nn.sigmoid_cross_entropy_with_logits(labels=y, logits=logits)\n",
"optimizer = tf.train.AdamOptimizer(learning_rate)\n",
"grads_and_vars = optimizer.compute_gradients(cross_entropy)\n",
"gradients = [grad for grad, variable in grads_and_vars]\n",
"gradient_placeholders = []\n",
"grads_and_vars_feed = []\n",
"for grad, variable in grads_and_vars:\n",
" gradient_placeholder = tf.placeholder(tf.float32, shape=grad.get_shape())\n",
" gradient_placeholders.append(gradient_placeholder)\n",
" grads_and_vars_feed.append((gradient_placeholder, variable))\n",
"training_op = optimizer.apply_gradients(grads_and_vars_feed)\n",
"\n",
2017-02-17 11:51:26 +01:00
"init = tf.global_variables_initializer()\n",
"saver = tf.train.Saver()"
]
},
{
"cell_type": "code",
"execution_count": 43,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"def discount_rewards(rewards, discount_rate):\n",
" discounted_rewards = np.zeros(len(rewards))\n",
" cumulative_rewards = 0\n",
" for step in reversed(range(len(rewards))):\n",
" cumulative_rewards = rewards[step] + cumulative_rewards * discount_rate\n",
" discounted_rewards[step] = cumulative_rewards\n",
" return discounted_rewards\n",
"\n",
"def discount_and_normalize_rewards(all_rewards, discount_rate):\n",
" all_discounted_rewards = [discount_rewards(rewards, discount_rate) for rewards in all_rewards]\n",
" flat_rewards = np.concatenate(all_discounted_rewards)\n",
" reward_mean = flat_rewards.mean()\n",
" reward_std = flat_rewards.std()\n",
" return [(discounted_rewards - reward_mean)/reward_std for discounted_rewards in all_discounted_rewards]"
]
},
{
"cell_type": "code",
"execution_count": 44,
"metadata": {},
"outputs": [],
"source": [
"discount_rewards([10, 0, -50], discount_rate=0.8)"
]
},
{
"cell_type": "code",
"execution_count": 45,
"metadata": {},
"outputs": [],
"source": [
"discount_and_normalize_rewards([[10, 0, -50], [10, 20]], discount_rate=0.8)"
]
},
{
"cell_type": "code",
"execution_count": 46,
"metadata": {},
"outputs": [],
"source": [
"env = gym.make(\"CartPole-v0\")\n",
"\n",
"n_games_per_update = 10\n",
"n_max_steps = 1000\n",
"n_iterations = 250\n",
"save_iterations = 10\n",
"discount_rate = 0.95\n",
"\n",
"with tf.Session() as sess:\n",
" init.run()\n",
" for iteration in range(n_iterations):\n",
2017-02-17 11:51:26 +01:00
" print(\"\\rIteration: {}\".format(iteration), end=\"\")\n",
" all_rewards = []\n",
" all_gradients = []\n",
" for game in range(n_games_per_update):\n",
" current_rewards = []\n",
" current_gradients = []\n",
" obs = env.reset()\n",
" for step in range(n_max_steps):\n",
" action_val, gradients_val = sess.run([action, gradients], feed_dict={X: obs.reshape(1, n_inputs)})\n",
" obs, reward, done, info = env.step(action_val[0][0])\n",
" current_rewards.append(reward)\n",
" current_gradients.append(gradients_val)\n",
" if done:\n",
" break\n",
" all_rewards.append(current_rewards)\n",
" all_gradients.append(current_gradients)\n",
"\n",
" all_rewards = discount_and_normalize_rewards(all_rewards, discount_rate=discount_rate)\n",
" feed_dict = {}\n",
" for var_index, gradient_placeholder in enumerate(gradient_placeholders):\n",
" mean_gradients = np.mean([reward * all_gradients[game_index][step][var_index]\n",
" for game_index, rewards in enumerate(all_rewards)\n",
" for step, reward in enumerate(rewards)], axis=0)\n",
" feed_dict[gradient_placeholder] = mean_gradients\n",
" sess.run(training_op, feed_dict=feed_dict)\n",
" if iteration % save_iterations == 0:\n",
2017-02-17 11:51:26 +01:00
" saver.save(sess, \"./my_policy_net_pg.ckpt\")"
]
},
{
"cell_type": "code",
"execution_count": 47,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"env.close()"
]
},
{
"cell_type": "code",
"execution_count": 48,
"metadata": {},
"outputs": [],
"source": [
2017-02-17 11:51:26 +01:00
"frames = render_policy_net(\"./my_policy_net_pg.ckpt\", action, X, n_max_steps=1000)\n",
"video = plot_animation(frames)\n",
"plt.show()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Markov Chains"
]
},
{
"cell_type": "code",
"execution_count": 49,
"metadata": {},
"outputs": [],
"source": [
"transition_probabilities = [\n",
" [0.7, 0.2, 0.0, 0.1], # from s0 to s0, s1, s2, s3\n",
" [0.0, 0.0, 0.9, 0.1], # from s1 to ...\n",
" [0.0, 1.0, 0.0, 0.0], # from s2 to ...\n",
" [0.0, 0.0, 0.0, 1.0], # from s3 to ...\n",
" ]\n",
"\n",
"n_max_steps = 50\n",
"\n",
"def print_sequence(start_state=0):\n",
" current_state = start_state\n",
" print(\"States:\", end=\" \")\n",
" for step in range(n_max_steps):\n",
" print(current_state, end=\" \")\n",
" if current_state == 3:\n",
" break\n",
" current_state = np.random.choice(range(4), p=transition_probabilities[current_state])\n",
" else:\n",
" print(\"...\", end=\"\")\n",
" print()\n",
"\n",
"for _ in range(10):\n",
" print_sequence()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Markov Decision Process"
]
},
{
"cell_type": "code",
"execution_count": 50,
"metadata": {},
"outputs": [],
"source": [
"transition_probabilities = [\n",
" [[0.7, 0.3, 0.0], [1.0, 0.0, 0.0], [0.8, 0.2, 0.0]], # in s0, if action a0 then proba 0.7 to state s0 and 0.3 to state s1, etc.\n",
" [[0.0, 1.0, 0.0], None, [0.0, 0.0, 1.0]],\n",
" [None, [0.8, 0.1, 0.1], None],\n",
" ]\n",
"\n",
"rewards = [\n",
" [[+10, 0, 0], [0, 0, 0], [0, 0, 0]],\n",
" [[0, 0, 0], [0, 0, 0], [0, 0, -50]],\n",
" [[0, 0, 0], [+40, 0, 0], [0, 0, 0]],\n",
" ]\n",
"\n",
"possible_actions = [[0, 1, 2], [0, 2], [1]]\n",
"\n",
"def policy_fire(state):\n",
" return [0, 2, 1][state]\n",
"\n",
"def policy_random(state):\n",
" return np.random.choice(possible_actions[state])\n",
"\n",
"def policy_safe(state):\n",
" return [0, 0, 1][state]\n",
"\n",
"class MDPEnvironment(object):\n",
" def __init__(self, start_state=0):\n",
" self.start_state=start_state\n",
" self.reset()\n",
" def reset(self):\n",
" self.total_rewards = 0\n",
" self.state = self.start_state\n",
" def step(self, action):\n",
" next_state = np.random.choice(range(3), p=transition_probabilities[self.state][action])\n",
" reward = rewards[self.state][action][next_state]\n",
" self.state = next_state\n",
" self.total_rewards += reward\n",
" return self.state, reward\n",
"\n",
"def run_episode(policy, n_steps, start_state=0, display=True):\n",
" env = MDPEnvironment()\n",
" if display:\n",
" print(\"States (+rewards):\", end=\" \")\n",
" for step in range(n_steps):\n",
" if display:\n",
" if step == 10:\n",
" print(\"...\", end=\" \")\n",
" elif step < 10:\n",
" print(env.state, end=\" \")\n",
" action = policy(env.state)\n",
" state, reward = env.step(action)\n",
" if display and step < 10:\n",
" if reward:\n",
" print(\"({})\".format(reward), end=\" \")\n",
" if display:\n",
" print(\"Total rewards =\", env.total_rewards)\n",
" return env.total_rewards\n",
"\n",
"for policy in (policy_fire, policy_random, policy_safe):\n",
" all_totals = []\n",
" print(policy.__name__)\n",
" for episode in range(1000):\n",
" all_totals.append(run_episode(policy, n_steps=100, display=(episode<5)))\n",
" print(\"Summary: mean={:.1f}, std={:1f}, min={}, max={}\".format(np.mean(all_totals), np.std(all_totals), np.min(all_totals), np.max(all_totals)))\n",
" print()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Q-Learning"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Q-Learning works by watching an agent play (e.g., randomly) and gradually improving its estimates of the Q-Values. Once it has accurate Q-Value estimates (or close enough), then the optimal policy consists in choosing the action that has the highest Q-Value (i.e., the greedy policy)."
]
},
{
"cell_type": "code",
"execution_count": 51,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"n_states = 3\n",
"n_actions = 3\n",
"n_steps = 20000\n",
"alpha = 0.01\n",
"gamma = 0.99\n",
"exploration_policy = policy_random\n",
"q_values = np.full((n_states, n_actions), -np.inf)\n",
"for state, actions in enumerate(possible_actions):\n",
" q_values[state][actions]=0\n",
"\n",
"env = MDPEnvironment()\n",
"for step in range(n_steps):\n",
" action = exploration_policy(env.state)\n",
" state = env.state\n",
" next_state, reward = env.step(action)\n",
" next_value = np.max(q_values[next_state]) # greedy policy\n",
" q_values[state, action] = (1-alpha)*q_values[state, action] + alpha*(reward + gamma * next_value)"
]
},
{
"cell_type": "code",
"execution_count": 52,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"def optimal_policy(state):\n",
" return np.argmax(q_values[state])"
]
},
{
"cell_type": "code",
"execution_count": 53,
"metadata": {},
"outputs": [],
"source": [
"q_values"
]
},
{
"cell_type": "code",
"execution_count": 54,
"metadata": {},
"outputs": [],
"source": [
"all_totals = []\n",
"for episode in range(1000):\n",
" all_totals.append(run_episode(optimal_policy, n_steps=100, display=(episode<5)))\n",
"print(\"Summary: mean={:.1f}, std={:1f}, min={}, max={}\".format(np.mean(all_totals), np.std(all_totals), np.min(all_totals), np.max(all_totals)))\n",
"print()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Learning to Play MsPacman Using the DQN Algorithm"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"**Warning**: Unfortunately, the first version of the book contained two important errors in this section.\n",
"\n",
"1. The actor DQN and critic DQN should have been named _online DQN_ and _target DQN_ respectively. Actor-critic algorithms are a distinct class of algorithms.\n",
"2. The online DQN is the one that learns and is copied to the target DQN at regular intervals. The target DQN's only role is to estimate the next state's Q-Values for each possible action. This is needed to compute the target Q-Values for training the online DQN, as shown in this equation:\n",
"\n",
"$y(s,a) = \\text{r} + \\gamma . \\underset{a'}{\\max} \\, Q_\\text{target}(s', a')$\n",
"\n",
"* $y(s,a)$ is the target Q-Value to train the online DQN for the state-action pair $(s, a)$.\n",
"* $r$ is the reward actually collected after playing action $a$ in state $s$.\n",
"* $\\gamma$ is the discount rate.\n",
"* $s'$ is the state actually reached after played action $a$ in state $s$.\n",
"* $a'$ is one of the possible actions in state $s'$.\n",
"* $Q_\\text{target}(s', a')$ is the target DQN's estimate of the Q-Value of playing action $a'$ while in state $s'$.\n",
"\n",
"I hope these errors did not affect you, and if they did, I sincerely apologize."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Creating the MsPacman environment"
]
},
{
"cell_type": "code",
"execution_count": 55,
"metadata": {},
"outputs": [],
"source": [
"env = gym.make(\"MsPacman-v0\")\n",
"obs = env.reset()\n",
"obs.shape"
]
},
{
"cell_type": "code",
"execution_count": 56,
"metadata": {},
"outputs": [],
"source": [
"env.action_space"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Preprocessing"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Preprocessing the images is optional but greatly speeds up training."
]
},
{
"cell_type": "code",
"execution_count": 57,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"mspacman_color = np.array([210, 164, 74]).mean()\n",
"\n",
"def preprocess_observation(obs):\n",
" img = obs[1:176:2, ::2] # crop and downsize\n",
" img = img.mean(axis=2) # to greyscale\n",
" img[img==mspacman_color] = 0 # Improve contrast\n",
" img = (img - 128) / 128 - 1 # normalize from -1. to 1.\n",
" return img.reshape(88, 80, 1)\n",
"\n",
"img = preprocess_observation(obs)"
]
},
{
"cell_type": "code",
"execution_count": 58,
"metadata": {},
"outputs": [],
"source": [
"plt.figure(figsize=(11, 7))\n",
"plt.subplot(121)\n",
"plt.title(\"Original observation (160×210 RGB)\")\n",
"plt.imshow(obs)\n",
"plt.axis(\"off\")\n",
"plt.subplot(122)\n",
"plt.title(\"Preprocessed observation (88×80 greyscale)\")\n",
"plt.imshow(img.reshape(88, 80), interpolation=\"nearest\", cmap=\"gray\")\n",
"plt.axis(\"off\")\n",
"save_fig(\"preprocessing_plot\")\n",
"plt.show()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Build DQN"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Note: instead of using `tf.contrib.layers.convolution2d()` or `tf.contrib.layers.conv2d()` (as in the first version of the book), we now use the `tf.layers.conv2d()`, which did not exist when this chapter was written. This is preferable because anything in contrib may change or be deleted without notice, while `tf.layers` is part of the official API. As you will see, the code is mostly the same, except that the parameter names have changed slightly:\n",
"* the `num_outputs` parameter was renamed to `filters`,\n",
"* the `stride` parameter was renamed to `strides`,\n",
"* the `_fn` suffix was removed from parameter names that had it (e.g., `activation_fn` was renamed to `activation`),\n",
"* the `weights_initializer` parameter was renamed to `kernel_initializer`,\n",
"* the weights variable was renamed to `\"kernel\"` (instead of `\"weights\"`), and the biases variable was renamed from `\"biases\"` to `\"bias\"`,\n",
"* and the default `activation` is now `None` instead of `tf.nn.relu`."
]
},
{
"cell_type": "code",
"execution_count": 59,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"reset_graph()\n",
"\n",
"input_height = 88\n",
"input_width = 80\n",
"input_channels = 1\n",
"conv_n_maps = [32, 64, 64]\n",
"conv_kernel_sizes = [(8,8), (4,4), (3,3)]\n",
"conv_strides = [4, 2, 1]\n",
"conv_paddings = [\"SAME\"] * 3 \n",
"conv_activation = [tf.nn.relu] * 3\n",
"n_hidden_in = 64 * 11 * 10 # conv3 has 64 maps of 11x10 each\n",
"n_hidden = 512\n",
"hidden_activation = tf.nn.relu\n",
"n_outputs = env.action_space.n # 9 discrete actions are available\n",
"initializer = tf.contrib.layers.variance_scaling_initializer()\n",
"\n",
"def q_network(X_state, name):\n",
" prev_layer = X_state\n",
" with tf.variable_scope(name) as scope:\n",
" for n_maps, kernel_size, strides, padding, activation in zip(\n",
" conv_n_maps, conv_kernel_sizes, conv_strides,\n",
" conv_paddings, conv_activation):\n",
" prev_layer = tf.layers.conv2d(\n",
" prev_layer, filters=n_maps, kernel_size=kernel_size,\n",
" strides=strides, padding=padding, activation=activation,\n",
" kernel_initializer=initializer)\n",
" last_conv_layer_flat = tf.reshape(prev_layer, shape=[-1, n_hidden_in])\n",
" hidden = tf.layers.dense(last_conv_layer_flat, n_hidden,\n",
" activation=hidden_activation,\n",
" kernel_initializer=initializer)\n",
" outputs = tf.layers.dense(hidden, n_outputs,\n",
" kernel_initializer=initializer)\n",
" trainable_vars = tf.get_collection(tf.GraphKeys.TRAINABLE_VARIABLES,\n",
" scope=scope.name)\n",
" trainable_vars_by_name = {var.name[len(scope.name):]: var\n",
" for var in trainable_vars}\n",
" return outputs, trainable_vars_by_name"
]
},
{
"cell_type": "code",
"execution_count": 60,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"X_state = tf.placeholder(tf.float32, shape=[None, input_height, input_width,\n",
" input_channels])\n",
"online_q_values, online_vars = q_network(X_state, name=\"q_networks/online\")\n",
"target_q_values, target_vars = q_network(X_state, name=\"q_networks/target\")\n",
"\n",
"copy_ops = [target_var.assign(online_vars[var_name])\n",
" for var_name, target_var in target_vars.items()]\n",
"copy_online_to_target = tf.group(*copy_ops)"
]
},
{
"cell_type": "code",
"execution_count": 61,
"metadata": {},
"outputs": [],
"source": [
"online_vars"
]
},
{
"cell_type": "code",
"execution_count": 62,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"learning_rate = 0.001\n",
"momentum = 0.95\n",
"\n",
"with tf.variable_scope(\"train\"):\n",
" X_action = tf.placeholder(tf.int32, shape=[None])\n",
" y = tf.placeholder(tf.float32, shape=[None, 1])\n",
" q_value = tf.reduce_sum(online_q_values * tf.one_hot(X_action, n_outputs),\n",
2017-02-17 11:51:26 +01:00
" axis=1, keep_dims=True)\n",
" error = tf.abs(y - q_value)\n",
" clipped_error = tf.clip_by_value(error, 0.0, 1.0)\n",
" linear_error = 2 * (error - clipped_error)\n",
" loss = tf.reduce_mean(tf.square(clipped_error) + linear_error)\n",
"\n",
" global_step = tf.Variable(0, trainable=False, name='global_step')\n",
" optimizer = tf.train.MomentumOptimizer(learning_rate, momentum, use_nesterov=True)\n",
" training_op = optimizer.minimize(loss, global_step=global_step)\n",
"\n",
2017-02-17 11:51:26 +01:00
"init = tf.global_variables_initializer()\n",
"saver = tf.train.Saver()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Note: in the first version of the book, the loss function was simply the squared error between the target Q-Values (`y`) and the estimated Q-Values (`q_value`). However, because the experiences are very noisy, it is better to use a quadratic loss only for small errors (below 1.0) and a linear loss (twice the absolute error) for larger errors, which is what the code above computes. This way large errors don't push the model parameters around as much. Note that we also tweaked some hyperparameters (using a smaller learning rate, and using Nesterov Accelerated Gradients rather than Adam optimization, since adaptive gradient algorithms may sometimes be bad, according to this [paper](https://arxiv.org/abs/1705.08292)). We also tweaked a few other hyperparameters below (a larger replay memory, longer decay for the $\\epsilon$-greedy policy, larger discount rate, less frequent copies of the online DQN to the target DQN, etc.)."
]
},
{
"cell_type": "code",
"execution_count": 63,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"from collections import deque\n",
"\n",
2017-09-26 14:50:09 +02:00
"replay_memory_size = 500000\n",
"replay_memory = deque([], maxlen=replay_memory_size)\n",
"\n",
"def sample_memories(batch_size):\n",
" indices = np.random.permutation(len(replay_memory))[:batch_size]\n",
" cols = [[], [], [], [], []] # state, action, reward, next_state, continue\n",
" for idx in indices:\n",
" memory = replay_memory[idx]\n",
" for col, value in zip(cols, memory):\n",
" col.append(value)\n",
" cols = [np.array(col) for col in cols]\n",
" return cols[0], cols[1], cols[2].reshape(-1, 1), cols[3], cols[4].reshape(-1, 1)"
]
},
{
"cell_type": "code",
"execution_count": 64,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"eps_min = 0.1\n",
"eps_max = 1.0\n",
"eps_decay_steps = 2000000\n",
"\n",
"def epsilon_greedy(q_values, step):\n",
" epsilon = max(eps_min, eps_max - (eps_max-eps_min) * step/eps_decay_steps)\n",
" if np.random.rand() < epsilon:\n",
" return np.random.randint(n_outputs) # random action\n",
" else:\n",
" return np.argmax(q_values) # optimal action"
]
},
{
"cell_type": "code",
"execution_count": 65,
"metadata": {},
"outputs": [],
"source": [
"n_steps = 4000000 # total number of training steps\n",
"training_start = 10000 # start training after 10,000 game iterations\n",
"training_interval = 4 # run a training step every 4 game iterations\n",
"save_steps = 1000 # save the model every 1,000 training steps\n",
"copy_steps = 10000 # copy online DQN to target DQN every 10,000 training steps\n",
"discount_rate = 0.99\n",
"skip_start = 90 # Skip the start of every game (it's just waiting time).\n",
"batch_size = 50\n",
"iteration = 0 # game iterations\n",
2017-02-17 11:51:26 +01:00
"checkpoint_path = \"./my_dqn.ckpt\"\n",
"done = True # env needs to be reset"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"A few variables for tracking progress:"
]
},
{
"cell_type": "code",
"execution_count": 66,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"loss_val = np.infty\n",
"game_length = 0\n",
"total_max_q = 0\n",
"mean_max_q = 0.0"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"And now the main training loop!"
]
},
{
"cell_type": "code",
"execution_count": 67,
"metadata": {},
"outputs": [],
"source": [
"with tf.Session() as sess:\n",
" if os.path.isfile(checkpoint_path + \".index\"):\n",
" saver.restore(sess, checkpoint_path)\n",
" else:\n",
" init.run()\n",
" copy_online_to_target.run()\n",
" while True:\n",
" step = global_step.eval()\n",
" if step >= n_steps:\n",
" break\n",
" iteration += 1\n",
" print(\"\\rIteration {}\\tTraining step {}/{} ({:.1f})%\\tLoss {:5f}\\tMean Max-Q {:5f} \".format(\n",
" iteration, step, n_steps, step * 100 / n_steps, loss_val, mean_max_q), end=\"\")\n",
" if done: # game over, start again\n",
" obs = env.reset()\n",
" for skip in range(skip_start): # skip the start of each game\n",
" obs, reward, done, info = env.step(0)\n",
" state = preprocess_observation(obs)\n",
"\n",
" # Online DQN evaluates what to do\n",
" q_values = online_q_values.eval(feed_dict={X_state: [state]})\n",
" action = epsilon_greedy(q_values, step)\n",
"\n",
" # Online DQN plays\n",
" obs, reward, done, info = env.step(action)\n",
" next_state = preprocess_observation(obs)\n",
"\n",
" # Let's memorize what happened\n",
" replay_memory.append((state, action, reward, next_state, 1.0 - done))\n",
" state = next_state\n",
"\n",
" # Compute statistics for tracking progress (not shown in the book)\n",
" total_max_q += q_values.max()\n",
" game_length += 1\n",
" if done:\n",
" mean_max_q = total_max_q / game_length\n",
" total_max_q = 0.0\n",
" game_length = 0\n",
"\n",
" if iteration < training_start or iteration % training_interval != 0:\n",
" continue # only train after warmup period and at regular intervals\n",
" \n",
" # Sample memories and use the target DQN to produce the target Q-Value\n",
" X_state_val, X_action_val, rewards, X_next_state_val, continues = (\n",
" sample_memories(batch_size))\n",
" next_q_values = target_q_values.eval(\n",
" feed_dict={X_state: X_next_state_val})\n",
" max_next_q_values = np.max(next_q_values, axis=1, keepdims=True)\n",
" y_val = rewards + continues * discount_rate * max_next_q_values\n",
"\n",
" # Train the online DQN\n",
" _, loss_val = sess.run([training_op, loss], feed_dict={\n",
" X_state: X_state_val, X_action: X_action_val, y: y_val})\n",
"\n",
" # Regularly copy the online DQN to the target DQN\n",
" if step % copy_steps == 0:\n",
" copy_online_to_target.run()\n",
"\n",
" # And save regularly\n",
" if step % save_steps == 0:\n",
2017-02-17 11:51:26 +01:00
" saver.save(sess, checkpoint_path)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"You can interrupt the cell above at any time to test your agent using the cell below. You can then run the cell above once again, it will load the last parameters saved and resume training."
]
},
{
"cell_type": "code",
"execution_count": 68,
"metadata": {},
"outputs": [],
"source": [
"frames = []\n",
"n_max_steps = 10000\n",
"\n",
"with tf.Session() as sess:\n",
" saver.restore(sess, checkpoint_path)\n",
"\n",
" obs = env.reset()\n",
" for step in range(n_max_steps):\n",
" state = preprocess_observation(obs)\n",
"\n",
" # Online DQN evaluates what to do\n",
" q_values = online_q_values.eval(feed_dict={X_state: [state]})\n",
" action = np.argmax(q_values)\n",
"\n",
" # Online DQN plays\n",
" obs, reward, done, info = env.step(action)\n",
"\n",
" img = env.render(mode=\"rgb_array\")\n",
" frames.append(img)\n",
"\n",
" if done:\n",
" break"
]
},
{
"cell_type": "code",
"execution_count": 69,
"metadata": {
"scrolled": true
},
"outputs": [],
"source": [
"plot_animation(frames)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Extra material"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Preprocessing for Breakout"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Here is a preprocessing function you can use to train a DQN for the Breakout-v0 Atari game:"
]
},
{
"cell_type": "code",
"execution_count": 71,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"def preprocess_observation(obs):\n",
" img = obs[34:194:2, ::2] # crop and downsize\n",
" return np.mean(img, axis=2).reshape(80, 80) / 255.0"
]
},
{
"cell_type": "code",
"execution_count": 72,
"metadata": {},
"outputs": [],
"source": [
"env = gym.make(\"Breakout-v0\")\n",
"obs = env.reset()\n",
"for step in range(10):\n",
" obs, _, _, _ = env.step(1)\n",
"\n",
"img = preprocess_observation(obs)"
]
},
{
"cell_type": "code",
"execution_count": 73,
"metadata": {},
"outputs": [],
"source": [
"plt.figure(figsize=(11, 7))\n",
"plt.subplot(121)\n",
"plt.title(\"Original observation (160×210 RGB)\")\n",
"plt.imshow(obs)\n",
"plt.axis(\"off\")\n",
"plt.subplot(122)\n",
"plt.title(\"Preprocessed observation (80×80 grayscale)\")\n",
"plt.imshow(img, interpolation=\"nearest\", cmap=\"gray\")\n",
"plt.axis(\"off\")\n",
"plt.show()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"As you can see, a single image does not give you the direction and speed of the ball, which are crucial informations for playing this game. For this reason, it is best to actually combine several consecutive observations to create the environment's state representation. One way to do that is to create a multi-channel image, with one channel per recent observation. Another is to merge all recent observations into a single-channel image, using `np.max()`. In this case, we need to dim the older images so that the DQN can distinguish the past from the present."
]
},
{
"cell_type": "code",
"execution_count": 74,
"metadata": {},
"outputs": [],
"source": [
"def combine_observations_multichannel(preprocessed_observations):\n",
" return np.array(preprocessed_observations).transpose([1, 2, 0])\n",
"\n",
"def combine_observations_singlechannel(preprocessed_observations, dim_factor=0.5):\n",
" dimmed_observations = [obs * dim_factor**index\n",
" for index, obs in enumerate(reversed(preprocessed_observations))]\n",
" return np.max(np.array(dimmed_observations), axis=0)\n",
"\n",
"n_observations_per_state = 3\n",
"preprocessed_observations = deque([], maxlen=n_observations_per_state)\n",
"\n",
"obs = env.reset()\n",
"for step in range(10):\n",
" obs, _, _, _ = env.step(1)\n",
" preprocessed_observations.append(preprocess_observation(obs))"
]
},
{
"cell_type": "code",
"execution_count": 75,
"metadata": {},
"outputs": [],
"source": [
"img1 = combine_observations_multichannel(preprocessed_observations)\n",
"img2 = combine_observations_singlechannel(preprocessed_observations)\n",
"\n",
"plt.figure(figsize=(11, 7))\n",
"plt.subplot(121)\n",
"plt.title(\"Multichannel state\")\n",
"plt.imshow(img1, interpolation=\"nearest\")\n",
"plt.axis(\"off\")\n",
"plt.subplot(122)\n",
"plt.title(\"Singlechannel state\")\n",
"plt.imshow(img2, interpolation=\"nearest\", cmap=\"gray\")\n",
"plt.axis(\"off\")\n",
"plt.show()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Exercise solutions"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Coming soon..."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
2016-11-25 09:34:55 +01:00
"display_name": "Python 3",
"language": "python",
2016-11-25 09:34:55 +01:00
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
2016-11-25 09:34:55 +01:00
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
2016-11-25 09:34:55 +01:00
"pygments_lexer": "ipython3",
"version": "3.5.2"
},
"nav_menu": {},
"toc": {
"navigate_menu": true,
"number_sections": true,
"sideBar": true,
"threshold": 6,
"toc_cell": false,
"toc_section_display": "block",
"toc_window_display": false
}
},
"nbformat": 4,
"nbformat_minor": 1
}