{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Sheet 5 Reinforcement Learning: Tim Racs and Derrick Hines\n", "## Task 4 - Mountain Car\n", "## Deep Q Learning (DQN) " ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Install some Python package we need by running the following cell." ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Requirement already satisfied: gym in /home/racs/Documents/ProgPrakSoSe20/ENV/lib/python3.6/site-packages (0.13.0)\r\n", "Requirement already satisfied: box2d in /home/racs/Documents/ProgPrakSoSe20/ENV/lib/python3.6/site-packages (2.3.2)\r\n", "Requirement already satisfied: box2d-kengz in /home/racs/Documents/ProgPrakSoSe20/ENV/lib/python3.6/site-packages (2.3.3)\r\n", "Requirement already satisfied: opencv-python in /home/racs/Documents/ProgPrakSoSe20/ENV/lib/python3.6/site-packages (4.1.0.25)\r\n", "Requirement already satisfied: h5py in /home/racs/Documents/ProgPrakSoSe20/ENV/lib/python3.6/site-packages (2.9.0)\r\n", "Requirement already satisfied: tqdm in /home/racs/Documents/ProgPrakSoSe20/ENV/lib/python3.6/site-packages (4.32.2)\r\n", "Requirement already satisfied: six in /home/racs/Documents/ProgPrakSoSe20/ENV/lib/python3.6/site-packages (from gym) (1.12.0)\r\n", "Requirement already satisfied: pyglet>=1.2.0 in /home/racs/Documents/ProgPrakSoSe20/ENV/lib/python3.6/site-packages (from gym) (1.3.2)\r\n", "Requirement already satisfied: numpy>=1.10.4 in /home/racs/Documents/ProgPrakSoSe20/ENV/lib/python3.6/site-packages (from gym) (1.16.2)\r\n", "Requirement already satisfied: scipy in /home/racs/Documents/ProgPrakSoSe20/ENV/lib/python3.6/site-packages (from gym) (1.2.1)\r\n", "Requirement already satisfied: cloudpickle~=1.2.0 in /home/racs/Documents/ProgPrakSoSe20/ENV/lib/python3.6/site-packages (from gym) (1.2.1)\r\n", "Requirement already satisfied: future in /home/racs/Documents/ProgPrakSoSe20/ENV/lib/python3.6/site-packages (from pyglet>=1.2.0->gym) (0.17.1)\r\n" ] } ], "source": [ "!pip install gym box2d box2d-kengz opencv-python h5py tqdm" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "Using TensorFlow backend.\n" ] } ], "source": [ "import gym\n", "import numpy as np\n", "from mllab.rl.dqn import BaseQNetwork, ReplayMemory, EpsilonGreedyPolicy\n", "from mllab.rl.dqn import ProportionalPrioritizationReplayMemory, DiscretePoints #added" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Environment\n", "\n", "The action space of the car racing environment is continous and\n", "consists of a three dimensional real vector $[-1, 1]x[0, 1]x[0, 1]$\n", "corresponding to steering position, amount of gas and and brake intensity.\n", "We need discrete actions, so you have to pick finitely many points from this box.\n", "\n", "A initial suggestion has been made, **feel free to modify it**." ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "env = gym.make('MountainCar-v0')\n", "# This will open a window. Call env.close() at the end to get rid of it." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Let's watch a random policy." ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [], "source": [ "env.reset()\n", "while True:\n", " new_state, reward, terminated, _info = env.step(env.action_space.sample())\n", " env.render()\n", " if terminated:\n", " break" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "precrosessing" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [], "source": [ "import cv2 as cv\n", "from matplotlib import pyplot as plt\n", "from keras import backend as K\n", "\n", "\n", "\n", "def preprocess(state):\n", " image, measurements = state\n", " if K.image_data_format() == 'channels_first':\n", " image = image.reshape((1,) + image.shape)\n", " measurements = measurements.reshape((1,) + measurements.shape)\n", " else:\n", " image = image.reshape(image.shape + (1,))\n", " measurements = measurements.reshape((1,) + measurements.shape)\n", " return (image.astype(K.floatx()), measurements.astype(K.floatx()))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Task 4\n", "\n", "Define your model for the Q-network by implementing the `build_model` method.\n", "\n", "The method must return a model and an optimizer. The loss is implemented in the parent class." ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [], "source": [ "import keras\n", "import keras.layers as layers\n", "import keras.optimizers as optimizers\n", "\n", "class QNetwork(BaseQNetwork):\n", " def build_model(self, state_shape):\n", " num_actions = len(self.action_space)\n", " # Build the network for the image part\n", " img_shape, scalar_shape = state_shape\n", "\n", " input_img = layers.Input(shape=img_shape)\n", " img = layers.Dense(16, activation='relu')(input_img)\n", " img = layers.Dense(8, activation='relu')(img)\n", " img = keras.Model(input_img, img)\n", "\n", " # Build the network for the scalar part\n", " input_scalar = layers.Input(shape=scalar_shape)\n", " scalar=layers.Dense(8, activation='relu')(input_scalar) #added\n", " scalar = keras.Model(input_scalar, scalar)\n", "\n", " # Combine both networks\n", " model = layers.concatenate([img.output, scalar.output])\n", " model = layers.Dense(16, activation='relu')(model) #added\n", " model = layers.Dense(num_actions, activation='linear')(model)\n", " model = keras.Model(inputs=[img.input, scalar.input], outputs=model)\n", "\n", " opt = optimizers.RMSprop(lr=0.00025 / 4, rho=0.95, epsilon=0.01)\n", " return model, opt" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Q-Learning Algorithm\n", "\n", "Implement the `train` method." ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [], "source": [ "from tqdm import tqdm_notebook as tqdm\n", "\n", "\n", "class DeepQLearning:\n", " # After how many steps the weights are copied to the target-action network\n", " target_network_update_frequency = 1_000 #n_update\n", " discount_factor = 0.99 #gamma\n", " # A random policy is run for that many steps to initialize the replay memory\n", " replay_start_size = 5_000 #n_batch\n", "\n", " def __init__(self, env, replay_memory, policy, preprocess=preprocess):\n", " self.env = env\n", " self.replay_memory = replay_memory\n", " self.policy = policy\n", " self.preprocess = preprocess\n", " self.rewards = []\n", " self.best_agent = None\n", "\n", " def train(self, total_steps, replay_period, weight_filename=None, evaluate=None, double_dqn=True):\n", " \"\"\"\n", " Train the agent using DQN.\n", "\n", " Parameters\n", " ==========\n", "\n", " total_steps: int\n", " Number of steps the agent is trained for. #n_max\n", " replay_period: int\n", " Number of steps between which the network is trained. #n_replay\n", " weight_filename: str or None\n", " If not None the weights of Q-network are stored to this file during training.\n", " evaluate: int or None\n", " Number of episodes after which the policy is evaluted and the result is printed.\n", " double_qdn: bool\n", " Whether to use Double-DQN (DDQN).\n", " \"\"\"\n", " if len(self.replay_memory) == 0:\n", " self.initialize_replay_memory()\n", " action_value = self.policy # ~ theta\n", " target_action_value = self.policy.copy() # ~ theta_hat\n", " episode = 0\n", " step = 0\n", "\n", " while step < total_steps:\n", " episode += 1\n", " self.env.reset()\n", " preprocessed_state = self.preprocess(self.env.state) #phi(s)\n", " print(\"Episode {} ({} steps so far)\".format(episode, step))\n", " for _ in tqdm(range(env.spec.max_episode_steps)): \n", " # your code goes here\n", " step+=1\n", " action_index, action = action_value(preprocessed_state, step)\n", " new_state, reward, terminated, _info = env.step(action)\n", " preprocessed_new_state = None\n", " if not terminated:\n", " preprocessed_new_state = self.preprocess(new_state)\n", " replay_memory.add(preprocessed_state,action_index,reward,preprocessed_new_state)\n", " \n", " if step % replay_period == 0: #train with batch from memory\n", " def labels(s, actions, rewards, s2, not_terminal):\n", " \"\"\"\n", " input:\n", " s is a list of preprocessed state\n", " actions is a NumPy array of action indices (the action taken in s)\n", " rewards is a NumPy array of rewards received \n", " s2 is a list of preprocessd states (the new state). Only non terminal states are returned.\n", " not_terminal is a NumPy array of boolean indicating which of the states in s was not terminal\n", " return\n", " y = 𝛾Q_target(s',argmax_a Q(s',a)))\n", " \"\"\" \n", " y=np.array(rewards)\n", " \n", " for k in range(len(y)):\n", " if not not_terminal[k]:\n", " continue\n", " if double_dqn:\n", " argmax=np.argmax([action_value.q_network(s)[j,a] \n", " for j,a in enumerate(actions)] )\n", " qval=target_action_value.q_network(s)[k,actions[argmax]]\n", " # should we use here the old action on the new state? \n", " y[k]+=self.discount_factor*qval\n", " else:\n", " maxi=np.amax([action_value.q_network(2)[j,a] \n", " for j,a in enumerate(actions)] )\n", " y[k]+=self.discount_factor*maxi\n", " \n", " return y \n", " \n", " def my_criterion(s, actions, rewards, s2, not_terminal):\n", " \"\"\"\n", " input:\n", " the same as in labels\n", " return\n", " |y -Q(s',a)|=|(r+𝛾Q_target(s',argmax_a Q(s',a)))-Q(s') |\n", " \"\"\"\n", " Q=action_value.q_network(s)\n", " qval=np.array([Q[j,a] for j,a in enumerate(actions) ])\n", " y=labels(s, actions, rewards, s2, not_terminal)\n", " \n", " return np.absolute(y-qval )\n", " \n", " \n", " transitions, sample_weights = replay_memory.sample(my_criterion, step/total_steps)\n", " s, actions, rewards, s2, not_terminal=transitions\n", " labels=labels(s, actions, rewards, s2, not_terminal)\n", " action_value.gradient_step(s, actions, labels, sample_weights)\n", " if step % self.target_network_update_frequency == 0: #update\n", " target_action_value.copy_weights_from(action_value)\n", " \n", " if terminated:\n", " break\n", " \n", " if evaluate is not None and episode % evaluate == 0:\n", " total_reward = self.evaluate(target_action_value, weight_filename)\n", " print(\"Total reward: {}\".format(total_reward))\n", "\n", " def initialize_replay_memory(self):\n", " \"\"\"Initialize the replay memory using a random policy.\"\"\"\n", " self.env.reset()\n", " self.replay_memory.purge()\n", " state = self.preprocess(self.env.state)\n", " size = min(self.replay_start_size, self.replay_memory.capacity)\n", " print(\"Initialize replay memory with {} transitions\".format(size))\n", " for _ in tqdm(range(size)):\n", " action_index, action = self.policy.sample(return_index=True)\n", " new_state, reward, terminated, _info = self.env.step(action)\n", " new_state = self.preprocess(new_state)\n", " self.replay_memory.add(state, action_index, reward, new_state)\n", " if terminated:\n", " self.env.reset()\n", " state = self.preprocess(self.env.state)\n", " else:\n", " state = new_state\n", "\n", " def evaluate(self, policy, weight_filename=None):\n", " state = self.env.reset()\n", " total_reward = 0\n", " for _ in tqdm(range(env.spec.max_episode_steps)):\n", " # get action from policy\n", " _, action = policy(self.preprocess(state))\n", " state, r, terminal, _ = self.env.step(action)\n", " total_reward = r + total_reward\n", " if terminal:\n", " break\n", " if self.best_agent is None or total_reward > max(self.rewards):\n", " self.best_agent = policy.copy()\n", " if weight_filename is not None:\n", " self.best_agent.q_network.save(weight_filename + '.best')\n", " self.rewards.append(total_reward)\n", " return total_reward" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Let's create all objects, set parameters, and start training. **Make sure the replay memory is not too big for your memory!**" ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "((1,), (1,))\n", "WARNING:tensorflow:From /home/racs/Documents/ProgPrakSoSe20/ENV/lib/python3.6/site-packages/tensorflow/python/framework/op_def_library.py:263: colocate_with (from tensorflow.python.framework.ops) is deprecated and will be removed in a future version.\n", "Instructions for updating:\n", "Colocations handled automatically by placer.\n" ] } ], "source": [ "# Get shape of transformed state\n", "s = preprocess(env.reset())\n", "img_shape = s[0].shape\n", "scalar_shape = s[1].shape\n", "print((img_shape, scalar_shape))\n", "\n", "# Create the Q-Network\n", "q_network = QNetwork((img_shape, scalar_shape), DiscretePoints((0,1,2)))\n", "\n", "policy = EpsilonGreedyPolicy(q_network)\n", "policy.initial_exploration = 1.0 # initial epsilon value\n", "policy.final_exploration = 0.01 # lowest epsilon value\n", "policy.evaluation_exploration = 0.001 # epsilon used during evaluation\n", "policy.final_exploration_step = 200_000 # number of steps over which epsilon is linearly decreased #changed this\n", "\n", "# Create the (empty) replay memory\n", "replay_memory = ProportionalPrioritizationReplayMemory( #this isn't defined???\n", " img_shape, scalar_shape,\n", " # ATTENTION: This is most likely too much for a laptop\n", "# capacity=500_000, batch_size=32)\n", " capacity=5_000, batch_size=64)\n", " \n", "dqn = DeepQLearning(env, replay_memory, policy)\n", "dqn.target_network_update_frequency = 400 #changed\n", "dqn.replay_start_size = 125 #changed" ] }, { "cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Initialize replay memory with 125 transitions\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1a77f96b08c84fd08e0eebfc2749f805", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=125), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1 (0 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "edc2055e7bd44908a51ada3d0fdc2991", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2 (200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8031003bf1174a8ca2ae244aa067afde", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 3 (400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "fe581427b5d54740a53595e020bd1c60", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 4 (600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "878511056913442cb3271d94b4ea4f3c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 5 (800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2ecc562d9f5a40d280d3e4804f3dee2f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4c7a3344942c4d57a279805c4618bb64", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 6 (1000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3229f2efb98244f397ec80e379929443", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 7 (1200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6c10ce6863ab4381b504bba8e2bdf46e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 8 (1400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "71af7f8a937e4c9b9fe8d333314a1d06", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 9 (1600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1bf13e2a5e1d4af59d81915c6c6d30d5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 10 (1800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "95d717cb35624cf38f2c72e4a699269c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1ff36874c3e54907a9b790bd3a924230", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 11 (2000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5f0a8cab401e4457b3e63ff5a335a440", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 12 (2200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f779eb43681b4ef8a5cd78a0da716a27", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 13 (2400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5cddc168fde14f54a661e03d3d3d745b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 14 (2600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3a1be1968bbd4cae9b37e300d2f105af", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 15 (2800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "aced7254e65e478fb199ec69c127a794", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a64a9b61a48c45e6bc5a8640dfbf8503", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 16 (3000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9fbf088d43294f30bdd0d55bab42a551", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 17 (3200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b157fcb6e0174ac69a10d41a9c0ac01d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 18 (3400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "815314c18eaf4d9b901b82b76334aa0e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 19 (3600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5d7eb64e4f0d4a44b5cab101cb09f630", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 20 (3800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f3375435c2fb4f63a32555e18f2df2a3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "be95f3e9d48f47b9b3ff191e6568355b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 21 (4000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "acd5bc35ea0b44e891cf68f0d392938b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 22 (4200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "819afd077fe9479597ff40d474ba589c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 23 (4400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "bce314dace604d9db7bac6627d947951", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 24 (4600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c42ca8dc22134b51ab0fbeb3d62050b6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 25 (4800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "50b43aa6d1d942fbbbfffa9b775cac92", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b9a528b9eb2c49be8ab1aa5d8a7f6bc2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 26 (5000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "71cc147af17e4c5bb11bf6c98e0ee604", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 27 (5200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ecf304a849c843c49399ffc1e53848b8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 28 (5400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6cf3dedcd16546d6b529a9a33c2c6945", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 29 (5600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "71b14983e3a1449499c19e8117936406", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 30 (5800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "afbeb13b26e44f779048455373250df0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "08ca8f03876e406fb5b0c58e967845ed", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 31 (6000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "971040d2dd0247839498339f9707c812", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 32 (6200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8eff2cbc1371469eb0bcfca4baaf04f3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 33 (6400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "52e9ec8cd32b41be8642d7ba027f3ee8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 34 (6600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6275947f1dec4ef193d4f2e006d1751f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 35 (6800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ae32196363bb416791b95bb9b57115b3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5e0528e04b6442bb873f7ddb5d3154b2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 36 (7000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0d2ee5e8c4d24afaae30b16bdbb4b731", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 37 (7200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "178cced388f24e94944077d65c155d39", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 38 (7400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a906bbd3ff714b1c90c0f189a46853cb", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 39 (7600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f61d82561ae2461b9d5a6817d35a06f0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 40 (7800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8444cae43018424c89bfd86967892694", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e0b12af1b69d4bc082ab1cc33515bde6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 41 (8000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "92a763f04faa42d9808f62d214f02f88", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 42 (8200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5c3ee6df02eb437e8ab440ee76095b7b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 43 (8400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0a90ed652d59478f899de28ce3670645", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 44 (8600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "81e5816ec06545b39c4127b639382683", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 45 (8800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c00568c423784a52aa0d2ad3118c2eec", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5d9e8f0b1151478faec1a64fadb5331b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 46 (9000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ae7fafa7685e4ba9a06c9c6a9c756cf3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 47 (9200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "53f4ff66444a432088220a85d3a51ec5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 48 (9400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4ee7c58d18444d4ca2e97897f47f28af", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 49 (9600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7b63c938974a4fd389b36354097cafb3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 50 (9800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8909f9f670b54e02b3e85547b01e8217", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "68d743884cc64193a9c21a5ce1d3d77e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 51 (10000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9da93afd5ddd4348a3d7358a517eae9e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 52 (10200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "09bb7a978eb94cd1ba094dc2a5e6821f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 53 (10400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "968ab5ba506a4e78ad8c39c131363f16", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 54 (10600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "649f81f2b89d4426a394311545e7a805", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 55 (10800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "645eef2946984b769a1ab4b05a9f2c7f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "614596d7dda74d3a90b9f829170e3e42", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 56 (11000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "18c07162f49f458aa64568c74c7160ff", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 57 (11200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f03e64feaf914d46af19a7351d24849f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 58 (11400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "11c086fa3f9840759c00524e125cff7b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 59 (11600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "fd60bcacb61240e68eb6eca2d316ee19", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 60 (11800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "bde5117517a84dee9c89cf0f57a44686", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e5c950bcb75442f49424f38ff0f1ed4b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 61 (12000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a5435307620c450b920ff612c1e7dc8d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 62 (12200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "51742ec082414557b13340affd5421a8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 63 (12400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9721ada2e0714b3b91efa17af3b5a7aa", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 64 (12600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e31f6e62d2d246e6b1059f736a9938f5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 65 (12800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f14f4037eaae474e9deade9de3875fc8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "87f3b0060d654dd78e0e47aa3388be99", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 66 (13000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8e1cce72634c4b95952d60846f44b6d6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 67 (13200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "bc00d3d4d5b54bdd8b0988cc69703e39", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 68 (13400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5002bc11297c48dd8f51c55e66a5ed71", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 69 (13600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "031cfb896b0b4787a09a64b280d21941", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 70 (13800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cac97d73577a436781e09e40b5b15ca6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "77ca25f9401f44e0b99514163750928c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 71 (14000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "178dc0c7cee046d884a1a5a8632a9c8d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 72 (14200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3ea3570dbce543169c1c01875fe7e0ac", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 73 (14400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6aa788735c0b4261bab4a576798afb9c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 74 (14600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ae9f3f8cd40046dcb12182c0e009158f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 75 (14800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e9d2e3361fb440b0beef96130992762c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4a99d8e3f8534b13b21248c8c40ac964", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 76 (15000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4361adc3c53c4cd6b7b90813bd387887", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 77 (15200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "56b1aef1116e4f4a96f9b0103f7ecaa0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 78 (15400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e1991ce29e9b4d5ebf28c7a6decc9edd", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 79 (15600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9ade02fff8f641c9819af9f6fe5023c6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 80 (15800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6649496a127d4f429a77c5621b2b3beb", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c9ef08f359b948f0ae27e19590f0e466", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 81 (16000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7bf2b2cce1c14ff48d6e59c116c15aa9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 82 (16200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3c5e94002eaf4feb8ab7eb86a06deaf9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 83 (16400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ad51e8f688eb473e992c5d65263cddee", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 84 (16600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "15eb1b32f9074cf4a95455a9d88223f1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 85 (16800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "16f35fc4fef54cee9ac04b8af7b6f00b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b97660d57eb3447a8f626caf97f630b3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 86 (17000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a06fa024a8144fa4a10e22041309e35b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 87 (17200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "474c76c30e3441fd9e1d7dd4d1d263f5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 88 (17400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8d587fb1c26640309b8193144886991c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 89 (17600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "aa328f45d8094c16ba728ab7c2abe8c4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 90 (17800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "09d963f25a4946e2bab6ac4a3b3375b3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5e42d3068dc445f0be7da6607e714325", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 91 (18000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b2a8c68ec13946999278aaed9d9a1ec3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 92 (18200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "73cb633668474bcf89720d36c429b949", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 93 (18400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6435c4c299d7429282d67bc28cee61cf", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 94 (18600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "850b2281070a4df0923f3c001959a326", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 95 (18800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "029eee4b41aa43e885225c74d4061a69", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "379d12631718464dba1313e02c6187fe", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 96 (19000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7ebb97dc5fa840b18fb0033332518280", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 97 (19200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3041dc2352f84a63bb670c4e04ad969b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 98 (19400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a234739488ac4058834a139a352b93b4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 99 (19600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "633cab6339384f6d95c5e3b3ff8f0aad", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 100 (19800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7721ad1c80dd405e9fd3ffa3afc01448", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a40c85c2193c4264b7f1c9d574df99cd", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 101 (20000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b48a34e1b70a449290ed1e7924b3f6bf", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 102 (20200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5e5bfa75825547a3813c0f0a4def1f35", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 103 (20400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7a86213835d74cb5ba74a1956dd113b0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 104 (20600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "af25edce8b1c411a95a0987c21272429", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 105 (20800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "afe8acdab8c3451bbcb7d0c0915cfd5e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0d613bccc4a6471b93a4ca88bfe2036f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 106 (21000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e9559249a8314450bf386d26a1aaa8a6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 107 (21200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "03bc300fbf0949a2957137d4577d7ce8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 108 (21400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "13b870b7038d40648c02a9d82525d58e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 109 (21600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7570af478df74859952c9b7546281faf", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 110 (21800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "44b77499af1e4531adac4a0719f41f6b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1ff6933f53454ec2931a50e1ba790461", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 111 (22000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7503f7291b92485f8af945b0642aa709", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 112 (22200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e76a6d4a98cd4d9baedd6a4764dbc91f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 113 (22400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "94cb9ac40e9a4374b248158d291560fd", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 114 (22600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "93d07e51d3804f0c8cedb3e7dc872547", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 115 (22800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5d691bea05ac4302aefb3df4b4e36bfd", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4fa4663111ef4e129d8b8844c850f35f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 116 (23000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "71bc490a9269455986d4db801438b4d4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 117 (23200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3f51f4b9c43c444b9f448cbcb0844dbb", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 118 (23400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1e6a460574ef43f295cf6945951d03ef", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 119 (23600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "953fb89163ef45f9b53a490b28b63025", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 120 (23800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "aef6c82c411f4682b370e753712c7354", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "bb5d2f200767466c865ee9db74f56978", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 121 (24000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "82ed8d6864c844bc908e7c21ee629c8c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 122 (24200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "798c9531064a4faea071a32f0c59df9c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 123 (24400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "04b6560d2e154a5194c57126306f82af", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 124 (24600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a56b775d812d4b9e9b4e0751201e2114", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 125 (24800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7168db9b8c174ad9bf312ded0cbf49bb", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1e307005710a4779b8155142a6c28b71", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 126 (25000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "888d0cf37047492ba945168215736724", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 127 (25200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e04ff2e89b2649d992bdfd270a0d55c1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 128 (25400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6853100580c244c1be9c312f93970182", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 129 (25600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3600f84d03d34e7da5a10a10b33e1d5d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 130 (25800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "bcf0270e24e743a1aa2eb2b7b7887482", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7c00f38b83474050a0099131509c91a0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 131 (26000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "817dd14e1aa748b6b56a9b6fd9d99560", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 132 (26200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9f6dc2cd6b014e489fe0e5a6a702b728", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 133 (26400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "23b196d820fe431589f1a1d88c92b270", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 134 (26600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cfb1b3528ca64831b170296c93d79bee", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 135 (26800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6ce0a7667e4745c4bf5f2983ec94bc0a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "20e1e3054a6a43a293888cf8718a8710", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 136 (27000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "30955a782304498b9e1b438f198ed520", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 137 (27200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "06a02744b7c24d97a2a41d291a10d5cc", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 138 (27400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "22c101f3033f45fa8a9bbd9071a696f2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 139 (27600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "69ecaa3bec504ae8b1c7ec122084ea51", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 140 (27800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e9161d83733e4f4e8823a528a59592fb", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "87324ead571b498baab4dda04f289713", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 141 (28000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0e2aca36d86f4bb6b07d409dcb70e2e8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 142 (28200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5e3173fa47644e46b68d639cf7bdee5d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 143 (28400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3df38e1124694c71b39bf9ae9c3f79fa", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 144 (28600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "fdfda6852aff4ae9828018f04319d729", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 145 (28800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9f488ff643774e21984078c7dc6a3d31", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a97fd44a82ee459091bba384a68226dd", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 146 (29000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "376148d4cbcc4719bf4588e64ce109c6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 147 (29200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "baa0a75251654b3e99ef6c7708d79a84", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 148 (29400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2847bc625f694c9fa190de4ab073dd9e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 149 (29600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f278bb4c37a645169d5d6deffd5a8a83", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 150 (29800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "53b21b662137499f8feffd88d68081f1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1b931a5f2b2f449eacb0167c7ff92cb6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 151 (30000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3932db1d78f64140a5fe50a2b6e5ae57", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 152 (30200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a242f3e1342741a793e156855fa66cab", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 153 (30400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "68c4f073ba884d6cbee5998400480b61", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 154 (30600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "101be23f19e8487ebe8d01d877650854", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 155 (30800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "182faa94ddb14077b4f5972853236ad4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6c931c48a6034a329262a44b895ca278", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 156 (31000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "72e999c603c74bfab8149e6975241ed7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 157 (31200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "390e3a978cd047b8afcd1f2498ce2770", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 158 (31400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "60c82c3f47b749eab85bfb58b4cd156a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 159 (31600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3674f0eb24f446ffbe03a3ada429fe3d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 160 (31800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3c203acdf6164322b79e444b50f09ae3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4aa7c6b072704f4ab7b7ad245eb01cb4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 161 (32000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2a730316765a43db895c1a51c830b179", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 162 (32200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "86471ec932644fe38007bf71d6f648f6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 163 (32400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "645434182eed4296854d18f451275800", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 164 (32600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9b0ae007abbb47648171a3f72e84e06b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 165 (32800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "25614bf6462e4dd1be19d18fb6a82045", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ffaac5ef0deb4d208c5a57ac50c8e629", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 166 (33000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7f504f87d4a04988af909bdafaa98b16", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 167 (33200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7b1937cbff414a8ba70ef378dbb0c7b9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 168 (33400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1d9f16391bc645eebccd6a7d445d4bae", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 169 (33600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "633e15af3d234d8e8f73fb8db0ba17d4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 170 (33800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3d03c88701bd4ca39326195038b62aaa", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "db9a635d695a4b55b9ef452d3038802f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 171 (34000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "51a93e0d9b40413f8e9621369995ac11", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 172 (34200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5742f988394a4f7f86180a88c101d6dc", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 173 (34400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1f66b15c78814748a79e2875f422805c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 174 (34600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a06f0f21d701420e9efbd10edf835956", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 175 (34800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e7cb2cd13833498bb2cd4ffcbc166884", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f06a709dbf974c98bdd472effd2fe709", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 176 (35000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cac9b6e3817244d09c63f5e551dddcb8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 177 (35200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4fcd4d574cb744f18cb61c04a8e5958d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 178 (35400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a29039a5c7d042e7af37d2a72340e348", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 179 (35600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "628cd958e71d42b88f0d64ee1682f721", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 180 (35800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "040fb3cd02e64fb3936652a6c08facea", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cbb8358919bd406ca354b6db2cde9eda", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 181 (36000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1893e42624ec40fcb6678864dcf398d5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 182 (36200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3fd128da2a3d449a95ef72a334c4c82f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 183 (36400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "89d920188d734219b39c09e6ca5fe9cd", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 184 (36600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5a55e712f96c47de96aec139d3df7cb0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 185 (36800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b75cc0bfc2b94f5e80b807bcd178052d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "052b88a6be574f4380047c1ffcf76117", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 186 (37000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d278eeb1c0d248c48f0f5a944ed3f99b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 187 (37200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "34dbc4fd5b1040f9a1a90c3fd6766681", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 188 (37400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1aed394e3b0e474ba36e2f534ff2d091", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 189 (37600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3bffa8553bcc40cca6641163747d5b2d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 190 (37800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b922fdb011414f09a4545536bc213139", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4a5497b145044101acf42fe28fa948fe", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 191 (38000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1005eec335c44cd096809a74fdfe3565", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 192 (38200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a9f81ce72d1843d298bea224796aecd2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 193 (38400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ae6b69fab35047d7a73c265b4635db6a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 194 (38600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4be8e1ede1ae4dd8a3990164c29356f7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 195 (38800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5516a08cff45441187bb72b08a0441ed", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4f968a02d39741538ae4130360dc87ae", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 196 (39000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "11be3c087cbc40faa2610e4f2f278666", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 197 (39200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "453bf4a66670488ebe894649aef53284", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 198 (39400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e36d9d8484a647c1a9c60d7308530a81", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 199 (39600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b45d42c078c44dbfa8750d1ed8f82c9d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 200 (39800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4e79d34bcf2549fb8eaf79b4a76da3c1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "24b16f27b30344ee8cfa6bc1c0aa18c0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 201 (40000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "37a380fa169644938e9a862d83e3aa0d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 202 (40200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4337bcdf1df54430883e23520c03eefb", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 203 (40400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3c60f022179c44dbb881c1a3c7e419ae", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 204 (40600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "84827dcd94644df6920d77845391abe2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 205 (40800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7aadbcc1ee904a338c427185971a4036", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "188017f61b5e4dc7a596c72f672d2851", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 206 (41000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "27bbcb2ec4a44c7e921bd180f88d30d8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 207 (41200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a2b0f3e7c4bd45098dd33c134cf989a8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 208 (41400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "96e854417cf1487bbc77cf305f5e2e7a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 209 (41600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "402a651eb32145909bf1b17fadc8a060", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 210 (41800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e73390bdaad24d518bdd7b55d2bc6a74", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0055155711e5440aa307d8168bfab3df", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 211 (42000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5102661ecfbd4fe3b26e0fb0f9070eb7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 212 (42200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4af481ce1e1747c58fa545447aabfc4e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 213 (42400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a5a8314b57ed48559156cb493b82635a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 214 (42600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "bac301df845244449c7c725505984cf8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 215 (42800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5a3ce3a491584434992ab194656b27c7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "09d21d14db734c2b9cf4d04fd339dbf0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 216 (43000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6db96beffb1748c4950b3d8e576d38da", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 217 (43200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a61e5009374b44448670c72fe6225cbb", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 218 (43400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "dd9b8de4527a42f3b1b8057aea8d3bd3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 219 (43600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0e0dc76251ad4bdea75d76b9fbd4e465", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 220 (43800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6969f88ba48349e480bd8a97a758c195", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "aa155063ad7841cdb5a59693df21f8fc", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 221 (44000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7c8eda4df4dc4eab93f205cb27024a38", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 222 (44200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8cf682728776439fa76776a518cef00b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 223 (44400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5c36c5170f724a768b9037f0f50dd0d6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 224 (44600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b87b403029ce475792705ed99541be46", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 225 (44800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "dbb7e7891b644f349bc63c2d25052270", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a0aa1d29e950480caec9984cb83d8282", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 226 (45000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "38f0e56b265345c68c755e65a7d0c81a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 227 (45200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c8085c2da1a542d295014bcc627de76c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 228 (45400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ebee30c83c274ec59c93a9d0e76f4402", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 229 (45600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7ac6cbf733e44f478f44180905924013", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 230 (45800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "367db6efc86a40e4bde1153a946df3f6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "259da1fd82aa4d128a41dfebcd60b081", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 231 (46000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ac29512b7def465c84af494dbb4fc208", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 232 (46200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2f4cc336976e4eca8462b2ffc9abc367", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 233 (46400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "13630f89d79a4de79677e35f84880fde", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 234 (46600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "de0be7cee84e4bdfa9e0cbb4fa0ed7d0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 235 (46800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ea5e4b56b754438292f0ef2fa3f78da4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4776c817fd85469ea339a6256f6fac74", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 236 (47000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ddde41139ca746dabad88a56a4be9ab4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 237 (47200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5362db10539845ebbf01a1dd18670cd0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 238 (47400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d66da82f826247fbaba1c394f0cd9123", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 239 (47600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7361deedaadf45d98220b86b304ce64f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 240 (47800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "90614fc2cc3d427cba86d598afcb1be3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0185f41445bf469eb0a24ca61c87b188", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 241 (48000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cc417f1e7a8649d186db11b8f4026130", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 242 (48200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a5e54b1073fa4193a23e89851fef5eff", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 243 (48400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3106e9326fab4af09be1187982505d69", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 244 (48600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b55857237b35417499ad55d0c487b16e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 245 (48800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6fe7ae3f5b0248c1ac67adb1e3b59a88", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c36147431c8b4cd688491351ebc461ee", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 246 (49000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ce72c3c3714e45c0badad2d44090fbec", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 247 (49200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "460a11120e5a4b13b64fb1aa8c70a1d4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 248 (49400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d2d6769cc420460db0cb21bb88ee72cd", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 249 (49600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7c0e36ea69af4573a56a0839b03c16e5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 250 (49800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5a8f2d8796da4345ad8be6746365c6bc", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5b15264481734ea886233ccc15cb8505", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 251 (50000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "151888e7ddad41168581b7774aac1b86", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 252 (50200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a2c1c9fe1117405481ae756afd65d776", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 253 (50400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ad91d781538944908b27d77d897ade5e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 254 (50600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d83d84d9f908488a97006a0aafa79807", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 255 (50800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3430e9c181664fa1b864aa909fd8e726", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f05dcd282ed2416abd881b4828dc7cda", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 256 (51000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d315a3e478904aecbe54941908c7d821", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 257 (51200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "499ec49cd41441f4b65d12fe2f446cd3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 258 (51400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "74464fcde94046eb920fb60e2f702815", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 259 (51600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6877a19be79a452b8bbd511e0b9752d0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 260 (51800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a1153c21ba7346e2b982bf7f2a110402", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7f6d9c99eee249b0b3a90f1d2163179d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 261 (52000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "abd638a8d0724f4284df1fdfe0b4a84e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 262 (52200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "204698fbe1f44849bd0cd3de9d317d8f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 263 (52400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6df477e3e3024188a0e3365dbc5168b7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 264 (52600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "718c22754e9145859fafcc39dffc6e79", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 265 (52800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5af09b72537b410393e1bca3759b4738", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1bee9d9a2e9b4437b8c7432391cb7f3f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 266 (53000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "87d61c6ecf524f079763288b624b0eb1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 267 (53200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "606ca16b4a884a05be69699f0f05e8f3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 268 (53400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "45960896a0d44075bdf30b87cc340d96", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 269 (53600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "44a48bdc4e22467192725235e9f87d5f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 270 (53800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3575be351f7d4abc9ef0d7ea633fb743", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d74e605938d14cefa28d83e7c2ed8b43", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 271 (54000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "327e1dfc1100411b89f6acc7aca7c0d9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 272 (54200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f692029a9e0742c3828284ad69d3c5a6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 273 (54400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a60837041efa4be1aa8cee7ed40ae526", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 274 (54600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "042f33178ed042098e9dfba4f733927e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 275 (54800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "200b236cbb224455a6bab3b70321387e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "11af7fda1f284c8daf89561bddd28dad", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 276 (55000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "fc9713e928b44eee83361e367d16619a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 277 (55200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "04e276ea33ef4e4cbe829aa0fecf7753", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 278 (55400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "357426bd792246868f1ffbac98e7f09f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 279 (55600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0e0d3d5b393b460aaa0875d019284ccc", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 280 (55800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "dd6def36a3844d36a4c71074bd424697", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4a70faaf1aa84a9cacf84bc61e26557b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 281 (56000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "41675ec6001c4b2ba4adcebc207e7a32", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 282 (56200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "83568430de5b42fb8cabfc42d2293f9c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 283 (56400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "bfb7c9ad6faf45caa7cbd94201159cc0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 284 (56600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b2bbe3eac3da41b8a5e956eb819452a9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 285 (56800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "48d896d0738744599cfdda070fe24c11", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9baef645278740c994931afe37355053", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 286 (57000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0060616023384e5fb17924411996a794", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 287 (57200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d35ff337bf3c44b8ab01b94028ae505a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 288 (57400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "26228744d0714f619b0d5088ce85dc43", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 289 (57600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f29c4c3d5d184b46add55d359b0b77dc", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 290 (57800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6bfa51bc3ba849888500b4fbbc453c17", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "466eb7772c6845c59e1aa7a5e93e81ee", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 291 (58000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8f7f6eee869147a5ac321f81182a407c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 292 (58200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c119c65394344f6e831a4c365c94ce2a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 293 (58400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a943223a38bb4b6cbccdbd5569c1d018", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 294 (58600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3e1cd1fe14fd4f9d9419c420beabbed6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 295 (58800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f47560edb9a348429ec9057d13efe04b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3dddff477a64409785f9e58679f2d392", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 296 (59000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ab6313f3f7fb49da924cc63c3cf14941", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 297 (59200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7fd4e99de8a9428a94039fc960e3254a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 298 (59400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b0cd3fe609e24174b5d342f6b88b8f55", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 299 (59600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0c4df43ff0ff4995a545350d828fe5ba", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 300 (59800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c84cd98d9f9b483cb12f2620300f8139", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "dd1b1a8cd584489e87b533849fdf0708", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 301 (60000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6778db7e97b54ec79a0bf78497499895", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 302 (60200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e814b1f730e94445bf6a291279b54a0f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 303 (60400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1c9bfa8e4c7543b0907594ede250f17e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 304 (60600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "744cddf43d4644c9b27be7ba191394ba", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 305 (60800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "532ea6bfccb2495d91fb14fdc043d231", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6794edb29bc94d0a8a123b5ffa288d61", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 306 (61000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8b5500d66beb4b869f5efb0e80dba28a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 307 (61200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b9c03b4c4def4dc1882d7d730d4b2ef2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 308 (61400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "aa521af9084042498be26a01d2554955", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 309 (61600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "bac8d3ea33bb4286ba82437debab4b2b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 310 (61800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "98dad7facba94540944125586449b02e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "28d28837c03e4b93ad078bb7118ebe68", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 311 (62000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b3fc0f1a74c4431eb61a25220e8e6104", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 312 (62200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3dedac985ccd4a618f4307e9cb5a2163", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 313 (62400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "eb0d2f07e96b455580ad5414aa14dc39", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 314 (62600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "082609a815cc4f0ea4920982601f2058", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 315 (62800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7b9be032c8714ebfb69f5be207aa7587", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e4a8a093c82340f499d9a40fe34dc217", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 316 (63000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "187a0550731c4e9d855e9691ec344a15", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 317 (63200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "76940bc298584103ab4efaa4e15372b8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 318 (63400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d7b66e9b6c5a4287a84594489ab2ff78", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 319 (63600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5b6d6efba9c14920ba27fd6aa6f91a61", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 320 (63800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d0c3772cc1514caabcfc7b644dc2cc9b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9273fbbecbeb48fb9b67bfe6f66fe696", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 321 (64000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "dca9e2d6e7bd49729ee3603ee976ca8c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 322 (64200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6c0239c69212499287daf23c4c9712ee", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 323 (64400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f8fd74e5b4e1420084a09fe35ef765aa", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 324 (64600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9f3ee48395564fd1859a766c16ab22de", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 325 (64800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "bca0b7386670472a9a7259547f040734", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "54da6ed3d8ec418aba47faa1fd1e3172", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 326 (65000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6629f1cbd4374b20965841eb16cf6b83", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 327 (65200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "35939e03573f443ca3bc11254e12250d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 328 (65400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "fac92813e3214bc797359252cbf98a60", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 329 (65600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "40fd522d627a49438c914db2eed868fb", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 330 (65800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "011584ff3d6e4bf18371303c0b9c7686", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d83e98d70d914758aadacf80f25f5b07", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 331 (66000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8a3bbad507864efdbf29ada3295b196c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 332 (66200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d8cee0a9c6244877afda107594586424", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 333 (66400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a140c9268d2e4938b94a682601aa5106", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 334 (66600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f37e2f5474084110a6a2471cb2b9a761", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 335 (66800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d8f96f1b594f45cabf81b466850e71cf", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "aae5e73d57df4b96975ebe4143ab6efb", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 336 (67000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "71bcbad1032d4e68bff0484188dbd767", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 337 (67200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4b61e2cf44744db986eeb2a77c5ba766", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 338 (67400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6580b1d4fef245e0b079de90b3d3f8fb", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 339 (67600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8abee2055a524de1a791fc3be958177b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 340 (67800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d5c6d0a060e540329258d3eaf7e3a5ca", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7d3b9d304df44612b6de58ccb055d2a7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 341 (68000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "dc221eea85e445b59af7409fabc1c5c1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 342 (68200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8011ad3b78dc42d2ac1f427fabf02893", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 343 (68400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9687af341c444cb898a77751bfdd7300", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 344 (68600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9e67e882782945f1b2659f634c532d6e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 345 (68800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "61539609615e488ca71ffb565e0c928f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4d65ddfe39a544bdba46126495016416", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 346 (69000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "44005e0c1e12407ead50b67cb6b5a21f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 347 (69200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "54fcc39a4df045479472af1afca7e5cf", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 348 (69400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4aafc1c3344f4bfb8ba5c46541bb35a9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 349 (69600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "13a2b43ef8584131a0a3b135709f0b4c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 350 (69800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6877a22d573a4aaaaffd2fdb02f6bc01", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c2f1dc466598499db3b4a42497dd68d1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 351 (70000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "97803d37d079406bb0a93373ddce035b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 352 (70200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b5f7437fbb5549b59c015d67672b6866", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 353 (70400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6d1af502c3f74983994fbe7dfa7658c6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 354 (70600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c0dea771665244c0a30581667d8d2ba6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 355 (70800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d7da69be89a64df89102eccebbdcd3d3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2b9e3c861a0844ef93e6c351edb93549", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 356 (71000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9c68d80c275b45b38c5377e5767c2576", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 357 (71200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "379a72d05b414f57bea54111f8a1084f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 358 (71400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "91a33b27d5104514be6e6fc2aff21fda", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 359 (71600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "dfe8327375b64571823e29697df733a9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 360 (71800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c534bb85761942038cc36f0ba6ae1479", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "73306a579c8e407e9f880c8e5103fd2c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 361 (72000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8a4a3e5299b049d4a68e5b1d93ef1104", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 362 (72200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3e78d2a4691a4c5f9bef419a4780cf5b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 363 (72400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7a3e20631f564e90b789d7afe9b3f5c7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 364 (72600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3888073bed614baea23c3fd57a392040", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 365 (72800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3d8a420d006947ca920b3d5bb603db65", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "bf27e923c38d42d2993870c81f7c165d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 366 (73000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b67a1461fc8b48a5b8929f9720df10cf", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 367 (73200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9acf95d989c54c6284a4b8e934352237", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 368 (73400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a9dfcf245d24497a97d8fde42f528f1c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 369 (73600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ebf0dcacfa824ec6a040ab5432990c1c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 370 (73800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "65c93e4d340246ceb223a3584c9221e5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1f61c2636c114ecfa6b60796a1056e63", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 371 (74000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "73e7eeb8ed1142dd948f12e089cc8382", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 372 (74200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "256a99c536924d0297ab2aaa0536f915", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 373 (74400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b4bbd94c704e4ff18900ea3eb5711c56", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 374 (74600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6efb5b0eac3b4e198ca40e94b1041c89", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 375 (74800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "67ecfca833a7469892ca6cc972ce3395", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "37261673f41e46fdb61d7738462b4179", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 376 (75000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "04f33ff45c0f43d9ad2ba10fa5fc0845", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 377 (75200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "dc1ba7ec6226462eb79879f287f6fe60", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 378 (75400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "99e3bca73bb940c5a186cbf0b7b18a31", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 379 (75600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "699933b5b7bd4a8eaa2c280876ab49fd", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 380 (75800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ac3201b76b76436eae61561b918b751e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "61d7ee4d779f4293bf6e4e003643f564", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 381 (76000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f455bfb1d5eb46a5a9bdc8b82f6a9aa5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 382 (76200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a54dff52eff34258a9e61913fd7d12e4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 383 (76400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3cc57c09c6ee4cd9bf9b91471177459f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 384 (76600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4be901c80bf34bdaa3099f4a233e57ba", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 385 (76800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "22b948fd9d674037a29bed46758c5b12", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "82d3d5a4368f4c658e708eaf78f95505", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 386 (77000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f8b62e435461423f813269ccf7f96aeb", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 387 (77200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9448b2924e454a1f9c4080276383497b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 388 (77400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "632df2ab3dd641b89ca2ae09571ca6d6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 389 (77600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "459cd0b332d34d5a943817e6757e33a9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 390 (77800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a33ca2c108844befb2c3367784041f8a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "da8efbb8ef664ff9b523006f8a81f461", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 391 (78000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "af0ce7310ae54b5c8b7a033d4119db97", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 392 (78200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b56f45ca248b4173ace3bc474f6a0556", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 393 (78400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b5fb872ac64f4f7185850d768e2f6fa6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 394 (78600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f7b0335bb9424fffbee799749391317c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 395 (78800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1282796dae9a4a8386e4d41ae7db898d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8667fee493e84f8487c8dea41121fe52", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 396 (79000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "df1e2a9f6f8c4f7ebb264bc8aed50d90", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 397 (79200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "285cd2d4f1f843cda216bfb221937138", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 398 (79400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d2fbf5c399e5406381a2850de512902b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 399 (79600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "43e1ab29cad849b28d7007f8e635702f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 400 (79800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "944808a6d5f240f7a5f684ed18cc93dc", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "bfdb9f830d314a1188fbf6e4533e4e87", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 401 (80000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6bb9aa6ef04d4009a9d7319829aa5d74", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 402 (80200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ebf938d827ac49368bc7789734c666e8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 403 (80400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "979d991e830f4ade919b70d15ceb32e8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 404 (80600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f1702f8b74c145a0b2d0566ebaf781b3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 405 (80800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "74c7f18c31254948af4d5adbb4aed88d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "80bca601053f45888fb6abf3d97fdc0f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 406 (81000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e1e6e998a79e44fa8c39119dda345f46", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 407 (81200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c37f716519644f4e9477a2930f24ba60", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 408 (81400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d9a603804739409fb6d151e0d52d4e26", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 409 (81600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e784eec9e8a8419d994ba8e09378ed68", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 410 (81800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "55556317e6b042458876de2281c87c7b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2f2a43fa45794d3292d4f7468d86a833", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 411 (82000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3c020c7af0b3435293fbfec9df273fac", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 412 (82200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f81a3f4d216e4cee9eebc03d1183c20d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 413 (82400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "761ff2c0a54d467194236a61f119977b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 414 (82600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1d1d9ebc417443f987896d1ed4f79554", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 415 (82800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c502d237f0084a07bb98f66e35e33291", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0c9315612d2a45608ff79e895b672d2b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 416 (83000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d65fe332846d432393adbf2272debc0d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 417 (83200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "bb4350c4620848edbc07fe81bd4bf676", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 418 (83400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "747f51afda994148904cf90ae2a372f5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 419 (83600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "46edb5112d804938bd35fa30293a36a6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 420 (83800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "69c5d056c412414c86843b4465469b20", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "95df363e63cf442d926ccf8b123c2a6d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 421 (84000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "686aeae649924ecbbc0904ebff849160", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 422 (84200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "103872c57f514b76a61c4fb61d0715ff", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 423 (84400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3e83123dcdd848a0a3c091b19818c169", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 424 (84600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2d30147a373f4bac8f053e1a70b9181e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 425 (84800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d75602249df84c69b441bdafd066f5af", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1802878362d54b82940c620e01c1cab6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 426 (85000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6085c6d7b3c640e8b32ffc7e9cedd589", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 427 (85200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "268aab593a2e470aa73ad8c7e4d25ddf", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 428 (85400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "71c31ca9fa6a43339bf222c7550f2630", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 429 (85600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f31e937a5c6743d3a55a9388aedf2ebe", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 430 (85800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5e9e0d44b48446c59bb55ab3965c189e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ec9fffad0f3c4c0eb494a3137dede6ba", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 431 (86000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9cf0e48e0a9e49308b95e422dae0b657", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 432 (86200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "68fac075f7f84488892e2ecf8bb84239", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 433 (86400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "fec2aa97908a4bfb8ede9aa824d287a2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 434 (86600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5c9cedaf877a4e34ade5cc18125fb142", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 435 (86800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1a95963f51e940ecbbdeb603d2e14157", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6d6a4cde8bed47d59a5112c090a3f808", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 436 (87000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a2f030bbd84e419f8164b249ed00ece9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 437 (87200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4e07ff9ffdab4bc596669cae2da96f87", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 438 (87400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7655a4932b9241d78f5788c26e9f38f2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 439 (87600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3a8a6fe8ff5c44b18e275e2f75521d5e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 440 (87800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6d47aeb008cf4e5cb8e71629a144f518", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "754f78fa32204b0ea86136f685306505", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 441 (88000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "54b9b71a299547938800d3f766efeb72", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 442 (88200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "33eefb7db72b490da7d9ade5d4fd488b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 443 (88400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c989e46709df4526bb4d4c7f70a56780", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 444 (88600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "41a63ae99a134585bd1928af08ac3535", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 445 (88800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5c16254bbab84c03848a2f813b89e7c6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ba12044d534d432f945597baa1d4f9ea", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 446 (89000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b9c1c9bf32354c3eafa32e81fe0d495e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 447 (89200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "bf1285286a5b450ea7f799a378717883", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 448 (89400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "21fba9a8bbb646459e79e51e6dc5e5bc", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 449 (89600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "94f22d3a68664ddca470dfcfdfbf5a4c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 450 (89800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "58d1df4cfff8446cbee9040fbe320a85", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f32d783ad09e406bbcaefff429500342", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 451 (90000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2f0e0a09e4fe47a1a7eb74de56f990c9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 452 (90200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0c2d9e3673ea49f1bc65567e197a8e5d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 453 (90400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ed8978dd60984ddfa2b59a80479ba056", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 454 (90600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a4eec5531ac44a65bdde0b2bece407b1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 455 (90800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "fe62f48c1cb0499cb24617c7828f7db8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8caa7d2113a847488bdac0fec8ff284d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 456 (91000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3aa01dca3b4e42a78228f82befd95ebe", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 457 (91200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1835ab6cc2b54c4898683313d6c3908f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 458 (91400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "79d75220c7da44dc9eb015c33cdb5013", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 459 (91600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "10de41d5ee4148daa97d07d81586630a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 460 (91800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4e949df761c6434da93a665fa22acba5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7f920cf1f3254b44b645a3dba3c5192f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 461 (92000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ec34cbfc56014d46ba83084c2d201a80", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 462 (92200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "98e7b19c6da648519154a21e1de1283e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 463 (92400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "417b1128fa9d4625be64e9e4b9c266c9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 464 (92600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "12a35b84aafd40a7b80675271d8d0e7d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 465 (92800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ac2804f06224493c839c6e7a1511ed16", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "70e528d237a24241b2722a85bc9ca306", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 466 (93000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b8833c85ab44433193f318ed8bf221f3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 467 (93200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3be0ed8dae8347d38656adb813795370", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 468 (93400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6e565fe47dca4c5d8b4fe2a13899cd1c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 469 (93600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3aa5dde093714aa9a10584559862d5bf", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 470 (93800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3518ac3303b44d5a8b6f8e1d7a5b668b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "28cf63f7c7d94c97b5fad65a9a5a1f68", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 471 (94000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ff100451c0d540c6a3a14e8ed94e1a0b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 472 (94200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1ed9fa5ed952434c84ec580b7df5d860", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 473 (94400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b11cc8b79aac48b7b6e369dfd0caeb8c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 474 (94600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e9c9ebd9a7144a49b3191e69bbdeded2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 475 (94800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f5a81ead6d44428ea7648ba5cbec4517", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "fbc56306982e46dc8f9c93c2e927ed35", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 476 (95000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "eeccee7d488c43c6ad0f8b14f2b8eef7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 477 (95200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "61c31da356a248ec89293ee7f269932d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 478 (95400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f0295bd2cb554cc3a00a10ef67044bd8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 479 (95600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cd747db0e15f4a3ea1c6287437dac96e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 480 (95800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "297cd3c5fb94470d8e47b01c0ee88c4b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b187ebc852e640eebfa614ddab73c38a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 481 (96000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e5fbd42f633d460687a24b7499e8f04e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 482 (96200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7c92bdf847e544af9efb115b23ca3531", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 483 (96400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c6ed92652386428dad2dfacb36c5b536", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 484 (96600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7448daf70de742ea8e2e2d5101026548", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 485 (96800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "60f1f1ab06bc410287791fa594d098fd", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "da249c6fc6334c07a2867d35f0ddedb6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 486 (97000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c8cd329d3af540fdad02fd677a8d180e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 487 (97200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "33f70620519f40b9ac363b39edce479d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 488 (97400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "65522b819eb2499ab4a5dabd26defc45", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 489 (97600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "924b09db1ffd4a22a0dc7903700f0e5e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 490 (97800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a5c5e134be514e2d8da3e3f5fd443586", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8792691eecdc46f4b41dd580521a9bf9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 491 (98000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b3b5b00aa4dc453aa0d51fcfef034068", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 492 (98200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0564c113373d4f26b0cd7641e1c7d564", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 493 (98400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "22c6490ee3bd4f6bab96ab60ca69d4ad", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 494 (98600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f0129b1d48554d53b04eb90655b8118b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 495 (98800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "78a727a7b8074c80b4fc98f31edc2cb9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "562919daf23541b9bfd6c0fca7e1f6e9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 496 (99000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3d3793917fa64661a5d32be6d0b4b3aa", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 497 (99200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e9b759b51efb4a9697e4d1d5ab173a28", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 498 (99400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a555112257fc416dba640e364e7e470d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 499 (99600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b4e7cc62cb8f4f51890757d498fbe9db", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 500 (99800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3c1ac60b974c48a7b883f19cb48bfb53", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2b5f3dc991d2443d945113c714a34b65", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 501 (100000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8b0a32593e2641d682eea3a608fe2c54", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 502 (100200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "fae1a9918e794118b47a553b185fb066", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 503 (100400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f10bb60318f84db5bf89cbd167dd2b1f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 504 (100600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6c7953a5ce1f4aecb52db6645c7d4264", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 505 (100800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f321be49175041549a879f7d553adcd5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "03d1ce4ef1cf4bb28cff423c01527aa0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 506 (101000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3bd4d1dd241d4cf3813257d091f95ea1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 507 (101200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c17b4229ca684e8d8b0ed301f8d512ec", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 508 (101400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "75b2069b2a8841f8ad9c2d45711a8bb0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 509 (101600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "91faf44d3bc54eadbdee752b9bcf49c2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 510 (101800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "50618e15930d4e42a7f66e917c6f5c72", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "305b9c862c81434d96584f6260d9bbdc", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 511 (102000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e517b96a5e6f4cd19c791e7026ee40d2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 512 (102200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "93e04f5e10184a25bde8396ef00f4472", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 513 (102400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4330c11a6c2e4f809ffcbc235e87c1c7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 514 (102600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ef17a8c035f547bd8ee78d98ff1d298f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 515 (102800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "75e7bafc2cf44517bef8eca0982a1fed", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a1de5aae19094bb48706667b19bafd36", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 516 (103000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9c0ac13d943f400a8fa98a1d2fc8de1a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 517 (103200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "898c3e621ca7462ea56fa1c9d2b1861d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 518 (103400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "238c0746a1f848be9907f2dae1843716", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 519 (103600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3fd77a0f51c844b59ffac9d12a798935", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 520 (103800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9bcb522acd0a42b0aa8a8852e9b8782a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9719ddc5d38c43b794cf44924ac32acb", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 521 (104000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b647af2ffdc24e7086cf999df2320700", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 522 (104200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "46e02563fdfa4b8bb2fc58941dc1e4f3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 523 (104400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "528377c53bf54ea18d45b2a213d04228", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 524 (104600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "30b8ab050bdc403fb8b3579e52c8464c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 525 (104800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b27d924d35144dbf9945914aaa53102d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0806684052fc42c49f2feea4a12b5748", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 526 (105000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0234e0e3bcf044288f430fc839d0d372", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 527 (105200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c8ea12b12d45424d9cde92cb4cc902d0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 528 (105400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "43222491624f4bea8a875d9ad3863330", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 529 (105600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "39a40b12709a4e3e95a1dc75df3a480d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 530 (105800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "632b06d47cac482e8bc78f676e8b33b2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "12173410cec94b5c9a5b512ad2bbd1ce", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 531 (106000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d015210ae2684bd1af3e4f2b071ded93", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 532 (106200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d86eff34646349a6993838701662c307", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 533 (106400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "40c705775a8e45d689d0aae729ad6ef4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 534 (106600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "db929978ba1b47f286ccbdd68eeb7f9e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 535 (106800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e598286b41754c37baa53d91d1ca5bd7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "da3195cac4554601874a8bab0ac2d5c9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 536 (107000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0d538b7c031f4194835c78ad3694165e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 537 (107200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3e5a3cc794404c6d8bd8f17b94dc79ba", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 538 (107400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f17b7d346039461e8fa0f89a3f765384", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 539 (107600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ae7ef8623f4249849ceaca2c345fee2c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 540 (107800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a21d25997f9c40bfbe42466422bb676c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9ae517435986436ba8a6304bdd3139f9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 541 (108000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "074f00f9dda340c3baad46c2e5396c47", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 542 (108200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4351704c5436460a8819762655e21d5f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 543 (108400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "167c1dae26344570a9e61a0fa183fada", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 544 (108600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "74cc1abf92a4403f9a273bede2d9722f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 545 (108800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b9403a5ec826476daa6c9244b72e35d6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f40c57ad87504235b4c83f40cd41c409", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 546 (109000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c9db7931a6124c6d898b3af9928f8eb6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 547 (109200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "faf63967146346c3a8b77998a3de27fc", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 548 (109400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b81159dc0f3d4224819daef2e8ff6038", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 549 (109600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "743aa8e7f2a44b7ab91b8fe04513e478", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 550 (109800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "29be718d7b9e487586f60788cab2b906", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4f0ee0b5fa864f909aeabdba3295b55a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 551 (110000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "de940c4ea63f4a1b93a8f4a985c5161e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 552 (110200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "73081ef81b8041998df971040a508f58", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 553 (110400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9c5c7bdfa6d44de78fc1fee30fe1099e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 554 (110600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "39e62717b0154c1dbb3995d3ff939d98", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 555 (110800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "eff2e00ef04340da9a083e91ec28a516", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ff6a4238af4040e6a77c9152913fe2b5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 556 (111000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "96e80c2fe4e247a296323ee2082caf28", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 557 (111200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "03c641c3a932481889755b836df28e17", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 558 (111400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7b03dbe730c2474fbe797f098d9392c6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 559 (111600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8bc1cbad51ee469a83b918058c263092", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 560 (111800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ee31d29a119344cc939075a516506ea2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b9fea1d0ced142149b12aba2659960f9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 561 (112000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "be6d8d5554dc424c9ab61b7ab3f332e1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 562 (112200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "306fe02798af42a4ad8587aa8c07fb49", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 563 (112400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "04273613c897411f95e41480ce5baa46", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 564 (112600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "22cee5e272584caca4ca357371318d36", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 565 (112800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "15b1b43e92534aea9f07c6a2c035c71d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d7dacec29fa348c49f43bbcb90f9ab8e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 566 (113000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "81c91cba19a5456987ea4e7fa08ec079", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 567 (113200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a9fb15fc84bd487ab6a7711d7b47b360", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 568 (113400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0b5be2a563aa4e19bbc6442effa21cea", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 569 (113600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1f71116ba6434498a378c22610d0d351", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 570 (113800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "868c4a49dac14a7fae2a7991c644d97c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b6726257ca734fef8507021751d33599", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 571 (114000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3c3e76dd8bf24dbdb4c4e7d60315d0a7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 572 (114200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "92e6447691364749bf53dfa6052616c8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 573 (114400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ab68b505e2134bb19a84eac4697efe36", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 574 (114600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "217b85ab5670480a809bc47d534f3fc9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 575 (114800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "34f8d06d90ab4e11adb0168770cc9270", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2e6c723a73ae47508cbf83ad800d4ce0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 576 (115000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ae96ca4ebaeb46089ef1874051e7bcf3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 577 (115200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4a1793223af04bc4bf72be7a920de878", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 578 (115400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "71aea8cadaed4a9a87c695b635161f86", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 579 (115600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d3373423c38b4e81b5c6513ff0ea846e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 580 (115800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b15abc4166ca4d17898268490cf57ab0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "de2b1c6ebbc84231b523c4e7e2896ea1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 581 (116000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8dde3d5e74db402e97f8e62b16d1d587", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 582 (116200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "61638b091da44bdc9f2c8e02a95d3355", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 583 (116400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "874a60d7c4a5400d8d235e6f589e159a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 584 (116600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1a72d885db0f45f7ada6c80058afd0de", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 585 (116800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "01a17fd07597458ab3123f771b5427db", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e16f8890d8a946549e1245e552cb0b52", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 586 (117000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c605c436e38c423b941b824ea67462a8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 587 (117200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3fc14ed368724ba49c3723354c09e499", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 588 (117400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8b7971a1f1084b708ae286955160b4e2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 589 (117600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "462460f0ab794e4cbb6252341784f3e3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 590 (117800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "366c90fc8a704eb0a15536a60ab4ef5d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "fd0bdd1bccca41bca53058d576edf1db", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 591 (118000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cf239e6fd0b74e298e676ca19047a666", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 592 (118200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2d2f7c67f3f74b419f064a8a195c0f88", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 593 (118400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4275c49155444cf3b37b546a4aa3e533", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 594 (118600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f9ab9c7e4c55464dbc0540523eeb7150", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 595 (118800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9e9573c5dfc740e885640b2437b5970a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "425c1aed29824eceabe751c97767036d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 596 (119000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "71755a4efe224156976553f77576a7bb", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 597 (119200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d94635d3dc1847ab8ca5d8daab3fc301", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 598 (119400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6c6ed78300bf40dc8caa4943d1641e05", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 599 (119600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4d25c4a5a99f44b58819ba6fd8b4a7b0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 600 (119800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "29689472fae94b0da135867dca42d129", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8cb80671a56d42088b9f10e5e4d4666d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 601 (120000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6c85d96874684cf6998cd103211a1246", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 602 (120200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "edc5771f46654aeb99e5390a9ba58a6b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 603 (120400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9006b3393a484ac088bd61c41a1a44e8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 604 (120600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1eeeb95acccf437891f8eec9ad45c0c9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 605 (120800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d2fa528b300f415d9ce0af400492b3bc", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3a9dcdc606bd42a9999fa3295dc10f9d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 606 (121000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f5d0f673a87a4082af4346b6a7f494c2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 607 (121200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "940aff5437cb47779b5ca02623c76d1f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 608 (121400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cf86d240026e41a0b165841aea33080f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 609 (121600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "501d7603291d44bb8f6cb512461866fa", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 610 (121800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c133a51e91bc42b6b659819bf0a4fdd9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cd6d2783bc2942a5bc4d42d0ceb99c3a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 611 (122000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e4ef3e6344f64a659039b0a17b06acc1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 612 (122200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "36f0960950554f77b0617cc8e080ca4e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 613 (122400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "17fdc3a5a21440ecac0049aab4a03ef1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 614 (122600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e273f7ee2beb4d2ea648b64eff954ce2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 615 (122800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8394ee977304445a83a5b670a66b059c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "75802077f54c4f5980e5b6c5b5c90154", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 616 (123000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a09ee6d948ce4662b1ab7f8d6de5e521", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 617 (123200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "da883be38e804f418ee0d59899dde7be", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 618 (123400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f041c8de13eb422a932f209ab55609f1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 619 (123600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cd3f660271b54c7dbe77968ff5b25c03", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 620 (123800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4cc64243f5c3419b837400f7a0f25762", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5d821397f6d24cf5ac6e774d04a47b0a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 621 (124000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "49926aa378364a4eb69949f3c4561d14", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 622 (124200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "192cf14495f340b5965f7c294d6218d6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 623 (124400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0c02f1eaa7c3471f9bc73c5992bab976", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 624 (124600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "86ad05ab320d4bd68cc884babb45df0c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 625 (124800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "eb057f64f1ed4470aa4ccf356d992b96", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "55df8e8344294b54955862a4ddb133b2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 626 (125000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "522377ad9a644175a200dc4ec56c5767", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 627 (125200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "99dce790c29e4c9fb392ca7055715c19", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 628 (125400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a08e4916894d446591597bfd7226bb26", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 629 (125600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "17ca504cc4a14199840fb41f7f9736c1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 630 (125800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "27f397b3564b4e27ae46b71f51b1b6e5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "52a7889ac1c249fe811682bf5c675d47", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 631 (126000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9b83d5949d974e248c1feb8464ad76eb", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 632 (126200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8dc2ed4f88df4f0c8675260835828403", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 633 (126400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "80c3c8ac70ee422cabbe02555d0c98b7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 634 (126600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a9241dac164048be9d52e3693f8b2881", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 635 (126800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c17a1c1b13e34cffbbd714f8eafa4f68", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "90ae1432f31c4ee59ec82c4fda5624b1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 636 (127000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3b82c2f0d23942dfbb1c5aadc5f2eaae", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 637 (127200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "dd4533f78abd4bf2a4a9823fe9f8ce52", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 638 (127400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a092c4681b8440bb95c10fbacd8c2ccd", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 639 (127600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "30233c5dd2864cbe9a96fe35162e60f7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 640 (127800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c656a645adc346b9956b082cea95ec6c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3164f8212ed14c6b97e925c41b93152b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 641 (128000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "144b5df972144adf96e89b8984bf0535", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 642 (128200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "64b180875bc447dd9a77da578a004fad", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 643 (128400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2ff5d4efbce247a99d99a36d06b6aea3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 644 (128600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f58df701d07c42d69e1da5a7dd990efd", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 645 (128800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "dc9959cb56bc466f9c25a19c38f4371e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e25f34f6f744453681ee7345d59cccc3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 646 (129000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "aea7d6a1cb494fadbc1626a5b8fa4cfe", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 647 (129200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0871268da0764237b611148edf5248d3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 648 (129400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9489f8f0101547f9825e0d47f84ea9d5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 649 (129600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9befebf117124a30baf9938cf37a58b1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 650 (129800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "07e2239681f3447ba8e07ef3115d523c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cb649606ed9046d69a8465b6e9283729", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 651 (130000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ac21f3e0ad624e70b0d17324b7755c37", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 652 (130200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4650ec9b40fd426e9d2adcb52ed727ad", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 653 (130400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1748677293a94e4584b994e4962c243f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 654 (130600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "152c1c9f0361499b9fb3436060b3b00e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 655 (130800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "73e442dc45374685b192ba40c31c71db", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1ae1c5692d434c289428d95e177c5872", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 656 (131000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2e745145d37b448e8ad18075c7ec46f2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 657 (131200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2881163637ca48178b5d0413975ee1f4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 658 (131400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "65b8d58b87024726a2d24f6f098466d2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 659 (131600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b974ebc95a564c62811028f40069951a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 660 (131800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e07c80c7adb547cea7181ab2913d1201", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7984722a6cdb4b2cb6ae2300e9a6e03b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 661 (132000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "fa438fe33dcb44bbb71419fcda172472", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 662 (132200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "dc85d1ea4bfe4cb58106b82d93b5c914", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 663 (132400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4403b055d2b349f1b330276f79f9da64", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 664 (132600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1c507273e6e744869dd14bebfccdf694", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 665 (132800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "17b841e9874b47a9b60e246f5a008910", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d988c126aaa649d58b20d909e4b57184", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 666 (133000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "44c7b660af134b31ba0b550be647237e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 667 (133200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6f9817b66f9c44079c76e7bfdaeedaf9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 668 (133400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6673ca8d536444eebd932bee4f7371f0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 669 (133600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "85a0462708c649afa0c6f71beea914ae", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 670 (133800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "44b4697cf1804643971813e2bbbed069", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "70396e8a729c480bbedbd745929b7db9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 671 (134000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1a3d2b67a4244b2995395f08ffdd37d9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 672 (134200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a9047a2cf8a046049fc7b38f8bc5d445", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 673 (134400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "15bbe6d346d9428ba2fe1b9199ab4e79", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 674 (134600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e9380d2eff214861a42c8628a8bc6cc5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 675 (134800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "705a5abd3de4491daecd2bb4e725ea33", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "98ebd2e5efec4954a680d01f93e44cbf", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 676 (135000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "05846ad063b444d3830d326d893f3d8e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 677 (135200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b08e6ea1e17c477b96e59ab36df87bf3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 678 (135400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e9eb5620f47a45bf804e5baa4b4122be", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 679 (135600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0eb875d309954d2d9289e0c225f6443a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 680 (135800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "181f3efeef204689b2b890f85e8cc4ae", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7735fe0746b54543bd6b1189f94d7cc3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 681 (136000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "fd0c2bc35c414cb197024459be0b236e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 682 (136200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6dfbc34a5df14143a652f307c74e1548", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 683 (136400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f11673af027a45f8b510f02f24542ecc", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 684 (136600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "64aa769a4f0d4743a9c634e2349392b1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 685 (136800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "229fb1ecd0164140b384876408b1dc1f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "bb9472ded78542299d57aa8d3d136a88", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 686 (137000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f545a1573b814e8fadbaff44699036eb", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 687 (137200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "eaf5bdeb10154b0ab64b82f90b15a444", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 688 (137400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ed549c3636ea4a6d99d837aa8151dafe", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 689 (137600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "67f9e65f868c4c318ec87b35d589c929", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 690 (137800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f3b1aa2821644cf999312f690ca911a4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "35a5123e63e8441d91d3911078017c88", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 691 (138000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "39330719067243e79824d63e1c122fde", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 692 (138200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4511d346c8b244bdbdc004b72e58e588", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 693 (138400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "79a3712e860843f7a1d1004796a59dbd", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 694 (138600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1f9b37c28c834f399aff5301b6e30ab5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 695 (138800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7068a1f669a84c67ad9202ef14a85a5b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1c9db3f99f1f44678facdb5a56b21d69", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 696 (139000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5a2b196112b34b1f836badd8fecad1f2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 697 (139200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "86bf1e6601f141dab356308d6b757a99", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 698 (139400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "07dab82f63f3471aa4e1d9a5592335e9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 699 (139600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "39938073bfab4ac5961a2606c4596643", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 700 (139800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "406311aaadf747c8a0823ffa68fe24e3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "447d1854556045fc9dbcd8a12b59da73", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 701 (140000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5923196efbc44192a6d1f40ef6cae56a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 702 (140200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5efcab1af34d453f8aba3cc292cdee79", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 703 (140400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ffa5893f8f70465b9d8114dbaaf0c752", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 704 (140600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ffe44482400f40c0b01348da4fbb1eff", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 705 (140800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1345c61ca484485d9bfc25feef2d83ea", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9d6c8e132f484f1183b296d3033b13c0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 706 (141000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9228bb57b6f8482f81649f71c3a2dd56", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 707 (141200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5839554119724c2fbdbd4624277f3658", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 708 (141400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b44158c74abf4d31b35bfc54fed3b428", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 709 (141600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "abb4b7d57e1647bfa309742f33980ce5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 710 (141800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b5dcbf9f9a2747c0a46420f63c28cba3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9f57cf342925473aae16daca0e95d83e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 711 (142000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3391c95b72314db4ad9867639de308fa", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 712 (142200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4cc737f2a5f74acbad31f8180106099d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 713 (142400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a1f5b5b550ed448abe8e025df9eb6941", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 714 (142600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "24367eba2a924d45a16efa6b000dc1f7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 715 (142800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "fdd56e21e0584184b6adca5820278a97", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "34bc332c1ad04d24833b274fbf268e04", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 716 (143000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0f407a933f9842689bf20e0ba3ac7f40", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 717 (143200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4f838b7995a7466fb1a8f25ecf189708", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 718 (143400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "99deb93a2b2a484ca1accfcd4796af42", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 719 (143600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cba622414f564932888e9b5b5794a110", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 720 (143800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "343befbde97b4c1d95b5c4ce54412980", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "40d086a1e1514c39908878404bb9f365", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 721 (144000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ad34a96bdcae4b86b48883360ad948cb", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 722 (144200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "34a3a8e8d3ea4b8bb87a2ef067406832", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 723 (144400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "90920a1d705c4666b702a295ec83494b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 724 (144600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d7fe8e5ff3e74541ac188c30a4cfafff", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 725 (144800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d56ed2be52b443298e6f8b8c19ad3d35", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "32f9e096e8534cb8b43950b244e77d09", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 726 (145000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "df3b09ae95224273b9c79f42a2094ab9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 727 (145200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7c19f55bfdda4a2ea8574c6917d5ca35", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 728 (145400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ab2bd1cbaaff4eb4834a96e95726a3cb", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 729 (145600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8bf2a17935314b10a6ffafdbfd1cb79b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 730 (145800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1ec9fca832384289bb4782de308396ed", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0eb2403a2d55402e8875e12edb0c0082", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 731 (146000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "491905f2b51e41548fe6b7e00d278b5e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 732 (146200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "121d377f80a44aec9abd670de4821021", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 733 (146400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "96e55685ed4745ef91123e98f3cfa908", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 734 (146600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c8c94ea38e2441058238ebe141d4263c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 735 (146800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8b0e70698d9148c2b245d49c0ad2cf17", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c16b508455914e178d1e212eddcbb643", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 736 (147000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9a1445f3d69443a58bb6e9f6e3f741f5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 737 (147200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3eccffe109e5409aa573dcc4eae40a57", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 738 (147400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "91ed779f8cee451f85fa0471cc56b013", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 739 (147600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "08fd6980c95c499a82cb10562b6e8d1c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 740 (147800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "03d8bbff968a4cbd952160ffbc85de55", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "126617987b5b4587936cc93345d230a1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 741 (148000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c2dd6a7695b54fc39c0b08285cf28cf2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 742 (148200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f62fe7d75de14c1cbabf33c6830bbda0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 743 (148400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b8f92c9b244b4bc88c605db00774d41b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 744 (148600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0b65d5fa7d0947609c5f575dedb9e646", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 745 (148800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "663dda67b4844cf4acdfbf8b4d98466e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6a48505664e24858ae7d469856915b6a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 746 (149000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a0614f35e7094dc19cfe7baf5cb7026d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 747 (149200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "041abc74e76040dbb917000e0d6369d2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 748 (149400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d98ee1fa85d94621baa50197f3571776", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 749 (149600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "efdef8d0e6204143ab7b2d3a5563da0e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 750 (149800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3c85354f9c534f22ab72f512e9160f9f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ed537012228c4ccf813910d89e4b3b07", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 751 (150000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1829cb85da0f4ce0856559bbd4327cbf", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 752 (150200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "061a67ba44904677a621791a8f6bf8ad", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 753 (150400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f2491bcedf25446485b2193fa15df14c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 754 (150600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "34d6517fb61048e1852bedaec39aa038", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 755 (150800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8f919567c09b4426b6b52fa50022941d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "693ff1513b0e4bd8989ed2b1fba526cc", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 756 (151000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "dd5776b097f54a8eb23bf81706db5c83", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 757 (151200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0bb9da25276c4d878a26b42a9944fa81", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 758 (151400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3de4cc965d4d4262a78a7ae1e7a4f6c5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 759 (151600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8ab9b2cf684c44c2bcfc987822e8d036", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 760 (151800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ffe010157a7e4cadabb312dfb7d5448a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5298087c1f314f809dd42b462f4b12cf", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 761 (152000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d99c2c8ef1554813bbfd2e2555774e02", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 762 (152200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6ea0ba27622d4c2eab2beacfbd0cf2be", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 763 (152400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8bed77d803964919a8c0533646380359", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 764 (152600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f05a1ad14e4c4737bd459b879330f720", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 765 (152800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "bb0155e218e944d3961c2d1664b47903", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "15cab09de45e4d87a952822805dd71a6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 766 (153000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0e8a6f87e78b40b4902e7f7d851d8435", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 767 (153200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f5995f0372114da3a850d0a33f3f6a5d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 768 (153400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b1e65640745145ff902cb72f37856568", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 769 (153600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "469a927b89b94a58b69423884bf6f775", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 770 (153800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "28a98b9cdecb4b6790f85529453d5237", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c513b533d22c4a319f650b644b0fe6b9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 771 (154000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a4b2ebcc3a52427da88645a2d92233b9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 772 (154200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2d6d5c83c109416699cd30776f1732c9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 773 (154400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "78877ad6e12d405da0a81af9fdeeaf08", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 774 (154600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6f43e3003c424514bb904e82a25cd9bc", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 775 (154800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "278c036536864b36826bb63b96c536d1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c6cc7a137a0c4dd18a4cfd55957d2b14", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 776 (155000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "388dd6c8d9cd451ab5436b71b68c2b7b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 777 (155200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1f0b19513c05461899f8c9e3a9756de7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 778 (155400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a45257459afd4f289e1b9a4c25404807", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 779 (155600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "fb4585417a3d48aaa928fe21729976b7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 780 (155800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2e65126161484d9c9073fb49f938e359", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d366a511e6e2420db801c3a288a6b15f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 781 (156000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8ca01a7e31cc4bc28041eb04d1dddead", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 782 (156200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2bab35e60c2140e0aa907fc1d1454efe", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 783 (156400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "73537efc0fd04365bcee8792acd9e8d0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 784 (156600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "740ff8682a4f42cab60c5ead1677d17d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 785 (156800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4ab247d4030c4bae8ffc631792635cc6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2f38b20962824e349b79de87f871c9da", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 786 (157000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "45827c1181bc4909a69fea7687aef6c1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 787 (157200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "72eae3dab7924c3c9429667a332f8cb8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 788 (157400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e41139a4f76d47e9b8e6314802e34253", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 789 (157600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "506849ec662d442dbd01ad56a934ed85", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 790 (157800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "327e7094b5304f388f6646e3affda69f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cf0b85dae7744395a9d43d11fd2fb956", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 791 (158000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f9b17b61532e4edb83c138ca86bda4a3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 792 (158200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "dc66d77e69144468a9a8d42ffb3fab61", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 793 (158400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f3f396082ebd4b82be0e9f6bb620252d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 794 (158600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a3a7a8c8194448c6b4f3a6ce4baaa2a8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 795 (158800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "45542d907f4846d5898f0afdf0ec4397", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9f2dc8cd1f9d4c2faacd482c616bbc55", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 796 (159000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6e1190cb839e462ca02d22a7a839f831", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 797 (159200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4d59b384d18f42108497320af5ee60c6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 798 (159400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b06c531d4995435e8d6579a2889dd599", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 799 (159600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0f01becee3374453ba29091179c3c6ed", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 800 (159800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "bc6c8f99c30d4f2aa3caeecec3d5291b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b9891384efe547239ed6e4205c3d6e26", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 801 (160000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "097bfead9da74e13ba759bb42bd693a4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 802 (160200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8e9d42e6edc9475f9d181164bcb5439b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 803 (160400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "014a9358013c4d21a196f0ac79695f7a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 804 (160600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4e506878aa4a49028386317700ace84f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 805 (160800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7c4c6c998a484017a527d9ce4f326f5c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a55a6c0885914215a7b47b3de1920382", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 806 (161000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "00914f2ae5ac46f294ab7e580499a93e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 807 (161200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "85625039188f4753868aa57e3450cd27", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 808 (161400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "06561bf9faf84f328401d7132aa177e3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 809 (161600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "08410a309ba54da9b485a158db8cbfa7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 810 (161800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "25ed92537bef4aba98e22ac64df7f2fa", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "eb232dad5ad34dbcb8caa476acc1a7ef", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 811 (162000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0f529088415f455b9df2172832000003", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 812 (162200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "bc86dfeec3be4762b19bdef6242dae95", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 813 (162400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8a4347ffdb61413d85f57e33d4ea63f2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 814 (162600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "48010530bf5543d483fd07d9341c54e5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 815 (162800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "29a4b217047044fba1f40de19a9a538c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "25d9b984520147e590bf255107c17195", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 816 (163000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "fd8cd7b451e34a2aafa7ff8c8966adfa", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 817 (163200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b7daa10f56e044a8916baf17c5a05c60", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 818 (163400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a6bd739198d1454596bd5dcd68502f01", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 819 (163600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6169f82ac71f473f868cf0b0784ab29e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 820 (163800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "90d49d2add324c199c423f447f88f206", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "634bcb62641a435bb0def93905bc72a5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 821 (164000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "72d245a3e9804dbabb67d7653bb485e2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 822 (164200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e2a73b97d0c44094900f0177b2bc1b0d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 823 (164400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cca28f811e6447aab9767c9e26798a51", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 824 (164600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d1d09c3f12624b08bd5ddae627c9a4b4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 825 (164800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f22838552fc34b2aabeec4c041a9422f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "06c8af233c8545f7b5b59b7a8936f288", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 826 (165000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ae09d76ff684466cb3eadd61569ca9b5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 827 (165200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5983230c21fe45a79896980eefc753a2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 828 (165400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2169fa2fafbf4cd5ac9e8b493eac0ac3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 829 (165600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7bf44ef5a00d4cea9bc6d381ce501756", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 830 (165800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8806804da06d458c9a0209c66ce198c5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e10ab7f84dbc4a8488299b1c85efed10", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 831 (166000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "16b14e6f70b74233884eedde24245209", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 832 (166200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5e1180a625cd4cdfbbbabde16fe3868d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 833 (166400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "62d354893bdf43ceb768f702deb3c4fa", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 834 (166600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0cbcaf5a8fd24995b646c357824997ca", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 835 (166800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "03d382c327594cfb9dd59ce6588a1547", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "28cc487b731c4626b259dbf28c817c34", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 836 (167000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c89132c770de4bae815349cc8f0063ba", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 837 (167200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1157b6eb6e404f4994f9c741bf6c8edf", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 838 (167400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "397ab85f23f3405ab2d7c4fbfef51901", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 839 (167600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "09548d1102ea4edea866693e104b4f27", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 840 (167800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9f295932f03f474c996cb04c4756f8ba", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "dbcf5efebdc947f881355a28f7f3a520", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 841 (168000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7eb5d0f78f0e4a13ad97d6d2f3189228", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 842 (168200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2ddd089440da47908aa57d604c4dd552", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 843 (168400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "178ad6bedd144a0ab53c3940939798e6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 844 (168600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c5e1a0a4acb641ba89c8fa9ca9479f35", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 845 (168800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9c7873e54df34c6cb440ba1590e2b5b9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ec8d08749fcc4e1da34318ec84cef281", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 846 (169000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "90d05b6d68d34d019777b2c10c4cb037", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 847 (169200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ddcfd0ca723840bc980de43dc761e4c2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 848 (169400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b13e463ac416464db2ff4ceb588b3973", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 849 (169600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f0223a5d450748f39e5ab17ed7a1eb7c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 850 (169800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6a9f6ab6e3eb4ac88119cd3215897f82", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "841cc1a5934e4360a336d2e8ad487b1d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 851 (170000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c5748036993b4cc3b12f7dc2acf8efeb", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 852 (170200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "609723b9334d494eb7075ddcb2414e52", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 853 (170400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c3378a1e163b4349a15433b103c1906a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 854 (170600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ffbb1802a3434f2f97d9cb2632eb3cf4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 855 (170800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "81a1751c89934f6484ef8b368f2947ff", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8b7b60f09d5d463982c7a03478145f00", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 856 (171000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "89a69d8288fa46bab7a5e50b531a2b48", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 857 (171200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3723474e0920468e820d4231edfc469c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 858 (171400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d19870e3b12a40218bafbe2c82c5b018", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 859 (171600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d739de8d14e94e7bb982456955089a8e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 860 (171800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ff9ac283bd9f4e35bf2355494492464f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7277d1c1684a4e8e91ef65458a76f16a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 861 (172000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ed9054a01dce4b3eb3b3eef8725c94d7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 862 (172200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b962204341814158a5cffe73462b3707", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 863 (172400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d0c3aa35d0324748b4dd4d1c7a4ba1d9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 864 (172600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c5233a1a9d40474b92ad765cf32d4a4f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 865 (172800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "dbb53c993b8b45e584e3d04e739f28ee", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "453289283ea44adeb691e1ded5d22bac", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 866 (173000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a49b763059a74148a1077f2a7c53f784", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 867 (173200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "75c27c893e0949c5b4010bb64e305d0e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 868 (173400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1f156b5c520d43b7843fdb3a2e863624", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 869 (173600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ca3bbe7d1fa84315bb0a187d598ca058", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 870 (173800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e24ff331cb3c4cd294f16c7d0d354e01", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f4f77330c7274713b7a4d0fa8ee6d40c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 871 (174000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "be81493359084878bd7fec92b26c49a9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 872 (174200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "48abef1a0e574c3da9470a14ba793e0d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 873 (174400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "aaabe35a9a2e48a19de61acdfeb76733", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 874 (174600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4875aec014054462a6d04ed8e095f3b9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 875 (174800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cb32a77531c6403789430b0adef043ee", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f7bf703b1eea4989ba6832860db7a7d3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 876 (175000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7b57d1a581b64bb4b3940f730ea963a4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 877 (175200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7f69412386b242fe8095aa345c60662f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 878 (175400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "34ef924590284763a9bdc193dc4f08af", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 879 (175600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c8ef5d4b82604221b81a69b113dfe63d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 880 (175800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "272849d9f5ed418094eccd30991b1090", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "406c2a0d17094e6487c31768258576f5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 881 (176000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c17e8229b17e48199ebd8ba8b016217f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 882 (176200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "28d74aab38ad4b128ef3f2e466cb28f9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 883 (176400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7b59523e878b41a4beae7736d8a6ee3a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 884 (176600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "046e00d30e304ffb8011d3ec303d2bb8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 885 (176800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "bc6994dfb5944865926cc9061b4f9c89", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7f20a3f1c681488bbfdddcce2a964d79", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 886 (177000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b3fededc4ba4489880dcab89588a53fb", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 887 (177200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "de0c95cd278b48279435078513ef1ee2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 888 (177400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "75782c9e61924de281844d28b2a86b53", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 889 (177600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "38aa253f7b1d426d8469998bbd272b52", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 890 (177800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6e7a88502a5547d0979e5da8201a8901", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e144f2ddf65c414f8243b61f855592ee", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 891 (178000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3e772bae59b14a77b7c59e0aff56a856", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 892 (178200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1e31df7c943e4f2882f93883640bfbc3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 893 (178400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "edaba24f74cb4e3bb64c888192bb8cf7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 894 (178600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d36edbb84cf247b5a9cf02d0b036a4d1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 895 (178800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7ee3b2d19d054beca164ec048d31a325", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b7d0889c9c6f4a718e69178ff3f497cc", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 896 (179000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b52c56f612ff4f7fb0409ee37bd53d33", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 897 (179200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a617e61b774b43138fbb3cdf1ec91e50", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 898 (179400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6283dac928034a74b57a7c0f9eb29ebc", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 899 (179600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ac31792bb7744c4d8a5087d7ecaad9ae", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 900 (179800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c3886ef956fb409d986618761fe5d019", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "13434c235b4a475b89f75fa604d6dfed", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 901 (180000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f728304ba1e84b9eb9d9a2063ff80385", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 902 (180200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cac4a218a6e64b3184e612f0696cc12c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 903 (180400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "70628688bd844cf7ac2168ab04f3925b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 904 (180600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e05e712f0cd447ca84e0adca0511cab2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 905 (180800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d188591a0cda4fa896a7c7f6b4882681", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6f790e4e986a4115b1570319c92cb539", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 906 (181000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "409ff1eca8a448cd835e96608d144152", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 907 (181200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cf8c2a31aaf84850bfedd1c67ef831c6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 908 (181400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "fef8155ab17d43c08c8f052e250952dc", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 909 (181600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "fe42d2ccaccc410eafc7c7130afd1546", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 910 (181800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d081a9368dff4575ab3c7546c17a13b7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "97a02ec509214fe2a6bcd915f65a2258", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 911 (182000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "96285f4812524f05ae75f10abd9f4203", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 912 (182200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "01a6c2568426401d9ca6b49500f55fe2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 913 (182400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "06dfb95c60a9468b8cca1bb991f776c2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 914 (182600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "989a601dfe1043958aa26ea92e1ec07c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 915 (182800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6298895dfd3546438614b7ebd6e38e42", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8241666c91a3431982b9bee97da94a37", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 916 (183000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "bdd58b555c49487cb3be3fba0d161489", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 917 (183200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f29ad209f63749d793de184a0b6c8aef", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 918 (183400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7d4a97aaa91f4fe889fd8ca7dc93274a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 919 (183600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "586d6d7251bd4aa2b714b646acf6a351", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 920 (183800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "422a1120cde948f1895e0d19c1549199", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b2c82cd4022645149dc1320b7823722e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 921 (184000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0ad39f56b8fa4409a3d554f8f38793a9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 922 (184200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "463f8ce179d04456b787505502204383", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 923 (184400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7a4964bde7bd4748896d604dc5e6b8ec", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 924 (184600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ec648c3aaa5943c9a836e8ecb7db242b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 925 (184800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3e2fda1bf2c248588a423a9a6c156804", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "54e945e849aa44b89c548b10b1a5640d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 926 (185000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "aa0ff66e166b405a9adad2ab09c525f5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 927 (185200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f8029b6e297c46d4a064ae9d6d74a26d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 928 (185400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9af4589584804e71a0d9d8431f7342c8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 929 (185600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b0b2fc8a1de04262a65216c478977d77", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 930 (185800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f30814c0f33141008848bfd0e1780198", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3de249800c324530beed1a500d8028c2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 931 (186000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0baa400b761f4a5f9a4f4ecc615bff78", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 932 (186200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3c3dee31b4b54f5a86f391d42e535087", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 933 (186400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2d130205e55a4722a1e9ef610eb5a865", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 934 (186600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9e7c1bd34b674c028477e09db94a954f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 935 (186800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3e48e1e1eadb41ae8965ca6a3b1d2a21", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c9b45329f7c84d55b64182829cef099c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 936 (187000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0d4a316452dc44c4b9011b02c8c7a410", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 937 (187200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "334791398884435bb404b4a136789371", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 938 (187400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7c026299f0ec476fa8ac474004b1264d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 939 (187600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "04f8f4a5f3b748de81cae47e79d9f10c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 940 (187800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "50d2bd2293d24857b2f90ec817f6c147", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8ae9828dcfa549e081778e06c37fd3c5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 941 (188000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0761850cc37d4126b07f08059fd71e62", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 942 (188200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "84333d9b25fa46a9ad83d019dca11868", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 943 (188400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5a55956fc0e7482d9bb79c93429c0266", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 944 (188600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "43f461a366674babb4e41b1a867e78e4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 945 (188800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "64b730a41d6a42c5a303bb4e671acf4d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c52866c07d1d4c74b24d655979d06a98", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 946 (189000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0385da0e1c014ab0b9184cd15a202e2f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 947 (189200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "32957372597b4927b620e777be071bba", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 948 (189400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3a5cc463ed914a269851ef41fcecb5d5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 949 (189600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e6772c104471418ab5629ca83f01d433", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 950 (189800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8af1f8e85188429fafc08b46dca473b8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b7c7d303c0a4458dbc0a4b0b3c5b58ff", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 951 (190000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ad31c7873d934fb4a8d6da28f277dd3a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 952 (190200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f3783212873b4fc3bab46864d0c219bc", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 953 (190400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "47aba1b95db64b809decd012debb8426", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 954 (190600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a1d38d242bec41b5a0711b4ef356a355", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 955 (190800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a863eb92b46d4084b58ed48301d29e5b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e70884db99e5403a8a7fb1f461b14686", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 956 (191000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f539aef4881d4c7fa3a74547418b7d20", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 957 (191200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "87264c18aa11421d8008703ba3af1be8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 958 (191400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "bc59c33845814241b0c938090ded1198", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 959 (191600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "fa7b196077824324b60916533e7e027a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 960 (191800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1b3f5f69d6d14ccc8e0e3920b4be5413", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6fb17d4beca54ea0ac72e9853f20387a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 961 (192000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "767ff8db7e594397839b79be725b11f2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 962 (192200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "26afd7ccbdc64122ae366c636fe2d0fe", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 963 (192400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b8607a7766aa4d14b1beaaf9067f12f6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 964 (192600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "902ffebff1684ef994847a28b6046698", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 965 (192800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a137fc1885ed4cb78fffbe621f12d1d6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "bc448f0ca0bb45a3b08a8c95f2a3d8c3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 966 (193000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "628a8244e29845ca8fb9a6afaf5c9d69", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 967 (193200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "867ca96c9fbc4b1fa9de70aa50867a62", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 968 (193400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a020e78f059a4112aed91307c6852e00", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 969 (193600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f7eb59d0411149b49fc84b6835230d32", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 970 (193800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a81db1997a4a4ea099beac4f5b9d42e2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "764f21f7e4134cc8a00d2ef554e3a8cd", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 971 (194000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "fcc9813b66404bc8a69652e779862d9d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 972 (194200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b5bf25292d244290a48218c46b9190a7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 973 (194400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "47ff8fcd846b413ab440c9d7cf93b389", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 974 (194600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "21817114d1864f0289f0e237536daf4d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 975 (194800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f18fdb45572943f8bd860f2852318b15", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "fd7bf6bff521470f927236814965c882", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 976 (195000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "29cd2fa399c243cea8a481ad740dd68d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 977 (195200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2455c42df73a4311856821f82b491934", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 978 (195400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e8cc273b9ebb4728baa3efdba3ddfaf2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 979 (195600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c93e2d87b99e4223a71af761fadbae60", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 980 (195800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7f2961fcecad4febaf506ccb7f1848b1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4a47bf2f0e904686874848e5642de876", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 981 (196000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c9a5e827c5cb41eaa6f4b9feac91b3cc", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 982 (196200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "36bfb5eed4b044258744ccf712ffa8ab", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 983 (196400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "eee2ac635f62450686adf5e047dcb346", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 984 (196600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7cf4b9cbd85e4012abbd377bc8dd0302", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 985 (196800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "57345a894a0d4830b33f39844657a647", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "afc630a4f3c4453b8839b78dfaae6b60", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 986 (197000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c296c1d46b164497852f306bfbb06c06", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 987 (197200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b47d6ea7665f47528a4c36f226301eda", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 988 (197400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4eeb12da696240ba8b411820205a74eb", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 989 (197600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "838326a7a6b043449e70a7894ca39d8f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 990 (197800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1ba5d215dfe84996b52a2eae89a0bab0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "10f133433e5a448694c423cd1a1c13df", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 991 (198000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "559861d438154118ae5e8a45ab99a0cb", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 992 (198200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e8550163d85049309d8220fcccb5892b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 993 (198400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e3d29147c54c4b168f61cf1ebc6b93c5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 994 (198600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a929093725484499a9476b91f5b22c37", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 995 (198800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "266ca0e4343045dba0d21b164f4db35b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e34ebab7116640bb9cb146d2f74b9490", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 996 (199000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "395755dcb08943aab025c877606b3067", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 997 (199200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e0264521e19d44d5b46b6d50daf6e864", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 998 (199400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f81a1c9a180d4a3aa914517dc2a3d597", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 999 (199600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e9acfde82c9c4bb18f1c552d6c4b969d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1000 (199800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e1309cfb85994c87b75b1de1c820d6aa", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "64422d178c1940b3a0bf133fdac925b8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1001 (200000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "541708cc78344b4fb6f3ae2766613dfa", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1002 (200200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "aabbd2833c834856aa1e17e2589d22f4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1003 (200400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d74770273c304442ab1b0ec988b958f2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1004 (200600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1a58212f9e864a0ca53831fceacb6f6a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1005 (200800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9694cc38342c4a06b3a298b664fa428b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "411143a4e2444509960728dd4bf58869", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1006 (201000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a18c68faa273440e93003d9e03adc55e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1007 (201200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6db83eade7014509b5d3b32f043b32c9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1008 (201400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "642f63244f95447f95ebdaa3c19045d4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1009 (201600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7ed865aaf4c0459cb6cb4260868c2eaf", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1010 (201800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7553780bf0694a1b965d3c38f901fdca", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "94b7a1dd903f4d7cb2beaf59e65d8822", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1011 (202000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "97f74c5136c34836807781579687d685", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1012 (202200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c2b6f6dff51642cea56b17a9db3c16ef", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1013 (202400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "09b209c76c3a46128eca323dd72e9bc9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1014 (202600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7607f506de8943aebfca7981e409cc74", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1015 (202800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b8bc172da9364ee7be525cf664ed9663", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "76400a077b30408b983fc10b89a179db", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1016 (203000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3f422be73a1f43619c38138cb5621825", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1017 (203200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1753974f616c4c348920abaa3a58e13f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1018 (203400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cf1fd7365c8e440abb307f06d414091e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1019 (203600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "23b8419e6a514390a38dfb918dcde6ab", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1020 (203800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6d16ade8d9944d8bbe9c435fa4b3471d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "06ed8701cad94133a05a7865aaeb2b9b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1021 (204000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "392e11d9a2784ff8bb44c77c84215762", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1022 (204200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a9f36bc3c28d46cdba225fad2a9b5f70", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1023 (204400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ff80dbbf547b480db5509af40641d18d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1024 (204600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a81d633220b94331ab5eec7cd2ca7c3b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1025 (204800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ae3cf0c1b7cd423397e5a67cf3ff4974", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a46bbc6555a94d39a3f1763fb6a34541", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1026 (205000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b321f4d9d1964bd299181a013fcd0482", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1027 (205200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "75ac149a95d0484d9d56b5371473f09d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1028 (205400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e5791d560c3a411d8c65b34e3bffb63c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1029 (205600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "851ad204da58485ebae602bc4f848960", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1030 (205800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "34499bb4b38042d9b461f835c85e35a2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "902bc8d034ff4409a42e875880294a97", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1031 (206000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "80ff29f3e32c410888151b59c38d675f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1032 (206200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "100da41a6f5f4e318867e723c0ae0311", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1033 (206400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ebb5ec0fd6d746f2b18290b2e2bfb435", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1034 (206600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d9afcd48755046ee8fbf21d4e0e1631b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1035 (206800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d3bf26140669430fa43e14fff493ee53", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f8cbc6997f3349ee94b3b660b5efb237", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1036 (207000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "450ba85d9701420eb7e11fabc69e511e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1037 (207200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3743750193524308b4fb01fbb654573c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1038 (207400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c4c5faf1736c4c87915d9cc831cf1d9a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1039 (207600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4fe41e5ad907417a92bfdee86791fef7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1040 (207800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "dd7c21b124b9492ba70a265180daef7d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9e131f91263a495bad1d04cf568f4c2f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1041 (208000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8cd961f9c3164a098957b45fc430b31b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1042 (208200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "23e2e43708fb40bfb3c5749eb71f9c6e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1043 (208400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "24c4e4f0a45c4165ba657b74d0ab8371", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1044 (208600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "72bdd5283150410e9d2dc5e0198e2140", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1045 (208800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2991af8ebd0c493482bed42c04ef1801", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3ec5b3e7f6b24287b61dd61658a28075", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1046 (209000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c7e5c2032035453a8a1e41f32f539c9d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1047 (209200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3d87877ae1af4f3e98f4fa87cc822f9f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1048 (209400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f649d0cfa5b04162bdfe8c457cf2efa9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1049 (209600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7043d438481a423e993b4ea56fc8244f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1050 (209800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f0120b03151c41e9a79f710bc3d9df2d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7b1905aafb0e4a82a9eb072f2850a4a0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1051 (210000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5eea104122414c75b91325613f57d6ef", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1052 (210200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "722caecffeff4ead9026c33894f35c6f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1053 (210400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b020a84c1d774f569a22df264e8f2116", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1054 (210600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "12735b180ed54c7781fa7ece030d3968", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1055 (210800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "21edb7b5ce3c491b954575c978a44897", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9c70c9ca90b24ce5940adcb8c4218e19", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1056 (211000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "074cbdec90da4caaa11036e5382d531c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1057 (211200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ed1fddb058eb4a8a97d4a5a68b210040", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1058 (211400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b1698dd68bf747d6b886a2a7b5808372", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1059 (211600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "58a58404ec3f43309c0bb9f0390bd02e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1060 (211800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0de558da3f1643c099387c69c9c89df8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7eaeffaf4ad145e09f27b4220ed53f67", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1061 (212000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "81c5a922650b4f6f81c8078700065e78", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1062 (212200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "26876659e8ab4ef1b4605b628d392c29", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1063 (212400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e95cb88828b9481eb72a70e65ac45ceb", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1064 (212600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2fab3e82393a407db4725f46055d9dc4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1065 (212800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8e875c48102743b5a0573829402b9cc4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "abadbf43dd4b4ab39dc478330ddf1c91", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1066 (213000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "23790ef27f5041b68919a0dcea2ae7b8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1067 (213200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9dcc765f66e748eeaa4554502b134828", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1068 (213400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5f736439724047f9bce5236424533aa0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1069 (213600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f585ef8fb6c0418492f20b020b439df7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1070 (213800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0878f1e01cb04e43a7ec06332f345022", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e8b0c099c5464bc19ea4a178293be814", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1071 (214000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "899d884821e94b079f77ad7bcb73bdfa", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1072 (214200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ad25ec363bfb41eaa531f9b264619264", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1073 (214400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5977c2b14e9c4e3d801b9856dfaecef5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1074 (214600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b83ce49536784dae97012f9a05b6fa89", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1075 (214800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c987d13f5d2f4d0493d9249270c99c21", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cf9c17d677f94f4ab591267af605e7a9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1076 (215000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c1553e24792f42589433cfd884f2b548", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1077 (215200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "154f4109c90e4f888dced17f10b340f1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1078 (215400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "88443f8893a341b4a876b609d4b0adbe", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1079 (215600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "87e3eaec14704fe085eb9055802b17d3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1080 (215800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "23493987237f46b4a6925a21df428d26", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "fd017ea32e92450196381a449aef1011", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1081 (216000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2b04329514d44950bab6618034b4e9de", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1082 (216200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0189f3a6c68048c3afeda68dd21b4c21", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1083 (216400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1667d58eada844a3856414a5a408dbf0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1084 (216600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "060de90c4bd24beaac0d8a373ead7104", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1085 (216800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e3807f357b8e480e80c4016de968c8a2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e840e557fbce4073853fac9f8ad7d48b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1086 (217000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5be0f79ac8e14380b022aa625d72789e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1087 (217200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7ff478af2b0349ce9d05d2f44205e45f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1088 (217400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3ad188c1236f4e06b631c7d36880ecc6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1089 (217600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6ceb6f57df454b0cbfc4c9b33817c7fd", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1090 (217800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "fd53360d2c044ed8a5faa8991b457bc7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ddb6993c1fce47fbab2124e886dcfcd3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1091 (218000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "487528fe0156456e934261f490a58852", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1092 (218200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "896d4cb46c244a4393f9f1c6a91d8ef3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1093 (218400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f389056760334227be6dcd009d34d8d4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1094 (218600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ac781e9be0df4368b01797c79ed56a50", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1095 (218800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "fd62d085d387473e85c612b7b8ee9840", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e2cd5b90dc064e17ab46b9b68967f622", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1096 (219000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7e20f8b3d0e1406f93db28fb19a937bb", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1097 (219200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a38c56476e1a48a891e059d0d7bb4386", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1098 (219400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5bba81e69de848dd93bce007b2422945", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1099 (219600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9b8c55a3beea4808adbe343bb468f2a3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1100 (219800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8eeaa8c5ac0f4c62aa035bc0a8bffa5b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2570b78bfcf044638860f087b80ab9ab", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1101 (220000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f3b28cee5fd742fb9a3aae98ac9ac6a3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1102 (220200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a7ea3e651c404e00a2da73f039b26b11", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1103 (220400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "03c73d01ac1d4fea9a873e72d81398bd", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1104 (220600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0e4af3202e904c5687f4fafa37fdff12", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1105 (220800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "04f0bab0eab148cb8a05a30303009e27", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "bd5a538e5b3a48a799ffeaaaffcfc68b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1106 (221000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e5b3bca91fb248a9ae29c6feb2b1e62d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1107 (221200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "85fc2068d77d44afa6c394725b7288e2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1108 (221400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "724534a683724131bbac2436c222f839", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1109 (221600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7c911de04407429bbf6561350410422d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1110 (221800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8ec84bf162874c93a9f59c6bf7e2aeda", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5cf6a25e744648ceb3f1189121d8efb3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1111 (222000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c8d032ec9aee4c76affcaa61d4c1cabd", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1112 (222200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ca12401f30c44a4f88b5d12b1846a6de", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1113 (222400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "993511634b8c4470a6a5d4af83c4a096", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1114 (222600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "be3237504648474aa24e903fbbf97f2c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1115 (222800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "40d5250e52154eb0a5a2c9822f4fc8ab", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8b92d967798a40a28d23841d66c6b85a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1116 (223000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b3a6645f71e147ed837bc11969b82326", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1117 (223200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7e9f4ca70e154e41bbb59a8534f0e8a9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1118 (223400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "25aeaf9ec68b487fa3660f476adde611", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1119 (223600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f6a22f1b2ab74002b4624a711c3d0dec", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1120 (223800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f43aea43a3154829968f9a754536a1e6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "78d7ef2ef8024c67afb6ac542db2612c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1121 (224000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0bec4f12e1594ab8b43cd9bab654f2d3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1122 (224200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "076a9ee623cc466cb1ec290afcd09c45", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1123 (224400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a4b845f5d97d47ebb47b665c061b8109", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1124 (224600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5a0c06be554242c09f2d12119a9efd08", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1125 (224800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c91786f8d70143eab828098c55032f99", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7009460af9504add834db975280c6f9f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1126 (225000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "33dde79a3d344cb69f0034ad691e72f1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1127 (225200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "05632fcd47334e488c65ac94245be90d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1128 (225400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e40541286e054d309aa01d7380e4efcb", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1129 (225600 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "df6a93204be64dedbfc1ce52bc7b3e75", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1130 (225800 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2c25320a4b8c4a23956035746ea0eec7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "97d101ae14344c859aa7425e42dd60df", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1131 (226000 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b017be7498964b249cd7d37f8d1d9cf1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1132 (226200 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c3b0ed588e3a4700a5b3739eba23417b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1133 (226400 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1fbe6a765b7842faa438e70dcffb985f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1134 (226505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "74ccbbd7aa884e68996fb9d2703db53b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1135 (226705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e0902482eb564bfab8f7b27b5a5f0ef0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a2dfb5d096484c8eb709592e51bde9bd", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1136 (226905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "41d80a2a749f4fe69994f8a50aac1d8d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1137 (227105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7f0790db4df94c2985519c8f859145f9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1138 (227305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5880a889ea8d4d719e9b9f58f38fc10e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1139 (227505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "eb0d7ed74b944392872dc0c2cb38d784", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1140 (227705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a21411abbed04459974ce9c13faed2f4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "080b128a0f384048a691fb37adb42992", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1141 (227905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9319b572006a4bfabd4240e40e009568", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1142 (228105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ec433610fc9349839e96b449b35dfa9b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1143 (228305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "fa19ccb0ffe0462f9d059bad1f1d81d0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1144 (228505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "11a8ba66aefd40ed8766278118e173f5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1145 (228705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1aa2cccdb42f44549a6535ca436088e4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5534a2e8691e45ea9077639c102ccb62", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1146 (228905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cc75bf746b9448b39edf8fbd40deb402", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1147 (229105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "84f9d437f27f460da30d4a217425b55b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1148 (229305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5a1b5356a42d4f9b9d63326f4dcc5b3e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1149 (229505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "edcfe75ff00c43de89879735fca11d74", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1150 (229705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4b7c65ab827345ad9f041bc510df5ac5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d4b0cc66bfc443188883136afcf3495b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1151 (229905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8925765f0a734877aefc3aadcd40d8e4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1152 (230105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "db95e30d7f334272921f37ce62460d77", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1153 (230305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7789edcb68b14a55bc728cf6beb28787", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1154 (230505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f6716b94fba145c8a2f3f7cada05e175", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1155 (230705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b2c92f2ba6d34ea88404012ccb1bfc1f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "073abfc7a8264c97a36fd37f004f25c4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1156 (230905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6a8798cd25eb47c680e801670c3d3f6f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1157 (231105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8ac66618117a4666bd4313c358a6981d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1158 (231305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0a093a4d3a904c599be085e03135c413", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1159 (231505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f040003a208d49489ffcd3048b3a7942", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1160 (231705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "252f0780cad749758bfec920b8d51485", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b6febeb8a08f48fe8e706caac0f721ab", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1161 (231905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e5dee0ea639b4f09b253089e512d311f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1162 (232105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "88a6cad43699413082e70f26119b0dd4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1163 (232305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7bdd59bcf7774fb9b6d43839419f8c15", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1164 (232505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5e8e53ed4ad845a7bc1ea9e21400bdb8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1165 (232705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e706efec0ba44ceb9a862ee4d46a87b4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f0e495df16144787a81a093f07b641af", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1166 (232905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "56488d3a9fa843d59cbf301dfc89a0d9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1167 (233105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ab84100a7f184452bc1930bc0489e3e7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1168 (233305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "270f6acbd2be4f09ab906b38aa0391cb", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1169 (233505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3814b554b1b94ed29d574222ff32f2fc", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1170 (233705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cbeed854c70b4e69b48d10f41d15281a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ce38027c429b4011a18d0b6c3a5d21cf", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1171 (233905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1493cbb4eb5746f997c332651d1bae68", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1172 (234105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a298605998ea40c9997f01dc5344e072", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1173 (234305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "456d040d6c164969a4f425c020306793", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1174 (234505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "50babea3bfc74d25863bd7ce7eff6718", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1175 (234705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "698b524a407445a88cd86a86119f3ee9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "43074098cc1c48bdbe4b2c93d8c727b5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1176 (234905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b91f28bf7b78477fb497efbd81a270fb", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1177 (235105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0f32a4a6a6524d329e88966feea28f0e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1178 (235305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d232174edfbe438ea03f11738287517c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1179 (235505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a2245e3b3f6d4d32be65b7af838f9044", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1180 (235705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7bc3b9e868ed4f9f82aee829134453a9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "215abe1062cc4dccb5d469c3d8f9ed7c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1181 (235905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ce7d8a6f4e1a4f86a06b46331b3bd416", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1182 (236105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f6497f17ebfe44acbaabbfc7386ff317", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1183 (236305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "366df2fe763e460099880ac4edb02aa3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1184 (236505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "84eb08b159054ec6ad3f53d223d14ce2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1185 (236705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6ece2341495b42298a7e87db166d8e38", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8e731394649a42f390ceb8b297c102ac", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1186 (236905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "86ccba84f12d4971a900f2221a96b21f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1187 (237105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "99e92510425841a88fc82ae2fb151659", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1188 (237305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ce713e2d3f51424086e39f2f48291672", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1189 (237505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "965e178404bb49d783af85622002f132", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1190 (237705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cec41593796541a195468c4f5782aba6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "09f186e2a3fd471caa5e9fc002953033", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1191 (237905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e75f47f75c114da3b6a2733b1a21c1bc", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1192 (238105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "394a578babf34268b67928ac476cb137", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1193 (238305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c14725ab90ed4f359d84d9d0444a631c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1194 (238505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "79d92185d5b2489885553618921dff6e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1195 (238705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6523369ed771415285bea917f4a32dba", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "fa538f6b06e145519612585e2dbc4bc8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1196 (238905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "fa287b262974474ca592d1d26e8b1c09", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1197 (239105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8edf4be5340c4c63b477ea6aa90a8297", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1198 (239305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "81523b72e36f4653908caa2bdbc21780", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1199 (239505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b4fb8da79196407e89515c550d303892", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1200 (239705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cfdfda1a7fd745a88ad7ea04abdf1678", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "990dc4d9132f40d386fcddf35b8c72cf", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1201 (239905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "bf2a829c85e641ac87fcf68c1507fb45", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1202 (240105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "797df79019724d6cb05467748e112957", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1203 (240305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c2f31dee52394f9b8054f1c0c00909af", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1204 (240505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e69498640faf45d1862725d0da0c21e9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1205 (240705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a9a67fc5d1a0468c883a2cbdbc8e13d1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6e185e052bdb49a688635eb43c655258", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1206 (240905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4c149bc0e1dc48fb9bf4803eb3e101cf", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1207 (241105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c4a75ed573ee43cf92b93a7090e49a46", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1208 (241305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8d2dad1dc8694c908c3d8224d1343498", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1209 (241505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "940cb5f3cbcd4ab7bfb8ddd70b1a8503", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1210 (241705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7a261db3111f4fbfa17800af6e06de37", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "055112c77cd94b0a891ad574b056671e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1211 (241905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "410079f9ffbd4a3ea1ec217cd8f8471a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1212 (242105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "205c6f9983de4090b548378011ae60de", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1213 (242305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e0ba8ce7bc674628819e7198292574ec", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1214 (242505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1b963ead6fbe4d8cbb15a3ec0fa43d71", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1215 (242705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5558d4ff8cc64453babd2603bd16d950", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "50e0747178ea4119a113b9906290850e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1216 (242905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e7a80dcc82cd492abec26100c1e4fdc8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1217 (243105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "797102fbd8a1411b9bfc09b193dd791a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1218 (243305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "fb120912bba94bc9940ba6c0f48370c6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1219 (243505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b0cf6bdb14fd4d998a1a4a84a3020022", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1220 (243705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4ee6ea5f24c34376af21f4ed03ae24a7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "bc50986a244b458c87131785eef7273b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1221 (243905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8439c28656bd47cba669fc2ae0761b24", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1222 (244105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "349b40fd81654e568707080796fe8bee", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1223 (244305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4aef6fda627e4c7cb06b7e6d48f61798", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1224 (244505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2df2df7f44d5448697329651c4739ad0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1225 (244705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b997f8b4eda0450cb5d766ac01838ebc", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "48d7a19b60a14185ac3be141082953c7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1226 (244905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a5eefe540a5c415996302a2ab5b0993a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1227 (245105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0469339c15c344e19ce344087092b0a1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1228 (245305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2645a882c0cd463ea69212a824cde717", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1229 (245505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3757539262364b4d94b81a2e626ab01a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1230 (245705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "00626da748154694a93a2b8d5dd9e228", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "09267787c45b438383dfe321e7e042bc", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1231 (245905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "918c6a534f364ef7bf8ae0f9cf5a9d19", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1232 (246105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7e5b5aeff31b4f08989932415b0e23d2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1233 (246305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7d2ccb898fd6473bb34d4e65fe05a06a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1234 (246505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b97710513c454d6d94c65774caf60493", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1235 (246705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7bf3eeb0cd1f448e93190bfcb97044b2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6b074e3f4ec84866a8a1d38b288fb792", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1236 (246905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5aef6599a49141a5b32c5db97194d979", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1237 (247105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8d03985a4cd74540b9f4aae7ae8101b3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1238 (247305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cf167a29b4584942a07af9eac8dd393b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1239 (247505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "21c74be082f94c7cbde4a7d5128371c2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1240 (247705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a31de9eb53454bebb25b17ed35c18a9c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8d6b1e690eb4459dac893274b40e0329", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1241 (247905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "622675e4779643cfbe5644a275bdcc5f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1242 (248105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e1359ce8492b4dffaf32646a8baad8b0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1243 (248305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ac57384cfdf045089633c052a3bd390d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1244 (248505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "df9bb6c7d32b46bea05f5e7cba23b509", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1245 (248705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b6be061feb8c4a8685ee92022db0b1fe", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e83f95792df34a13ab32cac600c66b63", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1246 (248905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "59ca880b44574dd4a651d22cb2a8ba6a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1247 (249105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "27e1f5d04d944b1a8dfaf60e810884f9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1248 (249305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1ffd7387957340838d3b9dc4438811ca", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1249 (249505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7a53b3b04c1144d2b2eac10cec6213cf", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1250 (249705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d0cccfa86de34a208bd8927799bd75ee", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4bd257873f2547eab0b917bc47ff8b07", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1251 (249905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "34bffa8fb9c24010bc7ffc5e1f0fc9dc", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1252 (250105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "fb6aa75fa3d0486e9af2a944477a7513", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1253 (250305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c7aa324814634fdaa57aec9d59c24601", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1254 (250505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4efc8259c34b49b2b50b3ff021830527", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1255 (250705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "85eff6be893649188232b5fa18cf82bc", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "81008ac0403e4631a6c6ecce50fa2b4c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1256 (250905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e96b7a3e84d248acbbea4fb24d6af247", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1257 (251105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e97e093e0e344d00b45240c93db1ed21", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1258 (251305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4c1b0d1afc8e479c890a2b13d6d5cb5e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1259 (251505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "dbc355f116724975b43655733f135fe1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1260 (251705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "76b8efb11ea349268780da7f4731d3b7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4380ffb654b745578c561dca1a2d7966", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1261 (251905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1617e8670a5e4f6c91235f2cc0e11c1e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1262 (252105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b5bc9f918ed044ab86ec173995c3d15a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1263 (252305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f8e278e87af342f598bd6df7d96b26cc", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1264 (252505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a0e36b1ff30e497e928b8f6b605a9f9a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1265 (252705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0475f7d017e541b5ae3f443b6d666fa4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cd5490170d114bafa8daceb052774c0d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1266 (252905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "06297a27f5554c85a16b07e4b56486c0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1267 (253105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9e12baab184f4c7ebdc4b6a6fdcf7127", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1268 (253305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "055410ce140740699a688c6309aab982", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1269 (253505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ed83afb31ae542089be3ddbb0a8fbef6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1270 (253705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a7f4bf2197d64159b4050eb2ad2cb0f1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "dd6589b41db34923996e8d15399e748f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1271 (253905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c52faae0d74540909bf9e9f43377606d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1272 (254105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "325cbfe97bec4d789ee040d9c6bc9009", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1273 (254305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "94b73a353f0f419ea0ee9b70bc62d435", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1274 (254505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4f68899f2d8943e997aaacd06c396a71", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1275 (254705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ead90773dc1247a68e3eb44e7422e874", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "35fafc7ebdad49078507d3926a53d040", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1276 (254905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4568ed013b67459984c196cb45479ee5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1277 (255105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7dde5d1025c8446ebf837e7424380b24", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1278 (255305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9195d14ff1e845eb99b4b8c60a13c22e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1279 (255505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8546bae3335b48f1b1c76bf1f4863904", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1280 (255705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4fbb4ad5ca364968826c486add6d61c4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "572360b3e9b54fae8c78d73c389b5f08", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1281 (255905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "fff2252314404ae7be3b2a9871944f5f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1282 (256105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0e0c4d2f3ae2464090c6b33bd9b6911f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1283 (256305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "49cb902af5004d32ad4850c8eb7dce4e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1284 (256505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5af229070c8f4349970909d18eb8ce36", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1285 (256705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "629c8bd7383f46fa8676acef76068f30", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5d6e9b4e8f1644b3ba25d6cb2a70cbc6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1286 (256905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e45cc3b7220d4ba9bf552485c8883d4c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1287 (257105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "aa4ddbc26ad44ad0ac83895ef1d62ea0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1288 (257305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "91fbbd940de14922b3b41c393666c77a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1289 (257505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c10c37b6da1a44d797c2ee69ec29bcb7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1290 (257705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1b68bb933b104208963e488b669f671c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "01df4a52740f41939709b1d6e2436827", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1291 (257905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a23a4f129de445c784fea0db17191bce", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1292 (258105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "548e0bd430404e35b2255a2e7a5b231e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1293 (258305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2423baab081c4989a4a9a5cab8efc74a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1294 (258505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "65ed2e224ece4653937c46101b065d0f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1295 (258705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c3ff6f3ee71b4bf5b0e4d2e5dadbbfc6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "00284932ca0e4bd89a5fa2147471f108", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1296 (258905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "08f742eb71d448c6810a2570c8b9d009", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1297 (259105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cb4fe3964652473fbd479b319fa4e921", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1298 (259305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e4f6009f843b481d8cb45e592a86cdfd", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1299 (259505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "82da6e6304234ffb9e97485a60bcb7b5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1300 (259705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2b9eeb05ef894c3e84c81a49dd1ffcb5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "48103c9187d940418afcbc4a1b034cde", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1301 (259905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a4ac729d92384b0fbd4dd7bb772320ad", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1302 (260105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "62d8b2cd68ca4027be8167f9f1d0102c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1303 (260305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cc4aaa563b7246bc90db133f95681082", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1304 (260505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "949d00fea91d4e24801fbf795403373e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1305 (260705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "75013934039843bda25fbffec42aea32", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c0403362e4374093be5c7865bb68252d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1306 (260905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "15957bccb84748a88198fb1489db79d3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1307 (261105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ead1facc87e9412d95e96779aed8c654", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1308 (261305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d25b934a01364024af6e5aed2987f99a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1309 (261505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9b516054a2ea4e34b729b0e145dbb3de", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1310 (261705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2bfb3d8042d9453fa4444728d2d7d90f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cedf7629ba0243d39481ad4b704dc448", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1311 (261905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "72d509bcc52b4aeb8446115183663d48", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1312 (262105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5c50435a271649acb7676f59946f1118", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1313 (262305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "99f489a47b6847ce9df81d71b648f12a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1314 (262505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9503cb27f10c415a808703a000a2a392", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1315 (262705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c93505bcb2af4d72be0227d211046bdb", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "84a7610ebae84e9183cc327ad98c52e0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1316 (262905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8a50d121ef0343309b5b99dd9a4dd798", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1317 (263105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "97d0587d8f244342b5ce69e1e0c54675", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1318 (263305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "597558f1eb4f4fa28ad624523c202017", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1319 (263505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d910fdf9d88343ec91335e732f933f74", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1320 (263705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8f8020f9edad4d7a857bf39d0d085493", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ddbbd4ad163340adab8711a7dcb4c73d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1321 (263905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9cc10a92f88f4e3a882eb83798fd8c60", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1322 (264105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e4274e1345104ed08bdad01b9a7ffebd", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1323 (264305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ca239eafbb0a4b37889e392016d217f5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1324 (264505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "82b3f70c475a44c4b512aaf761312bff", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1325 (264705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "27dd3c0c116948fc9137cc6dc447f4de", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "bf35b46eb43f44608d62a53c7fd67a8e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1326 (264905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "fafae2d481914d689306714048dbff33", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1327 (265105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "65bcc7f63717483f98e24a4251ee2232", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1328 (265305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "55bbb9c4c79646b5b93754e376cd4d14", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1329 (265505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "79fe7cc2271346699b08583c63a0bf2b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1330 (265705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3ca177246dc04977a908fbac68d1ee55", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4039e9fafce4457289918e1ae8b1914b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1331 (265905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f5fd6b07959a4581b589cacb4f2ea29c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1332 (266105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3ec19f8549ba44c5a1d8fd7138038837", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1333 (266305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2a33b21aed9e4877991bc13c050047cc", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1334 (266505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d0642e6c302d4670a844a89da7faa1e9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1335 (266705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e2717b1a7fed4852888fe5cb134b55dc", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "031575cf908847f49dae1566f61bfc20", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1336 (266905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f2734880d87748d3b2384cc744bb6cf3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1337 (267105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e954c70f671b48e49cdf9f82fa86a7f0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1338 (267305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cc3a36e8d6d3415fb9c88c5fbd14b4f2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1339 (267505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cb8a562699354cbd810150e73c49b316", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1340 (267705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "43c3e8657f564dabb2dbf6ca7787f1b9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "552756a5088844d48c276cbab1cd362f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1341 (267905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b48aa74f52934423bcdd63ebf2204f36", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1342 (268105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ec67a2a713994d2999d39b4d7e8ece12", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1343 (268305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e25bf094cad245798c291134f6a2f340", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1344 (268505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "022b009b0dff413a97604a91ac537a71", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1345 (268705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a5a2ce52882b428abbbd6d87693205c4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3a1d29d55c054247950181577938ce64", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1346 (268905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cd253ab4e350430799d74cd4c88785be", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1347 (269105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "163f005b28b048b3a28c33e2c4cc9fad", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1348 (269305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "bf265923a23a4e81bc0af81f0bb66fe9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1349 (269505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e2cc8b6ee6d94c618fb1f04d351d59b3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1350 (269705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "735df0fea8a044edbd7f762c2ed591b5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6b9868abcb17429290933a3c27ef0647", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1351 (269905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "839af7d91c464c4f83a6e0dbfb344986", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1352 (270105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "95f3ce01ae734bb68cfffd6f1d7d660e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1353 (270305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "36e250f9b63b4ca68bb9e09a3b1850f0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1354 (270505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7cab1ce2e8d64b1c94323370e5cf868b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1355 (270705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f91ed04055e04af5a4f014655713bfe9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ff0d89d48192423583279a314b68fb9e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1356 (270905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "38717a609f6a489a8e58c24341af3bb5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1357 (271105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e92b452a9a834f88962b919a26c854bc", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1358 (271305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "426131629c9840c1ba1766f218c7800c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1359 (271505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4a335702ccd54b8083f77d2342867fda", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1360 (271705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "88a50c2a770a4f219e0a447fb3f8de42", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "905c21448ab241399daeaf3c0438c934", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1361 (271905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f5c179e993264df7ae44be50549e1e3a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1362 (272105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0dd28c14812f4e1bb9fdbe9f78538b07", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1363 (272305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9c68df0a66144bae9a93c95772877b07", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1364 (272505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "621c79e0cec149afbc0da7dda9804112", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1365 (272705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f14fa236eb45459dbbb2e3e1d8d4c181", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "bf7583bb79204f86bf6bd6ad12014fbf", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1366 (272905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "256c389b7bf74ca7a08200a69d0247ee", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1367 (273105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "68d393f557714cd9b2a1733558804343", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1368 (273305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4f9b513b13284fcbaa2f16fada53a0b9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1369 (273505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2b97056694904b3baa18067584b080a7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1370 (273705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1c2e92ae379649db9e972fe25b631a97", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "581dd68ef826497bbb8a36adfaf4e253", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1371 (273905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "be88be670def41b3ba903b70131516a9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1372 (274105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "96b5401e639b4c71a5c987ebfb964c08", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1373 (274305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c372f53c3da44e88a1ac9c4d06863564", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1374 (274505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "69067a64fb26485b9e09e5ea894f09f2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1375 (274705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "55dbc6b869dd4ea896b948e33acc6ae4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5baa5e0700c64f9f94b7683b725af4b7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1376 (274905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0e80fcf07b474b2eb3473614e4e4af78", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1377 (275105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4d90b3f4722e4d868bed21fafa9292ab", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1378 (275305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b1016ed113c046eaac419431297d057a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1379 (275505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "31a017209615493ca177ab4109181b75", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1380 (275705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a2e134abcc4f4ca58581c62fe74d4b14", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1ca563d953bb4573b747ec4ad9cba8f1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1381 (275905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b8c08607efe047d2ae7f00887570e602", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1382 (276105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "95c8d0e4bda248258ba7c8ea70426778", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1383 (276305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "690bebc954a44956bf81e930616c7985", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1384 (276505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "50f4d5e17b484923b818b3f2fcafab69", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1385 (276705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "51e0599f8ff74e3e9f7d46973f33f89a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "32b405d82c9c4e7f9c8417d091a91db7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1386 (276905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5c207ee0dbe045288ce556da4b05fecd", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1387 (277105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6eab62813dc64e6a847ae907b6bd4816", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1388 (277305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7bebbbb1db0342308e1912b311e18d7d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1389 (277505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c4a945cb85d74d298df1b2f1faf6109e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1390 (277705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1db1eab3273c4ca885a45d158b822a08", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8576573553964a10879da0b535570c9d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1391 (277905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8c80e1a036e944f9aa1b92433f78bdbf", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1392 (278105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9f89fc3cdd144ff5817b1dee2ccc8843", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1393 (278305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d9caefe9204d4c0b8147430fd51821f2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1394 (278505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4cc53d5c93b04545b9a7af2761d1fdcd", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1395 (278705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7bb180467dff4c2fae6c58e63f2ce6cb", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0187fe9a6d7a43bcac973de691ff350f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1396 (278905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f8418c02e504479f86d784e7aa8fc65a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1397 (279105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a696c9a86e3f423ba2655d68f76a02ab", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1398 (279305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2ef3adce9d8344df924c0325ab24906c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1399 (279505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2a5bb40d3adf4c9c9bab21d60fff4650", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1400 (279705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3a06631637de4e4e8c111aa7d2080480", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7b77b6055ed0460c812eaa05504a670d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1401 (279905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a922f465be10457ebe8a69520e57c5a3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1402 (280105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5f749939fabf44d9bd7c0ac463f2f396", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1403 (280305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "56e016a7e4584993a29b208ed13038d0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1404 (280505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3954ccc934c44a7e8719c5a7211fdb34", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1405 (280705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9d1b3e4b878048338138f3d6c4d65070", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8be95621a1834dcf9e40104c7105a04a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1406 (280905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1a1be8f716ea45cd95c58acb2c25800d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1407 (281105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ddd149b735684d7a944df8f7b7f672e9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1408 (281305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ce39da885440453d876f166dc0a19b68", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1409 (281505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "eb9d21ca6bb54a5aa289deca7cbef4f1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1410 (281705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "589e0242b26a49cb8b2f67aef091054d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f064bb967c1a4746b9d35210739d217e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1411 (281905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7ad177acc5834169b906542c15ab2ebe", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1412 (282105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d9189c21a78c48a0b418fcaf582a6975", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1413 (282305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "832f580615b94a1db36af37cd8b08971", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1414 (282505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "10493cf2090d4571adf68762676df756", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1415 (282705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2a6eb866313a43a298c8f6167bd73fe2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7ec99352d3d04959b82c9f3fa2cdd6be", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1416 (282905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "808d7bd814e14b47860d9420daf4a516", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1417 (283105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "92cfed666ab341a4b634409a096960b8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1418 (283305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b010a86b6ade4cc78d730be2b7ff216a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1419 (283505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "542bf9ca7967412a98670d3367548cff", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1420 (283705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "18c40323f81941acb8c908a6b1144429", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9dfabeff3e41406b93c1a9fd48a28ab8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1421 (283905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8b84753e481645809a751812feb1f153", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1422 (284105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d4d5b91f5f334c159f8a814c1b3c1bbe", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1423 (284305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5afd6a1816e44b8880cc3661c1f4c212", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1424 (284505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a68af2c12e164224b0cfc607fd384e83", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1425 (284705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ce56625de4c444128e93ac8d9e72f3da", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ef090e5890cf46ff8d775165cbc97eea", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1426 (284905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "214c6159b8794f5abf98ba94ed7c7594", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1427 (285105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6c93fe706ae646c483c27f194e39c4a1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1428 (285305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1439a153e9ae4b4d8d36f781a8ba8034", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1429 (285505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "823ea843dd694f28a7fb3eaa102f26bb", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1430 (285705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e90917c6ae7f419fb2d19cd82b705ec0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "df8098399a2f4dbb910198c10e539caa", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1431 (285905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8ed98754fe004362a6e44f04c18407bb", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1432 (286105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5060a4bc2423409b930dff5da1cb7d4a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1433 (286305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0bc7b5530f5e49f98f6dcc1625cdb82b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1434 (286505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "653dc9abb01d40f680eb8e1e649c5e5e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1435 (286705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "32717742a4ec4d2eb384d1ee34b9236c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a1880805397e4e428ee360bd0a17babd", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1436 (286905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b8e732ae10c8485583ea2ac521c4c98d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1437 (287105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2bec9d7d8d914a0d9bb4667047ac89a8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1438 (287305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4ec96bee956e4e39beb7459ecfd6aedd", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1439 (287505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "af88eff5b6154f948c653767480282f0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1440 (287705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "efb6069c73e540b697d5a083664ddb54", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b140345441a64449a5d6ef976f5c2492", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1441 (287905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f62317801c0e430a93984e24bb411062", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1442 (288105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "053fabd439494ea28cc6f5dc6fccc76d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1443 (288305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b3d9745aa4c14d61be6b53d876736d00", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1444 (288505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4d485216abf54491bed1e8a23e3f1e40", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1445 (288705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f058b854ccce476fac4bd6beacbc0481", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9af5194d14bd4c208f913df974703e27", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1446 (288905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8bb787bc4e614d00b14d8af05e26cb8c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1447 (289105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "31fb951cdff045a49634a87791befce5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1448 (289305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7622e7aef16d402d8de4e6f02f803147", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1449 (289505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "505a7af60f0f41ef86316c6a8ba76a7c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1450 (289705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b460f2efe77647fbbfa12a246f70dd36", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f5199233ada6493ebfaad931abe505ee", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1451 (289905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3a42c4b589fe47739037b2dd80b3baf5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1452 (290105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "20c52924bd3e48048accc56aeea3936c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1453 (290305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e58b8a887d1d49be8e0f67fcaedbfda6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1454 (290505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0369befe4fe84f50b23adf5325dbd313", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1455 (290705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8e8240eb1f8f44ddb69432fb56b2c673", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "506f4657fc634d7db25ff310320de920", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1456 (290905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1c76fc68e8f14389857dae01f829e40d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1457 (291105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "515e755353d14c768ee13617488ea554", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1458 (291305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "361f5ba4de514aa98a6e7f37b18e0097", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1459 (291505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "fd68f4d3bce741fb865d348648e33e56", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1460 (291705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "797a933753854d50b18e923a9c53c08c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "657ca89a4bf64dd3b5086ace2c5aba5b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1461 (291905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e9d4a02734314939a3abe7419c1997ab", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1462 (292105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "22a87344180c4622aa5594a293a27af0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1463 (292305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1ed54faf366e4acda6b456bfc16ee679", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1464 (292505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5a57e8783d9e4b91b0aa77386c4a6d5f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1465 (292705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a7845342f7114077a6d3b30cf931e355", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f1729be99a9a40be80e2b61b74105b81", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1466 (292905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5f5291f2e7464e0fbd429d7527c54e55", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1467 (293105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ccf2f884493e4b2da1c129877e51cd77", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1468 (293305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a2837f94d6684cc78eb7eac8552e1b49", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1469 (293505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6faf5a2cda024922adda1d59698ce72e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1470 (293705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4a712af3420840ccb4089f1414f44805", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7f61ff1931674af79e78220bf3981166", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1471 (293905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0135b16001ff4996a48a6040dcb30148", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1472 (294105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "07b918d7532544f4a4d8d0aacc795fb3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1473 (294305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c5bf97653990459b826d6217bbacc919", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1474 (294505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f164add21e6e4ecebe7bfc5b3400035d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1475 (294705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5388bcfc90d84708bbe94676f79c515b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "795ca82ef89a4e8fb5a7c96ba556b4f1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1476 (294905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5734d63f836e40e78ba5077c957de5a8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1477 (295105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "49179bea18044d1286cb0c08df146b39", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1478 (295305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0ab03e9e992b4568abb30c6527afbf2a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1479 (295505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "347ba02463bc451d8f8fd3a19fe70ba3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1480 (295705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "948e5062aab341c18e5abd7838393f33", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "858253ee5fee484f9fc1505a88112b5a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1481 (295905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4af3803add244be4b52d7b6fbbabfebc", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1482 (296105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4a155423da2148218efb04fbad3e7f2a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1483 (296305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9bdddb8fca834e19a2643df4ad793edc", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1484 (296505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ecfa477879e3430d8acd43937adc383f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1485 (296705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5f9d03fc8e09453f896b54187adac590", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9e28540ab6f24edc844a3260d7e0c29d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1486 (296905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "dcb47ba7c36948229bbc8e2d989e9b98", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1487 (297105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9f305d18fcc147a6bfc635c33721eaf8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1488 (297305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1b174309e2a2459fb00fd0a2a0c9e45a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1489 (297505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1a2fd1c4c28c48aca30456c6f67207c2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1490 (297705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "678ecf3c167740d2bb33d60046a29795", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f3ee79fc2cf64f4495734e311bb19aee", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1491 (297905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e3b1d8aa8c654693b892dde3422ed859", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1492 (298105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3c0fab5fd199445ba391b27ee6a24fff", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1493 (298305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d197e018b2104458ad251191f2c66ed7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1494 (298505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0ae6a1d4feb441689878bb35eb6f7234", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1495 (298705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a6f2a4a728bb47e296789bc8631862bb", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8db5ab36a5094fbe98548f848eee6a3b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1496 (298905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f8c9a166e5ab4a4a87824f38bb4a9860", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1497 (299105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "26040de17b2e4d7e857f454597ac5f04", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1498 (299305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7eb57cf1d9dc4e649c5687ee0b2ca686", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1499 (299505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1251d3a536fe4e2daa39175ab15f750b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1500 (299705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "dad84b80922b4d78a1e0690d5308998d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "aa49b93cf4994b2e82e753ff4c3c04ec", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1501 (299905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f888282dbf504f32bb58934753ba4609", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1502 (300105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a1bfbb2dacc14dd39c7cabf7c04e3867", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1503 (300305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d94afb87dd274654a6e871e7fdf5c582", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1504 (300505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f6142b5903d8435b9026ce6715eda76d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1505 (300705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "95800dbafcbc4fba8fedcb02863e83ac", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "db29f47c09aa41ae9be6949cd92fc9ab", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1506 (300905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b0add12e6b3f492c9d1ec0471fd1298f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1507 (301105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7ca97f589dc6412e896f5787d7c75566", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1508 (301305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "898db2b84bfc4d17ac764424ea3a521e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1509 (301505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "65a80959f6a247509eeb0d6fba98d0fe", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1510 (301705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "142c42dfaa144542b40dd47abcabdb41", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7b47d9696d824fc5bc5e3a27e1a651ff", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1511 (301905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d3b7e020fc2844a59440bb0adc64ffa6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1512 (302105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "77aa3b4396df40bbad0245e1a0128d77", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1513 (302305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e46d07bb7b5d47919d7990b782b12295", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1514 (302505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3dd5e295971549379c41c72b5a954e5c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1515 (302705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8071127581244858b93b68db78b541b4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6a489d60233e48769f2be2e1ec6e9ec2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1516 (302905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "bb6f63eb9b3e4ed9a65319525efce95b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1517 (303105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e1247eb28d784f63ba3285b181374357", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1518 (303305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3ca7595f3f2040e3aedc565ce9e8bddd", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1519 (303505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "dbf3741864e04d9c8bcdd96dfa68f084", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1520 (303705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "91a3fb4ad5514d04b8b9253cdcc3db9a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7f2e88cb9ed74aab9474872e6f815165", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1521 (303905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "85602d836ce24edc81da41e4b287e47a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1522 (304105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6b898e92781c4a86ab51cefbd689f57f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1523 (304305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "bffa98da8d394e19a42140832ffc259b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1524 (304505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0548bbbf0f7d43ecbf8454ac32504804", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1525 (304705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8d11d0fd8dbc48119c58b2fc9a97a0f4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f179aaed273a40de920d9001adccf485", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1526 (304905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0113dd9d2b6745bb88f13d1228d13692", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1527 (305105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0a5e11bc86d04e33bdf3e75d3d7842e9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1528 (305305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "165ba44a9355478cae2354d97b734d48", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1529 (305505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1205e64a13eb4acb8d0bb5dd8ff3ef10", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1530 (305705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "406e7efda7ca49118210f9b258a6bb60", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3ba5fc78eb184167a1d323c64c0f58f7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1531 (305905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "42c0cdd4c7a3452e81d8caf62619579f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1532 (306105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4781e493c1ef467cafbc8f25bec7d4de", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1533 (306305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f3943bad89f745dab9dd43c1095d3aa3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1534 (306505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "aa35d5864d8149e39f413f1c4a53f82d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1535 (306705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1be9fe07bd3546598c4974883cd1e5bb", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9865df9286b8450896bb0880b2fbcdc9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1536 (306905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "bdb7a82fba1d43f3a74a3f3d59d9a2af", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1537 (307105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "bbee04ce7940406d8649ca3f02578b23", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1538 (307305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f2789d6d54c241228fe2fe04158ecdee", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1539 (307505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "99b0b36b0a9b4bbebd7df276512e0566", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1540 (307705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "10f080d870544525b80e5ecfa4f032a7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "176db88ea21c41f9ab679b94dc6c308a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1541 (307905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "26aa38393a9f4a9384ef1803c711aae2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1542 (308105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a55c13acc8144dcb8e93a90c23e392d6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1543 (308305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2d6aee9dbdf7413c85dde9fc4e900e2d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1544 (308505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "48a1cd73ac8b4726ae2fd96e1d5c92fa", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1545 (308705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "fc44007a3c1e487e8b0ad7ca0b687a42", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9da6d527a9084f2da77f154e03fb2d44", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1546 (308905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1de95f27dedb49b2838f14e076674a6d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1547 (309105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "22af4f52213746e8a2af15792b3b4025", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1548 (309305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "bdc20dec3fc9428aab68af38befff490", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1549 (309505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d2930a0438fd420e9274d582764160ca", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1550 (309705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0e274c4e21474bc29c2beed884e61e9d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5f42f55c2b1a4270af97992211c5c8dd", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1551 (309905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5aab93a3864646a3bb9f6de36e02643d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1552 (310105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ccaf6180569e4c008551efc541be1c9f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1553 (310305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3f299ea3a81f4fca8016cc46c01208ce", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1554 (310505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4feb9df1a53a41d8b7d342aa4ab810ab", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1555 (310705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1afca45a28364dadb16fce4dc9ca6bce", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3823d4288a504d4fb5297d85b35ae30c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1556 (310905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5f468fa605674ea9b873448c46647beb", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1557 (311105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1bde9512ef904dbdbbf4853095f99db6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1558 (311305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "860e69e7376b47c9a8256dc95999718a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1559 (311505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "91a7d1a6452d49f489e9c8c92b2a1ccd", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1560 (311705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d0f93eef7e7649538a133d90845cb5be", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a3b289e2907246b682ca3295aaaf56a2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1561 (311905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "33accc05f1394112a43f03514df77f7c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1562 (312105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d8e1664bb6bc4ba68b31629ce5eb7b4d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1563 (312305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a8f068c0149a49faba6baff08b9bc0ed", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1564 (312505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "67dd97dd935945f6b8e3fb07547275a7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1565 (312705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f1a4193a66ff42a7b54912befd936010", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "68f18f00e8bf4959a981f8d769b560bc", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1566 (312905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e97bfaaa3b3e4ea8ac426e3eb6b6acb7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1567 (313105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f20aaf0b6b7c4ca6b2de597f2861cb5b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1568 (313305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "228de79cb7764117a048ef81a3ed5cf2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1569 (313505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a412fcb3188845ecbef4bbe943b4af14", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1570 (313705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "24f4189519d04609a40787703687eff1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5b832497cc9f41a89c399a54e1611216", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1571 (313905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "447520a0807942898643f4cc588273ea", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1572 (314105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "42d8c633cf1a4dbeb7ca7e5463e8129e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1573 (314305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "eb727cd07e984823ae47e4595423b369", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1574 (314505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e345fd22b989442e936392386a6646a2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1575 (314705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f53ffff7a72f4c9aae30da32dca43d88", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b19295468db948a983a93d97a2d530f5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1576 (314905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ca9d3d50fb8d4a01b9c6a8fac7d2748e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1577 (315105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e9d8ea9a469e44d797c76887b1850bf4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1578 (315305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5b88c205ac1b4fe591f3269bf6275046", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1579 (315505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9bd27bb4acb9471d81831624630c5d89", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1580 (315705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b0e48926aadc49f7a7dde6b441c0168c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "eb9f146a12ef4ed4ae6b65965d96fea9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1581 (315905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2383935b22d04871be76331eb87030f2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1582 (316105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4f3891b353a540fe8798ffe5887ec2f1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1583 (316305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "edcd365abda4475398ade74745f3a690", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1584 (316505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0e08c2de7edf403b8f6c919ee0b8353a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1585 (316705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1f6e489a8f6f48eebde484b4f8223e71", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a8cca1d1b9a0412a82d7ef96a9ec12e8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1586 (316905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0d041a8b484c4d00bda56b3137f6201b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1587 (317105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "784b44d690e841b98384f9155721c3c0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1588 (317305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0bf477373f2b468f8e07382cab091556", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1589 (317505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0f142e045ca441df8d692b30562db1ab", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1590 (317705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c166e2017de1424f993269f09a3cd647", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "899dd9feaf284cfa918dccd29329ca21", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1591 (317905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1e15b77556104973ba86a8c7f1799301", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1592 (318105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f9067f5e2d1646d4b8972785639e01bf", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1593 (318305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "01401e26a7bd42648022d2542b0d6b27", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1594 (318505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "490b5601c1d54cf9b07b6ce9d722d9e2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1595 (318705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a7b9984e26d24548974ff7154e919a2f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "462cd010284c4f84905a43e2bdff4f4d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1596 (318905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "de24349d6ce14b298d7455e975fbfcb4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1597 (319105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5bab97948d9c4cfdbde757e161e5536f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1598 (319305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0b1758a458bd4aa990d8a3f63fc26b34", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1599 (319505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0a63eead28fe4e3e96664f96d6e33af0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1600 (319705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6fefcb0ba16d46f2bf9daf97a17200bb", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "eda4158d65b348bdb4fcb6eb15eddba8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1601 (319905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ba7cfe44a6d84677b727a430f185fd2d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1602 (320105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a57f214e64b147b6ada9bd1d645455ba", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1603 (320305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5baa82cad1224fe092ae8ed0612c36db", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1604 (320505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "dd5485a24cbd442f9a748bdc12f9ca6c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1605 (320705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f19705d432d4469ca56dbe5b036ff9bb", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1df53b5cf7fe45658dfc7b99733de453", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1606 (320905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "79e5c716f2664efda97eda807bdb377a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1607 (321105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "700ef92419c44ff4868163772e00c68b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1608 (321305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "88773f7e3cae4ee1b013e302103b5f9f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1609 (321505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b6f36dfaf3474b40855683349df23975", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1610 (321705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c400ca165e014bf18d85682a2bde309e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "29e8a08241704b0a808f71b7713ff604", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1611 (321905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "bf4f65dea1df487b9f32632a4a616ac9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1612 (322105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1be78355f0374e418e8588077e7178d9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1613 (322305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b5d6099623c84f09a34dbdfb9955e844", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1614 (322505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f79195654e8247baa15ca4043caa16c5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1615 (322705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4cbed214e64041e48754b7dc2ef59694", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "82e17f252f6043c395f61cb6ff210c01", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1616 (322905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0cc75791ae62427897a036418270be47", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1617 (323105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "052b1969d8c74e159dc09ea1c782b25f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1618 (323305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "bf4f69df60444ed58f926303d6a68453", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1619 (323505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2001b1a1cfe946c5b661327db50c7307", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1620 (323705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "337f3e43664343f683a21e50e3602b49", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5ca206d623964232bfccf0c8cf19455d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1621 (323905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cc38fa74c5db48d48c1ec008e47e794c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1622 (324105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ce3d90c8b7ca467db264bcd85b42fe75", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1623 (324305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ac8d6543fb4145b0bfa314c12d3c1402", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1624 (324505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "74923aff0e5d4edf877d1301215dc40a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1625 (324705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "26ee3fac74c8446d8a014d0a78d546cc", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8effbc3d9d684433982f62733b61b201", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1626 (324905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cde54f4220d14922848e4392907de161", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1627 (325105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "aed30428c8f44a28a995e4aeff5ee679", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1628 (325305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "530e599c7cb444fb9251209262226300", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1629 (325505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4080ddb4204c4daaaee1761304a02303", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1630 (325705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "105af19a010e4ca58a51dcbf327feebc", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "488fbba4e6af41fe83cc4c83d1d96e8b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1631 (325905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "76060f88c7e14dbdadab0da4f9ba8d39", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1632 (326105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f3a2e1a38726475d87aefce789007a5c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1633 (326305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d8e2b968f6174d28b03bb3af04e9ade7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1634 (326505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a39859924ebd48759cf7ae59f7dcaf4f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1635 (326705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1279b81c20f44e45be8e479ffb834e0a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2aa278cf5f5f4ef881f5eea2d9f0af61", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1636 (326905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "939de0f3e707441e90dea596f6f8fb0f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1637 (327105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9c6b47cb5c0a4116b01c03df24e30954", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1638 (327305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "dbd284197cd14a0f9a27f7681c5f133f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1639 (327505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a8244ba7dec246dba408c3cbd1625ae5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1640 (327705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0b525564bcfe4975bca6e9186cda6374", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9b49cc3077bc48fc8934a715530cb935", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1641 (327905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "bea3ad84a18644b4b49264a7aab189ad", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1642 (328105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9bf62047336344d1a31d65d703e552d2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1643 (328305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "176b580f48134be79ab8164e36488318", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1644 (328505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "913e188a7b5d4b0d84b70bcd32284bc0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1645 (328705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f2b1b41254d3425b81bafd5e948bceb6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "471568c3883f46828b013aa8658f15b2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1646 (328905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6332119a49bd45698eb26c43c503f03c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1647 (329105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9eb13562fdb0428da002e31e4a274fbf", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1648 (329305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "55ba4cc749aa44f69032170aa7dc6962", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1649 (329505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4d27e53bf20347749189f27ca13681a0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1650 (329705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "95c787d7c7ad47dcb920620b13b1dcf1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "698f6b9539ae4b7489ba4019367ebe03", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1651 (329905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "92fb8c7ab36a42ff9f24cd27ebbde4c1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1652 (330105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "163c9c47658a4ccfadc09e19627ab38a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1653 (330305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6e46aef014ab4f43a4a5899a6dc4a7a2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1654 (330505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f1b9ed63226e4880913ae781a97edd90", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1655 (330705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0d579cb5780c4077af5d27d4c94a98e7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ccde11ad54e643339280dfaf048f1a33", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1656 (330905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "813bb992a072407c89f2322d96b6396c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1657 (331105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b053fdc152bb40e5ad4caa3d1feddfcf", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1658 (331305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "83c7cd8f8ffd461e8e3b9c890ba2a012", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1659 (331505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e4c49307de8843b5bca2805f584f5739", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1660 (331705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "567b1cbbafe6446fa430909d6aa57f8d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "94b3e28b730944bfb407a580884b429c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1661 (331905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "fc1b65a1b8b14c67b7799b54b0bd11b6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1662 (332105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "04e99ecd47aa4397af0b6b1cc12e9d3e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1663 (332305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a5d1443c0064416cad30f5c7a2c8877f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1664 (332505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8d9d7f51315342afb405e874b16edb80", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1665 (332705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a08629b0037c4a838acec5cf4834a985", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "296f1aebea0141c7a756bc95fa8bcfa1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1666 (332905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "aa404a48877745068d69756288669629", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1667 (333105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a876cd179c6e459da72395081911916a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1668 (333305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b76cd6f407824c56a8d2de8458634dc4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1669 (333505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ff2088e35b5249d58d562247b2d40a63", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1670 (333705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7282e5b6d6554523a7826fd4f561cc79", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a566c812ec3645a584f9062864856cb6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1671 (333905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "77dfd90e4a4b422295c3d7d8a30fb056", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1672 (334105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "30d380049ee54cb0b1469e2ebf3ca82b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1673 (334305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6b664263b6d14ce9bf9edf2d25d9bb9a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1674 (334505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cf16f6b4cbfc4d8a9ea1ee742d37707c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1675 (334705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b00e6361e4c447a8b7a80c97204f888c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "955d99c049fc4f4f9f7669ce990881bd", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1676 (334905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "10fa29d6cb9749e8b89674aae78a6c10", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1677 (335105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2a9072d33f65460ab2747d7bf82999d7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1678 (335305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1141bcbf477e4fcf9474052d52015b37", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1679 (335505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f254cb55c3824a3cb27d8cc4bb8eae2e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1680 (335705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "39bf7f2dcf3c42ecace69fa10a71818c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e78b92e54f3c49cba580d9901c30e0cb", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1681 (335905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ae64b0bd176744bbb8c32b053d59a2c2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1682 (336105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "347d0db3820a4b8c99596ce34d239da4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1683 (336305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ecd7052740b346aa8ee1a55d66d154ab", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1684 (336505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f1273df1846a46fa9d34183bfc6d3bdc", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1685 (336705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "63af01c8f91b4080943bb6043bfd020a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b3bd132b479c454c8132ed20fbe1a493", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1686 (336905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e59191b2d3724a2fa68a4c6aedab6d2f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1687 (337105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9710b5ea7b384c2d96467702ab10cee7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1688 (337305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "dd942914c0624552bc7807c156e12e3b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1689 (337505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6e07b41dfe8e4cd2acb427aa323018f6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1690 (337705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "90cb14b95aad4e6bad7051619e3f8d6b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "50d4bdcade604c2a81991e695d89e7b3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1691 (337905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "04960bc2ccd5450fbb3d1172ea950778", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1692 (338105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b8dceb7e49754d099e282f75ab188355", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1693 (338305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "06b5dea9c1174109899e9836a92b95e4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1694 (338505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "89214bca71c04eaaad082a470680ae3f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1695 (338705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "fc0682f8d9c448478d5fe6ea8968fcf3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9d467f093dd6406386c96da1d6e6c40f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1696 (338905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a5a19630edf54d669572bc83e186ebe3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1697 (339105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "afd4ddb5075b44599a410cf2dc86b6f3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1698 (339305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "92da64c8f95549a6a5738f3b13d30769", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1699 (339505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "56d035da998c47ce9d7093191d015ea1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1700 (339705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5286786f3f6a41e4ab470de661426b4f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "37b5732af8504716ad08b5afe31b8292", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1701 (339905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2704e8a3f81a46879038e3d8830ed498", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1702 (340105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "93740fd585cc4ab18c4d7422615bd70f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1703 (340305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "683630283e184192baa52a08d08f3ccb", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1704 (340505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "61b032ebc1b940d6b2a0cde7eb7c7747", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1705 (340705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d5221b8e875a48a99c4fa780485027f2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "dea0a3124e4a4b469cd49906bccdb9e8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1706 (340905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b8416533fcce4ed48c763dbad945b42c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1707 (341105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8b8a912d0d444e5fb0a27f54d46e9917", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1708 (341305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "36130f0c18194b5a90443a907549dcf0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1709 (341505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0f551e6713324f1e90ad0e9b15c9d9cb", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1710 (341705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3e2abf2827944035ae62a57aa4c93164", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "80f77f9817e74fdb88b14fa8dca28702", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1711 (341905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "fc720f75144a4887a9125f66e2e75243", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1712 (342105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "bc8ab2c2b015460da209593ff41e6dc0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1713 (342305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "71d101f3823943c59e907f2cb2580e9a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1714 (342505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ef8d9aba5f954001bae8bfade080236f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1715 (342705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "425cb8e2e5534231bee333b1f58f2ec0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "dfae3142b9d247ceb76bd53adf753001", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1716 (342905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5d70d590a99c45508b7197a41fdf6b06", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1717 (343105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5f1b4f4b4fc04dabbee2afda331539f2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1718 (343305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b2b035febbe5471fb12eca84383f899d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1719 (343505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "eabe7d1015844e2ebf5b4c142aa57643", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1720 (343705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "63bebe014e364c719ff5dcbd3fa621f6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "279fd5f2031a4279ba81ded8a490c786", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1721 (343905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3c4db440d89a44a081472eead7cbc310", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1722 (344105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "baf2f717bc8f4707bef181ee45a96def", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1723 (344305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4fd9931e8b764b2daae581f3c40ec54b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1724 (344505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "80c095ffbfd648048ddb6e8bd100e2bb", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1725 (344705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0d97ae900a1745519c2e6b7072a0a6fd", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4b839595128b4e3c827bd191452c8967", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1726 (344905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "433df1fd1a094a0594a5c9fbd2614968", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1727 (345105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "894cb757080543ffb1b7acdb60c1fd6c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1728 (345305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "87a9905a7b5644f8ad2a868273e4c3c1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1729 (345505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a9cfac0de3ad425eac306048d557c49d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1730 (345705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0b7f5ec0949f443cb72603859dd4aa56", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cc29924099c94249a64d4ac5c4cf541e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1731 (345905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d28b9021737e49248560a2a3f1f5783a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1732 (346105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0e2381cf697b4a339c01aeaed5bf73ad", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1733 (346305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "03cf5ffbfc6e4428a3d22b6f532cd463", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1734 (346505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "460763a7aea14c84bb0b3feb8864604e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1735 (346705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8ced4270c7c34a18a7205ec5c467cb50", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8d8ece57327b4dfbbfdf8d86ca9a0ed1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1736 (346905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f2383dabdea54b91bd724b4c41814414", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1737 (347105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5474efeb93e341a3a34f3dfdff1eb141", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1738 (347305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "20b9b24c6e5c4043be68f217e577d275", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1739 (347505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3460b686353a4a5c8479e83c9ffe7504", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1740 (347705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9f7a185602ab4f648f7d5993e727e3bd", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9a6ea592d8de41129247a2a5959d0632", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1741 (347905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6b5454a7ff70411a998877b5a4f93bce", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1742 (348105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "621b51d4792b479886089c426032d594", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1743 (348305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "de42cf16938d4ee4afdc1fe7bb2719ed", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1744 (348505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "231ad0f0494446a783abe0e499ad3dc1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1745 (348705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d69d056f74b04873921910e92808feb4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a6e1262f3c384bc68051368f9460ceb6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1746 (348905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7854c2126b8e43a3acb3e34284f9046d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1747 (349105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b48951a7658241a9bb110c78315fb948", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1748 (349305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6773106de77045e1a12dc33eafd93e78", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1749 (349505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2f8b96de8b414c048ee512e7da2e8d3e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1750 (349705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "bbc1a62c0cba4f11bc14dcc8876837fa", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "73db8154f55d46d88098816ca85d101e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1751 (349905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "41e7f1b2d6864eeeb454d32992ce8d71", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1752 (350105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d82b2d0308a448c0b1aae45277f82a3d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1753 (350305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ed331f33e06b456784b1358509e2db7d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1754 (350505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0c425e9ac52f483ba12b9637be4776f8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1755 (350705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5516621666c44e868cb14ed2e8f2fd9d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c5f93e8cca914660b8bc5bd033618204", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1756 (350905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "dc43f60ecbe9452f96c546d3428027d2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1757 (351105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4a406d3d10054b84a41aa90a9d3d9b21", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1758 (351305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0a180a9d6d7b45e7a52d21e00c39234a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1759 (351505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "30c23cb5e356478aba8e764defe2e912", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1760 (351705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "aad2d058a8054ca3bf9b66840a7b8fa6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "05d82a73b9104acb81a33ba85f73dcea", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1761 (351905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "11a52254351740b383cea1d0162e137c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1762 (352105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "af02fc0ea34843f9b55f968b95d20468", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1763 (352305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "547afb344c4542bf81d23881df2594d9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1764 (352505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "bcd863e778b54acd96fc1c08963950b0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1765 (352705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "134f6ee75928448299121455a9f9bfe1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b112974844b844b7bbc9a041ad6c4a3a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1766 (352905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a77eccf4fee94b19afc401f6e7624837", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1767 (353105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "41129e76f1754267a1af66dcdc71fc90", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1768 (353305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5a902f1365ee4479ac87db49cd4dacf9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1769 (353505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a532c1c101b149f0a40a44365b2af4ea", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1770 (353705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "dcb12f16a5024bf3b0ab9170b26addba", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "dd0d7d0017a6461bbe67da6db6cb00df", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1771 (353905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "791c44e89dd14e72beeea790548ea18c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1772 (354105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "68a29abc8ea749b481a030f263fdb5b5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1773 (354305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "91b4f616b05a45b3945028a0079c77c7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1774 (354505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6bf428156b6b4d61a7fededfedba8aec", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1775 (354705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "62016c5eb1294706a177c57e392bf6ae", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cc8d456f5c634f99b2e64057f31f20bc", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1776 (354905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "bee85e1cac4e4a57864c2796f0a14575", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1777 (355105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "65b6a3df938b47d191e1930ec5788ed4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1778 (355305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8e7fa35eff72458fbd326e6a2f8b2258", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1779 (355505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5ee159d70f854f2a99538b6bec396ce3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1780 (355705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "952d0435c596434faf8db370dab4dada", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7329075328614fd79b429e814509c72d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1781 (355905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6842bb4b7fcf4330bd371216d58e42d7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1782 (356105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "752aff00c43541029bbd8d13fd784561", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1783 (356305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "81c5d1bcd5f54d178fd85ae8b0bbb369", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1784 (356505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b29da1675915472daf6d051a323693ee", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1785 (356705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2b3ff06883c64657a4c6c723cb2e021d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b0ad6efd4308404ea149cc4285bcd670", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1786 (356905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1830fc956fc94008acceded2713b3b92", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1787 (357105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5b616bd6a7d64b5283df5943e4f70df7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1788 (357305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e974958a00f04f868270d1db7040cb9d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1789 (357505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "16a09d25f2394f30a717bf7bf115b4a8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1790 (357705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6a8d80152c4040f180fdb1b15c4d84aa", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "49781966e5664cc9b9fa536aaf093db4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1791 (357905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d6e88ee3c547499592b540f997b99e0f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1792 (358105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b28cb1f763dd4eb199db28e1ee156aff", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1793 (358305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "154f2b7415634363b84cd9be05d4eab7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1794 (358505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "af5cfd4df23447428f9f5c6f3cf35bda", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1795 (358705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "149d535aae964be681682d0b23bb9079", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "12b12a743937487a8be5cb7aa479aa42", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1796 (358905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "246dd09d0b2f473386d573fcac693ca4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1797 (359105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "073bfae045fe4c6e978b3c33925edbe7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1798 (359305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7ffbbbd376bd4c189d89d6af3202a6f5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1799 (359505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "bc0c5d5079784ca3996f56acd5df2676", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1800 (359705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ff8f8d84a6c74eda8a25159ffb270d1c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "be32151672e64a89bfdc303950641932", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1801 (359905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a5333e41e55a4d24bda97dbef5e3b3ba", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1802 (360105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "476aca6ad09844e6b0391466bf08f89e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1803 (360305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6251dacc8a3042c4acfc19fd16d57713", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1804 (360505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8d16bc3d7d044f36b82d9042b4d9e035", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1805 (360705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "34379f8269ee4dfc8cc8c1a10f16647a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2ea5b93a314749619a3ee3c4bcf23f2e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1806 (360905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2c4e54b0a3964ea5ace9fac1314860a0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1807 (361105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7fadfbe2ab1d438583a31a90c6469d46", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1808 (361305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "eaa11f6025504e6fae14a43bfdeead9d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1809 (361505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "acaa587859d4480faee814003be9acda", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1810 (361705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f0c3e56cd2534167801767a7c1f7248b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ec7c083bcb6e4fe2be85c4a98fc5b255", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1811 (361905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "37d9bf77704e4919bdd9ca9de73c0a98", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1812 (362105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "702f8f93f79642a88631835485716a30", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1813 (362305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "095b78adf82b4dd793354c673229b2c6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1814 (362505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "32a40727608b48a38a1f1546e35740fa", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1815 (362705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "57910fdfce534d4c8d922900d7392b7e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b913aff02afd490d9919c3114015d284", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1816 (362905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "819e9d47aa3b43dca95c645d8f2548ef", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1817 (363105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b1b63f624e9644d9a98c3b01da45261f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1818 (363305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c704e12fa7134b399b93ac1b3cdd7918", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1819 (363505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e06bfacc40c846a3ad0e80b090bdf648", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1820 (363705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "00e576cc1b8045c2b91078a4e7e8ef7e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "343c68d025494535aa89b61ae02d4438", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1821 (363905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e39409ffac13441daa8ac792d0e209fb", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1822 (364105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "de3b0de8e888495aa1890fc828241075", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1823 (364305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6f624aa21e2e4cde9e40fac83ff85d8b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1824 (364505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "58b543343c834016a5d92964ae180bfc", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1825 (364705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0b01ff2f97814cf5a1a721dfbb497c5a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2ae964a3103d4568a5147f3e3b785a20", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1826 (364905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f7153530a4bb4babaf5f1f8daf53bc06", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1827 (365105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7064448f127b442d92ab47efa681cbab", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1828 (365305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "73fceb0635e74e66aab110d889e5c646", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1829 (365505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "db3d44769e774be9aec2623ea6b5bf5d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1830 (365705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "81d66e2f9ba245419e7ef2ddf27e9cf2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7c81fa5a77644ff4a0769a50ec8ad678", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1831 (365905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "911e4d35459945999eed94c109a0a6fc", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1832 (366105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7f91e65e662449ee8b74dce8d2396ad2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1833 (366305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "89e6810440ac45a9a8d8ad18aceb9c6a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1834 (366505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6f953281ce8a4334b3174d69df2701e3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1835 (366705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a594d2178c83450b8abdce116c35c1a7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "78936322a51541c3847932d23753ec32", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1836 (366905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f0ed72bb8bdd4c578261617ceaaae409", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1837 (367105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1a0dd68ebc1e450c9fbffc00a10386a9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1838 (367305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3eb5ae6679d04bd39db676a78ee659b3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1839 (367505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "485d598642024b9a8f2fd88d42e185f8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1840 (367705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "37a391e2f00742c2b6a7f0863b77ced7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0151ba1c7794405e95362082e9efaa72", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1841 (367905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3a7d4fce743149c2b96829a3a977489f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1842 (368105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a9569dc1605e4d4082aea8a05fdfc35b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1843 (368305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2793af5b3b084462b6c2eb08e7aefbc9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1844 (368505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "98edb64452f6467b99f44860d8e1c068", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1845 (368705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b78cc760076e428f833baa847644f97b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "188fb1f415534889be4f0839443471cb", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1846 (368905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d1f0b65352714598b2bcdbef3abd57be", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1847 (369105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c6c56f1ea85146d0b606755400a7b701", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1848 (369305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "961eb54ed76641cb929ae8a6a8fbc0d9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1849 (369505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "02a2491bdd0640d186e2504f5cc8bc2c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1850 (369705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "83c278f707b748e69f35acfc7609dee2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "32ad9262c6d94f4aae7a7e857c3f449a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1851 (369905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "455ce4ea6aa5454c8401c2235b535665", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1852 (370105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7d8398ed1eed4da3bf28b2b6942dff95", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1853 (370305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4ea41c5d97594f38b671eb02784c49c3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1854 (370505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "87564ed107ec4b599de68c9b20b71971", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1855 (370705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "238c8d4d1e2b4329baba6b98cad9d927", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "92536d37874c48f485d893b03e02d767", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1856 (370905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "79f5295a03bb4beeaa66cf01387c889f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1857 (371105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b86d371af31143eb84fea6b142abf54b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1858 (371305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6f7999515b3944c69eba8c84b319287a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1859 (371505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "aa1dc1b493be4618b84aaaec7d572bd0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1860 (371705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "edffa35345b342049a2cbccd084a3d71", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5146733c08d842d9a17434620d4fecb3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1861 (371905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f3ed9ad8658c460a920c16f90040e3d7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1862 (372105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "520d422797ce4881988f9818820a9e5b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1863 (372305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6d16659e9aed4b78ae197cbb93c34a13", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1864 (372505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a8e957734ae244ad93308f23f7f4e2e7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1865 (372705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e15723e8f2b7463fbb5489cd5e0a8831", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "304d459509754afeb177487ccd3751b5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1866 (372905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1cc66e823cc44dceb11c7104fc6cf94f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1867 (373105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "eb8de6a4a9004702abb43c4b4f52891d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1868 (373305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ce7af0dfd95b40e7a28a9eed81c3376a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1869 (373505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "281d33671ffd47219d586f338cb5553c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1870 (373705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8da640964a0f486ba051f72b24d198dd", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "dcff30b07603459e9a3164b9e4520980", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1871 (373905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0cf8bc9debd6472c9c2efc9b1027ff70", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1872 (374105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "46075b7fec384413a98ce80db3658710", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1873 (374305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "abec2e748452404d8024374a2061c274", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1874 (374505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9d2d36c052c34c1b8fd521c373df2ccf", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1875 (374705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8412842ce6344af4ba29e41210deb5c2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e24c06416b9145e79888038ee5026e11", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1876 (374905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1de02e7a951942e7999c856b9d39fefa", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1877 (375105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3a9ff27fea974a8fbe07d8a39b6d14d8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1878 (375305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "970fc94dd9cb434f96da20bd3117d60c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1879 (375505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "dc84d2c5a03c40a69990a9a3cdbac931", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1880 (375705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "25b04b7ecc214af4a1ed69805f8edb58", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a56e1269096d4bf391ba9a80e41a2132", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1881 (375905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ae23b4b27ec3410aa5ed9d21206fdd37", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1882 (376105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c7c616f667954be38f2776c1bcc69054", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1883 (376305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5a70cfe57a1c48d4883ea4a04ffaf356", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1884 (376505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e1e720c67e5d488c81fcf5454e5dc3dc", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1885 (376705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7442891248cd45d3af1f6d242d145569", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "869acdc3ec774c81a7f8c669f9418436", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1886 (376905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0f60ec2086aa42a58b33f45ad2bbb7c3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1887 (377105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "57b77569485943afb22dc47c50ed5254", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1888 (377305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "af001d4ddc5842b7969df99b2264691b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1889 (377505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f3d15b0de64d4d2986f044be943b433c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1890 (377705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d85a003ecc474bf28ef595bd7b4bca6d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "865551352b1b41d4a353310c8072e5f4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1891 (377905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2a49625170d54dcdaaeceec8f26722d5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1892 (378105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "972e51cf93f345a7af297b093eb63a83", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1893 (378305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3434b33f802d4ac1986d96713c25dfd9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1894 (378505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9382a5381bbd4154bc61d3dd5cecd1a5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1895 (378705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7dd6427838cf4c3e9236e4c6cc0d030f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "820cf7e2918243788644ad25d58f0de5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1896 (378905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2d9404c297b44e15985c91791710b7aa", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1897 (379105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "60131f000b4040c19297c3d08fe31ce0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1898 (379305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "feafa87e761349719ffc42c862daf686", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1899 (379505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8e4d0b9202ec49a492078b59348c8891", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1900 (379705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "93eaa320445f4f82b7741f97bb97be83", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7daba2a195e949638a9360ab04656292", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1901 (379905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "139c82b8b1e449bab1cd741d0ca954dd", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1902 (380105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ee686c17250640d2a36154d3ccce8aff", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1903 (380305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6960d69fad7b4df2bacfdde29cbdf867", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1904 (380505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8e8adf74a9e24c92bc336c4f005c7104", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1905 (380705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "31cf1b04b93746b6a553307986092bb8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2104148e8e5541f0b65385cf0faec66d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1906 (380905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "477ed97bff1748e4b672592888782061", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1907 (381105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3a7c67c6c49a4dfc8ddfe185e337af65", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1908 (381305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c430648ad4904251aedcc10a5cc28202", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1909 (381505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "560a440ac3c34a8fb2af9843bb34e70d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1910 (381705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5e948150da144ea6a23dc56f30b7d7fa", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "905b77c87eb64e80832eba9804f16330", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1911 (381905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d76dd1b8479545dd94f0357f7a941f05", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1912 (382105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d37574a117514b4aa340b51a8c61cdbb", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1913 (382305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2d007cbee65b484cad628e9e8e7892dc", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1914 (382505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7cfa5508a9bf499098f8ea71d7bd6084", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1915 (382705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e83c4b2519a14c089a40f587a9c8cd6e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b95e22a2c965417abf8edeaacef46179", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1916 (382905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c6843621db5d449dbdf9cbb3b157e5c1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1917 (383105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "18998784a8064e36aea7b2d2e1b9d3c8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1918 (383305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cc07775ca3294f80a32982d9717855ff", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1919 (383505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c4813f648ecb4fa39bf1d4fe59a43d15", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1920 (383705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e7b32d8fa9a941f58e203700bb3cb448", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "bee9cf0063184d04895a702bf3d11983", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1921 (383905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "25882654425848bc9e9526234c80a7aa", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1922 (384105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e971d8e01cc64c48a1e9b628210d6f8f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1923 (384305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e81d0dede93c44e6b89ec01e947ab3b3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1924 (384505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "06ed38f5bbbf497abfdfdeea00bfcca2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1925 (384705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2504676b0d80400ab59b5a306a9d04c7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e03e9e041e7e4ca8956b409c6e3b0303", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1926 (384905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cac720b18e0246a1b785423566d726ec", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1927 (385105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5884d902dcdd47ad850fba859caae4ae", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1928 (385305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e3efa22a1b64445b9137790d9f2f53ca", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1929 (385505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1e3fe28550884baa9c057a0517e44631", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1930 (385705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4e384ca34ef1408db2a9733077879ac7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e0ac7d9f030d4eafb7edd46f2dbbe1ed", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1931 (385905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1df6244814bf4bd781ce5d7a37b6588e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1932 (386105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "51a3d9b934fb46f2abe99a0fa328c3c6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1933 (386305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a473bf2695304dd1ad73b82633ef99c5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1934 (386505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "84445b9b61004aa0b1607d5c151b3522", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1935 (386705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "fcaef92c41ae430f8ca4fba97d788f2c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c79698d3483c43e0b85f65e75c8dba02", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1936 (386905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "20b9396911474466acd0defbc1b93ef6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1937 (387105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6eceb505a51d469084b39683069c3606", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1938 (387305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7aa40bc431674091892f3c0fe3abadc7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1939 (387505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4c1e4ca27e8b4bd290aedecefc21fb9c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1940 (387705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2e1fb07b2c6a456c9a317ca7835d6ff9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "61bada00e34c4b3e9ac01760374c3283", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1941 (387905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a5cc31f3e52b403b81aca43c5de427b9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1942 (388105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "44137cde5bca4adf8e4f8ae49e3fc802", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1943 (388305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d855113aeadb4b1aa175cc95c54cd473", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1944 (388505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3d610abdc40846a7aa630a018e19748c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1945 (388705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e72c9884f71049f7ac696dfd7c939c8c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "fa1c86a6d2f246cfb657843590e9eae4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1946 (388905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "05c54d29c5e1482caa45f1d955517426", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1947 (389105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "112361b1479245cc8362f88237d4593f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1948 (389305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "36c97ca69b164cbcbfbbe8064f5a01e9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1949 (389505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a007d4839b214f728573cd936f7aba76", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1950 (389705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "dea3ef3b98df41ae9b2ba34eefcdfbc0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b3a13ec843df48f4b0cfbb54e83156a9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1951 (389905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "68aacf8bc6c84261ba8cfa6293aa91c7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1952 (390105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "46f20f3028f446a1bd980b7899764cb4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1953 (390305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c6bf330257174c08b3bf72e463b0b772", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1954 (390505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "681d63fd3d404ee5b988f9f3b7930054", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1955 (390705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "bf110ae1d6f0491a84476696e3aabd4e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "374ef20177244710ae92b60682fabda0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1956 (390905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c4e670c16e3f4edc90b7b2c1c6831a7b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1957 (391105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4e6964b31f07468db176dcc7fa8531eb", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1958 (391305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2500abe8d9454f8dabf97bbc41247200", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1959 (391505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7f9b1eda5e4b4ded864becb00e66702a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1960 (391705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "78f2449954ae4d18aa86c473ab6bb104", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ca024d01d27b4a7aa9cba65479f692d7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1961 (391905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "38edbe4e178e4b78b80f0927e5cf9b9a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1962 (392105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4996cc1e70ad4b0698021d5bcbe58e4a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1963 (392305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f053e0d1d12d4ee296a15ccc0d479703", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1964 (392505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ab5bd5d742554d41a2d6af5ce001c850", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1965 (392705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "636ee0bf717448d4b8df159cdbf9319f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ed88ae46ecd2431b9ea5a1b769f7558d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1966 (392905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3c2ad97f62e342d598fd5c3c765f396a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1967 (393105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5d1e42adf1c94f8890bc17bf90a3b462", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1968 (393305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a747d82346aa4132ae965166187a1f41", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1969 (393505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5c0eba6b46244af6959b14ffb4cc6563", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1970 (393705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "04dad0e38e79465ba29502c7b1439ac7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e0d92a9d33534277aafde710c7b8fcaf", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1971 (393905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ea4a1af7c7ff446b9326684cd2f9ebbd", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1972 (394105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7574078b266e450097f5a27f6ae042a0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1973 (394305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "74cbae12b880453f8f26a5d48ec0bab7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1974 (394505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "babb27f04f9541008784b7c42f970349", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1975 (394705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1f575fadc42343109611dbb933824013", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "98b84f19283548cbab82731c1428d0ed", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1976 (394905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "af21f5422b0a44d081fd3ceb069fd0d2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1977 (395105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "52dffc72474c46848a4b9eef15b4b6ce", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1978 (395305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8c129024b361424e88cd0371033eb32a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1979 (395505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d6c0521b3427456c93862e0bc986a0d6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1980 (395705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "27d7fd92e4e24ddea79e2fc2b4fd7003", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cda6e1c53a67473d8aee665805b653cf", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1981 (395905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1c6ead402f624ff2ba526a2e6e4b14b2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1982 (396105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "84a116081b0f4cc69e752f6765063af0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1983 (396305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f23c5b4a52724edfa2b65054e5843897", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1984 (396505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "894be8732f0a4f88a4366958c8596bf4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1985 (396705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "bf96be06f1d5426cbb9cb41889b9dc75", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ce31e065359b4e42a9215900cfdffea4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1986 (396905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "fe86775e9633411081fd54bb5bd727c3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1987 (397105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "047bdcdbf79d48059c98412770cd548b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1988 (397305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b71aaab259664bd0a8672a17175e9539", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1989 (397505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f55ccbbf8b694cd4ae9f543810fd42a3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1990 (397705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8da0670c6ab24ed29c2fa8a8fac84a0e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0f0cc76d2b7e45f988d74c30b6f17443", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1991 (397905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b76559febcfe4572bb405edcf3b4f3f2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1992 (398105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "efc8cfa59d9349f98805963fed274be1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1993 (398305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "31248dcee331487fb4dcf89635e3db40", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1994 (398505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "60da3ac85c9641aeba449d38d453e678", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1995 (398705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c4b708d4ee9d457885709463322d1acb", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "541eb20fe2cb4c8f80209bf97d853693", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 1996 (398905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e137e1cefbfa4bdb8788d0a24a98b7fb", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1997 (399105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "37e0794a797e41219208c3faf3e29f84", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1998 (399305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8da3383ab7924cddbc0670cdda24bb5d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 1999 (399505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cb7e12abaf5142bfb90b8e5ba8efaaf6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2000 (399705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "407ffa99bdc845f788e21300bf1381a6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "94d28317a1574311814bbbd6cef25267", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2001 (399905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "340f532fb53d466da79801220a118918", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2002 (400105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0bf12ff8276747c286d445bf2e327751", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2003 (400305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "49c2fc79f8064f0fbba0a199fd685306", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2004 (400505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5f61b00c9fdb46f1a8385c7464e5be00", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2005 (400705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "232aca5ee7124083b148577a61687546", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2985249d888841cfa25224d82edfbd8d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2006 (400905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ff8bee87a1e84f3b9e45822ad04d1695", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2007 (401105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6b9bca29ff724d0a84382f74f8dcbeef", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2008 (401305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5bbbc10af0c94e12bab97c8f3aa9dca7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2009 (401505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a5e32047a39d4acaa9f08b4def702dfb", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2010 (401705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b5a588a3da70435caf978f230a3440a1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "73c8cc97f3554b5babf2dd370e504e24", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2011 (401905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "44d082f5a6334cffb0d2a64bf8d62ae5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2012 (402105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "05cc8f2f25e24e09912b4426af5af692", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2013 (402305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f17039657bdc4f9b82dd7c9b554635f7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2014 (402505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5c43c55da662460ea3c094dbbf4f14e2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2015 (402705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cb4dfa455af446a2b7415289fc3f0b41", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4391d74dc51c4801821b1a933d4f48d2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2016 (402905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "30082b86ea454b07b513efa791a5c349", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2017 (403105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f87246ae9c00411da031e7957d296756", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2018 (403305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "25e3d857ef444efdb78a6969c5270eaa", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2019 (403505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "972c15d95e86494e844ab434a5185de4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2020 (403705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3bdbb5712b044e7aadeba883a25f291d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "885a8439c1314502a53e14a0e4e6cab7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2021 (403905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a647e0f1137b46fd9e4f305be658bf4a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2022 (404105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "58940f984c4a470f8c5ce6a8cbc1a14b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2023 (404305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7a19a578e6564afcb4f8d0c55eca9454", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2024 (404505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "eca6964ba7af4ab686e59afaee28523b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2025 (404705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ff165a87bc8045c09f86419462efab8c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "33acd5e91368400fb6c7654a84816b7d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2026 (404905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "853e6856765f4a1b8c7d53242439147f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2027 (405105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6b230f391cc144fe8e49dff37c6f5cd3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2028 (405305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a4efe080084d4323a90b09b4eb7cc722", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2029 (405505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9f648e384dc54664b3474280b2821249", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2030 (405705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5b7321174ae945f88bdf5c43ef1d447e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1279ddc44da24655ac2a2f9c4f7d8676", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2031 (405905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3f291ea4ff854089b4aa5e203f228b22", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2032 (406105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6030ed17fe894fcfad20d9d58fdb5167", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2033 (406305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "be78d9cfa0dc4b29a9fe8cdbf86cfbcb", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2034 (406505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6bab34a461e0466a83aae5532b596dbd", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2035 (406705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "78f1396a22934245bb04fe57011aae10", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "51c49ed25ce04133b560d236922d38fe", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2036 (406905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "61adc02593cc4743974cfef6ab1d7c44", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2037 (407105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8bab3d038b904c60a9b3a3bb2ba544d1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2038 (407305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "03d2b69ee2ca480ba02cd7cece361651", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2039 (407505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "fa1a73c487d94dd584130d65eb74560a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2040 (407705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "64c4f3a7f11141908ddb41eb7a6e3c15", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5b4c70bbddf64b33bffe0c70fc805f45", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2041 (407905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4747d5852b574493bf6b65b8250974a9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2042 (408105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5c8a22cfc76243f29aad3f67797c3e47", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2043 (408305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ba2fcef2bd974e3b8c60d0a030866879", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2044 (408505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3bd79a679ce246da887e9bfbf460f286", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2045 (408705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e6f0678a940e47f0aea3e46a1ea6d37a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e41e8c5446a54902bb507ff9c199a0c9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2046 (408905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6fa252d1073e45ce9f83570167a101ba", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2047 (409105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3b5557df8a8e48fab75486b097a5e92a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2048 (409305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7258c75013dc40d399ec28e486a4293e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2049 (409505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "760ebd8103804f219b98e2b62b960cf3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2050 (409705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1ea58dbb3edd49c58a088c6bb06a92c9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "29899f6208c749dc8a6f3b6eb10dc7c8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2051 (409905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2e4fa456ec6b47de8820a2643dc81b92", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2052 (410105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c214c49a0bb0444f86b34211475eab64", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2053 (410305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8cd7392bcb36446dac5570bf66ecd295", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2054 (410505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f680872f287544f3a326e86ac76bc32a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2055 (410705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b98c6df350dd4a4d80f118c203d20b2c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "771240de914d4925809a5d71b7b57fb6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2056 (410905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "30212f82287c445fa3a725d3ce4652b3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2057 (411105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8f4cd0bf58f247e7838b395595ab84d4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2058 (411305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e322e0940429492390d39718565b8cbd", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2059 (411505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4ae6a7f2ba2e4309aef8a711edcd19e4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2060 (411705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e2e066b7591f42cd9ce1833488fdac88", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d78bb4ca7ec5468f848da7c7c07c5e13", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2061 (411905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3bdb53584b1443bfb24c55c68474d02d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2062 (412105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b7e9fd7d57d047b282f342a42a035bfc", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2063 (412305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3505f7a62b98440aba6087b3a67bd2b2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2064 (412505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1a36a4b64610420da2f6010553e2bb1d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2065 (412705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9eb18bc27a194f3b97ffc07cacb58d10", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "56ce542688f6440fa797b6434faa12e3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2066 (412905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "aaa3b78182b443d1b9f5297c9a9b829d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2067 (413105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7736c47f000945efa55bbc4d51ce52e1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2068 (413305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "614c6ea41ac1419699fed9107f5ec3f4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2069 (413505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cedadaa0549d446aaba1b1474ed3562d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2070 (413705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6cda3ebf7abf4fa5aaf023961bd5f01d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "309a0a544d0747f5b5ad7e396d45492a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2071 (413905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "45ee6819429741ddb79ee802f99e5ca3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2072 (414105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "458a7cfa4623408abc42b1fc4ee19885", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2073 (414305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b7a393cb6e2a49868708b2a7cd9dec83", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2074 (414505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "aff8fe5d1ba64839b98c2b307d017493", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2075 (414705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c087391bcbb1417ab9208e89cb9c2fea", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cc328c41b77949a29046a7cfb2a06517", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2076 (414905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d850fa5385d44b3fb5f9c7524deb00f8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2077 (415105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "92a343c105ac4a4ab6b5ea55b640562b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2078 (415305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0a2fe45f7f0b4c838a613fa49f48d998", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2079 (415505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d34a1c32c97c472c95738e7d535ed4fa", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2080 (415705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "54dd63f24bec486093962f423ca842b5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8c2d5160be52450bb828b0516fdd737c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2081 (415905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "fc7fdc0fe166431cacef9ca26e79c445", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2082 (416105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "10e1e583cad84945b2e864c1567227d5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2083 (416305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "979675298ffb4e7b8e5cbaa65bf54fec", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2084 (416505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f49b439445d0492e912ce091f71c098a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2085 (416705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "980f89ed8b0440ac8c18468f7e27c6f1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "526ae75c8d5740e88da3f56af6af648b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2086 (416905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ef070f16c9ee4cad94517c66eb3771b4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2087 (417105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f9de8a74b4ac4eca8727d99da241cbaa", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2088 (417305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "dd62a54e413e44ee9879c6317714606e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2089 (417505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "43a66c0301d4414fb334ade5d9cc8fe7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2090 (417705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "14554a18fc4b4daea4ff35e00dd1dc22", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9df96d6b9daf4341bcc5e0e03917aeef", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2091 (417905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "52f0d651fcaa4f76831f7b1c1134fe42", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2092 (418105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "638ec5f0c2944b3ea6012daad1ce7f41", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2093 (418305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1903dca2d40144a1a04f468215fac756", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2094 (418505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "52b58a11e6fa4118a5d600a226c6294f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2095 (418705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "bb3d15f6981643eaa5e025a7b685f08f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "326c305c3651476caaefe07ecf34adc6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2096 (418905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1a734e18ba71463ea5d1d03fb80e88c5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2097 (419105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b3ddca82fdc6414c8aefcaa98f3b776f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2098 (419305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b1c2ca350dac4a0a8f8723aafb71846b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2099 (419505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "df9e4df8a5fd4779bc017c71ec27743f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2100 (419705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d69218f9b9074468bbb1f528ed43db69", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "17d6f70bd1284195bcd0d7cb13568380", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2101 (419905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "29c47ce049884ac2acc4e532014ae0cd", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2102 (420105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "dfee673a3489437299f34c777ae0fbb7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2103 (420305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "460c79946e224bc080c1d9ac1d9bfc7f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2104 (420505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "134a5ebe159345dc9dbc4ecd4b19b233", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2105 (420705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5d06da39b26b4d3fb19c138d819b83d8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "bf061423616e4dc9b30dfd12b3fe5bae", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2106 (420905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "52c7b82321ec4e4884e389767a7572bf", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2107 (421105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4db1622e7a124d9e9f8695bc9181218a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2108 (421305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d2cfc763caea4a389f988cec6a09983a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2109 (421505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "68d489af85ab4bac8c9c1a2b56dabe31", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2110 (421705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2c75be41e432472d9e676cacc56f737f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "43d2ec7b6ca845a89ba06c50bfa24bb6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2111 (421905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a2ec0d648e5e4c9f943716d21536c26d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2112 (422105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9dc273789aad418cace93c85849f7899", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2113 (422305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3f0fed369d6a49e48691ae655793688e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2114 (422505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5821c2dcfca14fb19484e9269bbaad48", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2115 (422705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0ca7e788f90d44d4895b1e82a00967e4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "64f03b689a044674a81c5e8b0657151a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2116 (422905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0c4fad2e23c54e75873076b53787a547", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2117 (423105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4f49aeeec5c84fffa1c359b3f11a12ae", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2118 (423305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7ecc290903404835b1b6d87124883035", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2119 (423505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9c8b7f81b3bc4ae2bd93ce4278e82855", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2120 (423705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8396fb3189f149ea95969083bfde12c3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a8b4d3cc1d3d4c009de9d2be31069d5f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2121 (423905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8b6d66a0102347019fa9dd574a8d9ec9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2122 (424105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8504f8f482ba48138c4383f5dfe21a93", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2123 (424305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3283baa0430e44b685eb09f6cf35359c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2124 (424505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "21999a8679e64221a66f1228cb1eb209", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2125 (424705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "573c50faeae1424392f0d9412b942843", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cf1e12f0fd1249ba8fb176ffe686c68f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2126 (424905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d5db91cd119d42ff806417ef80318731", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2127 (425105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "69a54a97f23d4eb98a8e94bb863508c0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2128 (425305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2c002f54405d4549befaee22cf292592", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2129 (425505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "347402f584134a60aafb9f65d2283f14", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2130 (425705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "25b52d92959e4aeca223a5edc12453ad", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "70312c11f9554092bf9311e73e238766", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2131 (425905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0ec0900eae6b44928cd8e2014456d67c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2132 (426105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1315d348afe64a96b937446c48ffc62f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2133 (426305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8fbdc42d462b404da02d38f53c411015", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2134 (426505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5ba7fe06f48641de8daadd2cc97ae05b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2135 (426705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "bfee5c3ac70a49298f9fd965d50dec65", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "bdf703c694694e608b6c836f11f28002", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2136 (426905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "00a6cf154a5043f0b88b89b0f0b4ed61", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2137 (427105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cfcc9d13dfc34fd8866c81508e1487c6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2138 (427305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "44fb970b1a6b43a388eb135bfeaead47", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2139 (427505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "221f6e6d76f44265b2c06f47831dec19", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2140 (427705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4602886f196e46c7a15e745d8fec7262", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0f38c97588d34d48b19da534565e5232", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2141 (427905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7802df1dae054d2eac38244f4b897cf7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2142 (428105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ded3f9f1ec824aff8cf8047c16f4e181", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2143 (428305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b64c5374b83e492abc34a18e06a04812", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2144 (428505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "18848f1cfd5e40f1a2e7d4b7d8097971", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2145 (428705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8830384150d0483cb675d5c58298a2a8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2fdaad848d9047eb81e319fa5e828e1f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2146 (428905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a4d55af54e7f401a829a6e71eef0446f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2147 (429105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "fb5e2c017a544639931af4f33226b2db", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2148 (429305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "39dd3058c2e047ee9dbb833592afecdc", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2149 (429505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d0631e234c6a4abb94399a5ddf7de27c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2150 (429705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8db305be8f6c476ab2eb6b041a3ef556", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cc7d9de5e4fa41dbbd7cb3d2f08cd94e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2151 (429905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "99dc026564de434aa8e9fd3b14efc60b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2152 (430105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "93960f460e74458e9630a78a5b90439e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2153 (430305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "27fc338cc6424bf9816bf8c40d10c7f4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2154 (430505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7ac19bef403b4687b7409b84f95f2ac9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2155 (430705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "90321ab3bfbd4185aa391c49003e8187", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "05298a836581419d9f8acdfdef657960", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2156 (430905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "081a4581d5994f0cafd6fa198855e3bc", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2157 (431105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0c2489771479483b8b465e4e94dca0d9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2158 (431305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b641103be94645f0962d5a280a3d99e0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2159 (431505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d7a95482d67b4c4bafd2a9a1dfa852e9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2160 (431705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f3c93218caaf42acb70852ef0862b8f9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a44ef872c669450b9cb6d9ae019f9b73", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2161 (431905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f8bf7e00962941ebbde145282613d05f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2162 (432105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a02c2fa2cde744e886ddb55e7d344696", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2163 (432305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7b660bd23f0b42eb987aa13f3490a87f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2164 (432505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b8c0cf413c1341e092ffc5c628572796", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2165 (432705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "09c656e9571041a29ed018369f83387a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "92a1d673eb6c44f4ae0527e787e1c1f4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2166 (432905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "251c17f88ea34943a14147bc2922b8ed", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2167 (433105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "627437b5e7e2444a95a8bc08b3a5cb9f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2168 (433305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ecb2769402654a29a7155e60ccb2af00", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2169 (433505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "285b7bd756c54c54b27ae0e29c2da1a7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2170 (433705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "672169f31cb540d89f2a2619a3838eae", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "018649b11a1e4289bb0ac50b7d41c507", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2171 (433905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a303e1181fec4cf591ecbf3ed95551f3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2172 (434105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "aa910e9750e84534bc9ffabc1f9ccf44", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2173 (434305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ca95fb06699c48adb9e342a3814af15e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2174 (434505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ef1980e05dcc41f1b6a55c4d830073f2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2175 (434705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4eb8c083f8f94be8b36ae0f89e7fd1e8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7af1f390c6c54844a980b5302e33bc14", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2176 (434905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ef9412f90d634272a80da106d1f087d6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2177 (435105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "805f7b1537f343dca5172d8e92a58349", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2178 (435305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "fb3eb8eb18154a53a48b79ad95e18e80", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2179 (435505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c525b70794354cd1bcc936794413f52b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2180 (435705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8889b8af3a634919b3af6caac5109047", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f6f6e21c6abd47d399a3d7199ac5760f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2181 (435905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2db51a57d593499093ae8f088194ac8d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2182 (436105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f4c66ed2767e49c78932649d76b19ca8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2183 (436305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a6ed8d20c3d54fe2b431ef2271f601d9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2184 (436505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "48abce56511f4108a9a926dfa36a71bb", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2185 (436705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b321b98257e94ab5ade9a1f6b711d3c5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "25f076c515534de99526c9e7286b2327", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2186 (436905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "bc961ca2a39c42658b9103ad8e37bff9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2187 (437105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "59761b2f7f904807b9d41b014c4feedc", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2188 (437305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "36d335d032474988acb9e65ae93efd54", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2189 (437505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "14adc8f0d6ef4a7799af612f5b29b050", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2190 (437705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "191536223e6549db8d97e3e2f5c3487f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "bbd66f7fc9c44780abe256f6681c14b0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2191 (437905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e74e64d7e0384b87a370815aafffc27e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2192 (438105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "bc5190612b2140e9bf0e07a9a0f7de97", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2193 (438305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "dcebb6299a244b56b7194e10f686a4bf", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2194 (438505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "66616c7b66c646e29f2372c2dc03244e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2195 (438705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "194399f4403b4aaa8766c56e5472dd25", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "97812d05a66d4087abb5803182cc83f0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2196 (438905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7920437759b64075ba498247e8034969", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2197 (439105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e63690dd469f4106ac490e1ef252c599", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2198 (439305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c08844425c044f3f8acb5b60013a0160", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2199 (439505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6381849517a243cb9d4705a7441b3088", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2200 (439705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7c5d0ffce0b049ec8c189a67b17c900c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "859e4b860ac2403f9861426cebf556d3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2201 (439905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b81812dacd7f4856a64057ed76c3b27d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2202 (440105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8f682851500347b181d3e2a8153df885", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2203 (440305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4ba5e6243a234e8c85b541ade17ae783", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2204 (440505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a7b6fdcbdc644a49813dd5f9d8f4059f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2205 (440705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ffeffb881a5b42e8ac7e4135b8b273dd", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "98e3a0ad04694d31b97a3cb12c5589b4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2206 (440905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "aa906323ce4240b8b8cb560c51b82130", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2207 (441105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "21c4ff7b8ddc4e17a4a49ae54e15e053", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2208 (441305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d2212fe470824333bae8d1fb9fe6fe64", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2209 (441505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5abb857474ac42979f6b89ff1aa113cb", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2210 (441705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "224621e746bf47bcbe91bb68cd9bf191", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cdea5cb6d15f49e6b4313a3c6b3552b8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2211 (441905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ad031c7a8e91479d8adb8d605576f454", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2212 (442105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cbebd75be13f47bbb1065e8346a0fc02", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2213 (442305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0fe42105e3404825924e00eb4d8f9a7d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2214 (442505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "eb63f43f6f1f4592b24e1b9c07046672", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2215 (442705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3bccc39403044208808f9740eb5348a2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "13fa1f2104d9494593461d2778c44841", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2216 (442905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "469144c5304e4f2e95e9ddc47824da78", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2217 (443105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "873a9b5da15445249a94e7b5e9643877", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2218 (443305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "36c61fda0e5c467bb8f78722925f207f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2219 (443505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "85fbac1e129841ae92f5ee4680edf737", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2220 (443705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e5d97c014be545819e4dce742408ae08", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1931d725d136406496b08808be9f906a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2221 (443905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a0d6df06c1e144e1a0f99eb85a0f3a9e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2222 (444105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "feb41f4c82a54d99bf0c933b772b89f0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2223 (444305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "194111b087a9454c92fc778c64d2d406", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2224 (444505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e96f7baa6b754d08987745062b0f68f8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2225 (444705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ee8f0678305a4383ad8235d78e72fb3c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f35bc21a442e43798144726d0bdcba68", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2226 (444905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4142505e7567413fa241a9572fa3593c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2227 (445105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4c01c1014c0248d1a1759376d6e46698", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2228 (445305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "539bbd894aee4f31992585c179e8425b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2229 (445505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "634ff83cf2084dec9bbfd6103063b42b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2230 (445705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "07adaae8fcb04e738790c8641ece0faf", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "490acd5ee6ca40688285632dd5eaba0d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2231 (445905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c496b7569fb3480b9a89179b254168e9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2232 (446105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "98e2631ef6dd47d28fa57b3cab36ded7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2233 (446305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7924af5ba05846db9c9160f7799c5cda", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2234 (446505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "31a55cd5bf554f0a8329f73df50e502d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2235 (446705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "802b0ab0374a48b29b495d5219efd697", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3ec976e6be494bab9b14b19e88a79ac0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2236 (446905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cb36c2cfff934f158756cd5f7274e302", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2237 (447105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f19a637bb7c947be98da58a5eacfe4e6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2238 (447305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6d84899a4e0842b9aae7413b1e760342", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2239 (447505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7f0065d514e448ab93c441a9ab0a2d84", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2240 (447705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ad45cb97a5bc47108f7733c8a8da44a9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cb10f87b99584fc3a8e11f0fc5ece83f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2241 (447905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1dfa3178f474463f844e96ce796a67f9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2242 (448105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "95c6c65775704935960a1d79b51e11aa", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2243 (448305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "82706acb2fe24c3aaa28886850a6878b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2244 (448505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "03ff0700e1a043e6908e1e29da4a0046", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2245 (448705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5f14c44d93b44215980099bcbe05a907", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a47491d09e72421fba1b2b016727e659", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2246 (448905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f5013c89befc4f3dab0fc86753764c45", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2247 (449105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "eadd4f26dc24487883052baa8bfec31e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2248 (449305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "53a8c0d5821d4fbcb6c1435b1e987424", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2249 (449505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "fc28fb4796614306a4400cd368905637", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2250 (449705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "df42dbed2d224b0ba8f8dfeaed1c9f23", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1a4ce948d9044d78a03e7341c23f348a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2251 (449905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4c55f4a93a33456395f28c8dff1e32ae", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2252 (450105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b12ce84869754c498986a976c2b1424f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2253 (450305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ccac7f4eb06e43c0a9f5985c432edf62", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2254 (450505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ba214e642ee14364a0b16a04adca1371", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2255 (450705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "94c81b8f0d3248e698442a2c257740a2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f6c378472742413ba2697cc8e1a6c30f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2256 (450905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "70311562fbb14a5a848d56734dd3f12c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2257 (451105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "dbaa636618674d9e811f0001b7ce78ad", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2258 (451305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6dcd8f74788c43c1babdcdf741d2db41", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2259 (451505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a0d4405b9148435e98c50a1c0e73ea39", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2260 (451705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d3ad328d2ea045a38e928cea1305aa18", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "82eb8291d97c479c9fbbfd20d9693013", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2261 (451905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c8477b883def4b0f97dd34562bbea1ac", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2262 (452105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "51c799bbd01f4f1d9a4e8e7b861fd359", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2263 (452305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "eb13ea4a0b894eb4a58741a731ffc3e2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2264 (452505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c49d1e08bd3043a09356b20227ac9328", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2265 (452705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "90b1ca14930d433da85e631e95adf3cf", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "18fce14214f940b8b253698acc36252f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2266 (452905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7946e6820532428bbcae7df0edef37a8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2267 (453105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cfaf8f5bdafe48b3b426d80b83c7a0eb", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2268 (453305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "656bbb55b83846b39362009028c0943d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2269 (453505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8e14529553f143e2b62ad77abf56f36e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2270 (453705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6998642ac4d540d38021bc407b28bcf3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c8be9e42bcda4f3aa9e30f09327ce6d6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2271 (453905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "72c27a8b021649b78cab73197a7123c2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2272 (454105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d9fc80abe5a54464bb781b88b7707c88", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2273 (454305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ddeccd1274404842b763a6dc387880f2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2274 (454505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "648b6f17da3f48a7a5fb9bec45e4d255", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2275 (454705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "df89208b00e945cfa7ee3fa2d442db8e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f228e38a652b4007ac1ce978e7bd8c59", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2276 (454905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e84af1a4ec1342fd9b03df7f0d887865", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2277 (455105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e545c13dc2f14dd7882d8c02891f68c5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2278 (455305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ac5d4793ca504de2bc444eda10681780", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2279 (455505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1bd43b04fed24904b8334e4822b6732d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2280 (455705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "88bbcecacc8b400c850f5db04cb861ce", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f82fb531ad7b4057b1781737683fa584", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2281 (455905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d0ece200917444dfa0aa4d686520008c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2282 (456105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "47ed48ae60b54231930c6a78fdbb70e4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2283 (456305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "253a512f0ee54fd19d8698b6c6172a16", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2284 (456505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d5152f77331841b29d36ec2a75cf1945", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2285 (456705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "93f4dabcbde84664a86ad4a7ceb8e6d4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "06ce8765db39410b8e2129165f604f9a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2286 (456905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "651d565f9784415486755eb8b2cca8ab", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2287 (457105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3c027c2e663a4f4aba09220b92eba3a3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2288 (457305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6a63d3e9c4604f218aaa9d33d21b5963", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2289 (457505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a4be6926665f407d9613543a05a9533a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2290 (457705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "01aef774114f45359d02fb463e965bb5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f55d7a2d25564a288e553cc5d06e0370", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2291 (457905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d89435fc38be4954992e82f6093e19c3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2292 (458105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5dfdf5350ec149aa815df9fcdaee8d20", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2293 (458305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3489d7f4b62f45b198398d25a75c86ce", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2294 (458505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e859088b347b41e28cb285de0a0ee1db", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2295 (458705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "be87b672b77048a6bd7c216e011cf724", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ac542bd8ab874631bafd4326bdc2d5ed", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2296 (458905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "78b29e5d4c014d4da795baecc4ccfcd8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2297 (459105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "07f16b53457641e3a23be3383f78ab3b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2298 (459305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4912dca599554a7c800e331876bfcb53", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2299 (459505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1fc4d19056434665ad10cad91527e886", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2300 (459705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "153fcebea4d1492bb26cc866ea32a700", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f21070ae40d44650a1dc0f0ff7fd1e93", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2301 (459905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9a6ef35ae5604fdbb6222586c075f40b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2302 (460105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1b58ca9fe05d427ab59df7ad0b505cd0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2303 (460305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cbc08230da584b289c4af2bfa62ac97c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2304 (460505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "04ef46afee69401899c73831a7fc526a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2305 (460705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3e0f09a1c5eb4f669db72430eb545816", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "423f8785d48342299a82f8ec6a6108c4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2306 (460905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f8f994cb76cc48eab9cdeb78e36ded6d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2307 (461105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "975f31d8377641dcb7fde2537ddcb298", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2308 (461305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e8c3ff610faa44c2aed6758a5451c09c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2309 (461505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "43a8469d7dfe45dabc4e178708cb978c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2310 (461705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "73c1e99b45484008b94edab0d2ec632f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9bdad78de8c44617bfcfc982e3589042", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2311 (461905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "93a920bec1444e4fbe7130039dc0d790", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2312 (462105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4d339087786541379888f31db0207e17", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2313 (462305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d3233c349daa48c09094a9603105b45d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2314 (462505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d0af6dfc74d3446d9fc0d87fd4a2b9c8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2315 (462705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "103f9480dfdf42719cb61354ab79fef6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "bd7120080a014b2597576d91abc9f763", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2316 (462905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "36d82422afe24d35a0420aba603b4cb7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2317 (463105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b9d3ee246166424cb521006991e4523f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2318 (463305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "767810efec5744a3bede5dcba37fab9b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2319 (463505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2d7075d23d034f478ec9a2f72033a600", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2320 (463705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4ef58bf002d34dbeb9ba500e28795133", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "66c96260d1324822bf4edac17d7574da", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2321 (463905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e8fe5402208747fcbacb5b3a287b8e8a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2322 (464105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e47fdfa3a7984c1a8b2bee92178f7fdc", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2323 (464305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a5aa8c5241444b968ff75b14c6c18bf3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2324 (464505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "40782c72d0c24bf8bf9c2b1185c77319", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2325 (464705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e02dd2b34d364088b36a6cb635864e48", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ff945433f0dc40d6a329c835f0b57c9e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2326 (464905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8ef35409eac942f4aa980ea5fb88fb8c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2327 (465105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2884c8abc5194673ab09b4d34b265c04", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2328 (465305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2d3915c3684b473d8b41c15771f13820", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2329 (465505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3c7f9f95366d4c9e888d9fa518e2db08", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2330 (465705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "85846fc038f8457682306516d4797dce", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cd3f44120b5a48afba66a46ae7b148a7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2331 (465905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "dc4087db22c9411b8172562fc9f8ec0f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2332 (466105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9e6ae9a625fa4cf1842f7e0a5ef21d38", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2333 (466305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "97bbc270d28043e28eb7eef3fc8cbf8a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2334 (466505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3465d7644fb7401f838702ed295d22cd", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2335 (466705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f285ca24144c49d7b90b8007de472558", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "599bfd36272f46da8d836c1df3a366b1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2336 (466905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "6fec7d334ea74ef5aa5bd568d4c3ddc6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2337 (467105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a63298287efa438796d36aee9415e8bd", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2338 (467305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "706f46a4ae124ed5864bdab5ff00b002", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2339 (467505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "fb03f200f91a44aea88218ad6a3d01db", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2340 (467705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f4ae1957bc4e4e8aaa28e8768a67d292", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d2650eb4bfae4ba7b331de5a1bfe18b5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2341 (467905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "dd41d4d2ce3e48a08f1dc3b1381557e6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2342 (468105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1b6d6f62bada46248eb388014d213064", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2343 (468305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f1136bd24d4840089464d4720418c694", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2344 (468505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8db3571f27a3434498c59a708d3b746b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2345 (468705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ca4cd049a94f49ad9c9ddb3eb8a1e9ff", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "552987c534da4ba4b09ae2eacefa4307", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2346 (468905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3ac4ee737c574f9db32a8c982591ee29", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2347 (469105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b6939488a5b94ccfb822d95e513c4881", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2348 (469305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "60d318e13ba14bcd816cc3dd0e516a76", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2349 (469505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b76ab9c80f114aa98afd0634fe5a82b8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2350 (469705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0f9281cdf8b54ab382e1b22e1684b34f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f2711a8928924031bc900865f655d247", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2351 (469905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2998b98914dd4de7bf554133ff30c0fb", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2352 (470105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "37656d6f5653491d9b630b40346ed6b5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2353 (470305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d925b01c310f43fc8d0bd3fc50c30062", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2354 (470505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "73b36fb7d3b94476acfb2b7cb1286de6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2355 (470705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "550661fff18d40d187b5414b52f0fa22", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f4d18c924aff48618846e475ec097236", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2356 (470905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "154588bd836046fe9482ef1748b37f37", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2357 (471105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "34014265f7d2437e9db4cc4c47d94039", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2358 (471305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e826d0115c2147808117e8625d3e8045", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2359 (471505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "481f8afb2461460ea417a0be2e313cf2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2360 (471705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d69f08d73641493eb89b857c380b124d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "896ae0ad241342889d90670bc6749885", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2361 (471905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "796ffa1fcc034df58ac0c32c2bac2487", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2362 (472105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3b546a72c691420b8ccafff8a1d56280", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2363 (472305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f75dfc5d6b9f443888a9588c89f4d908", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2364 (472505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e4fa365322564280acaafd207b86dff8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2365 (472705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f0b43883f5d34c259a4788ffec0260b4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "73ccaa254cb24fac9dd210dbfed2ec90", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2366 (472905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e733dcb0053f4a6ba7b69b50c437ff0e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2367 (473105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a8e4c08d9a4c449988d7c8d6112d1cfe", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2368 (473305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f1e54628c9364ae583d836515b36d68f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2369 (473505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b85a33a2ce574d8e912ad417283594e9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2370 (473705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "53d706fcc1a64ddabd65ca0c4895514b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e5d3123551ee4933a88e2211407d3de7", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2371 (473905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "93767663f51c4ea299e9f0d331b04a7d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2372 (474105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d721031f68b943538eedce20f670a398", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2373 (474305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "61a258e9f79e464cabbd4883fdd9ab19", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2374 (474505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "04c11674b3cc46bfbe966eaeb0c7e520", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2375 (474705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "55caf5dabb4d41e194967e1abbfdbb72", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "eadfff9fdcab475db58b6d5b7afb1490", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2376 (474905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f489a7f5056547a0bde8712d2ac9332f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2377 (475105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7da849cef59846db854df40f035f487f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2378 (475305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7b0b1a7ea16e468cac25b92e6ee9d3ef", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2379 (475505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "061ad72a8e2742c2bb946b30a772d45f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2380 (475705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "344c18297529409abb933c12ac50037e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "828f870aa2854fd283cfcfaa4451d82d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2381 (475905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f7d92f260a5f4ef5bbff0d5735555cb1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2382 (476105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "fe70be3edcfe4ff3b7062c32f19f7145", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2383 (476305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "950201fdc0554046a142ea6819069b25", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2384 (476505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "99d58ed0f6504a74895e5725613c138d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2385 (476705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7d222fc843e749de9925e06d9133ea35", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0e2987b2253b45b4848d6131c7d4cb11", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2386 (476905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ee1d21236c0c4bad9c3d8a4edadfcd00", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2387 (477105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "14bb15f7d69b468f8100d6944fcface9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2388 (477305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3fd7606d90b94c5293dc9c23ef7fe9a2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2389 (477505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1db7fcef5f314a58b114771c8203da7e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2390 (477705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "964c3b9b3e8b49a0a9be702c6e0c4565", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cf06ed73d1604414b53e1b074fa9b53e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2391 (477905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ec4415e9991248a7823cae4eb2e543bf", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2392 (478105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a67365ddddbb41488eb57d13238f8843", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2393 (478305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "01b6ec8fb32f4aba9b8e848a7b0e13d1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2394 (478505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "be8c9174e0c3462f8c5cfc33b3b55215", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2395 (478705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d0d5d8c0724f43159632001138bc405b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "97320f9b442a448ab56cc141b3324b11", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2396 (478905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "726bf3642c914da19c478ae707d78436", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2397 (479105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "902059f44eb24b07ae9b10d37a78426c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2398 (479305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "80c45f0d909243dbbfa66d0d686db9aa", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2399 (479505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f83a63b145fe43fe8fb4aa61584712ec", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2400 (479705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a0829e258ce64401b0a369f7e1711ec6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1bbe7d94cc214669b299d650a2cde44c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2401 (479905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "80c6437053604ae389eb0fd780e1c123", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2402 (480105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d4329cb18f994731a219e498a8d30008", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2403 (480305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "79355ca2e1ab45048159eac60faef343", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2404 (480505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ee41d1db695c4acda29f9c4fe203ba9d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2405 (480705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8c5e74e4737f4b5c854d30db7072b47f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d1269c9a9e2b4609a7ec3c284c7de3d0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2406 (480905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b09c428f1ba54a07b536ede797bd7299", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2407 (481105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "558e054eedcf492f8b6d8169fa1abe98", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2408 (481305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "dc4832e549d741efb121a15c1e3d0e6c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2409 (481505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "109b85ba3c3346ad860594478d6d76cd", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2410 (481705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7bd92b0979564576acc58f53649771df", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "30ef3d26347646de94e4c4aeb2c74705", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2411 (481905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "507f41a99daa4abd987d0a765fda71bd", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2412 (482105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "96eec2f735ea42b2b55e955f2ee1526f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2413 (482305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9aeedc329f404a0ea9c442e6bbf0efbc", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2414 (482505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4ba9d1ba7b364b598e2c0ea0e0c51e2b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2415 (482705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7e432062bba54da8845f8f579eb45451", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1016045d9e0141b7836f456a7c4cc67b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2416 (482905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e5f584a338644f6190296b71b8433f56", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2417 (483105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "94d9174d5c0247f3909b88345aca0705", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2418 (483305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "824c36b0247344b2af6399067909f379", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2419 (483505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1c23843c732641e8ab658e1381a834a5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2420 (483705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "babafef3d4c740ce83247c58cf91324a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9b06d784bdf94b10b6c573da14fb89a4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2421 (483905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "440796ee7fad4a6d9fdc70cbc2f9b063", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2422 (484105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "bc4ddb154e634b4bab5865af555882ee", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2423 (484305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4cb03e6e060a43ada8be46b6f272205d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2424 (484505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "42d67641e0f740d39c396cdd16a47b15", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2425 (484705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d95a7fef8f33496a996646af7f6a5406", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "941564a523eb4504a5d78e445dcbdada", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2426 (484905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "017c7f6d1d6e448eb9fda0b6ac72e0c1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2427 (485105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9fb9b00d06e54c5bb5b18ec9e93b2801", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2428 (485305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "437e22e98cd64e05bde9f3de9887cdb6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2429 (485505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2daacbbc93f94db1a1f27fa62f02caf3", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2430 (485705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "84b6ebf2c74e4edd9ad7e88603cd913a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5a9885b647994a489a42a5dab30c20f4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2431 (485905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0e1f27b0f8cf414fb34d4ebd4b060da4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2432 (486105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "06413c1d28504bbaa521bff3b43834d5", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2433 (486305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2632c267d1854df19f6b37d808419408", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2434 (486505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f8b4f923e7784ab4b6c14e8b1a106659", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2435 (486705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b0587818af774f9cacf92e1652ae98a0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f3bbdb343f8d4e5da70c5437ca23748a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2436 (486905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e75460b91ad742a3897ffc50f2f3436e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2437 (487105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "729fbfc0c082428dacefee0842256907", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2438 (487305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "fd557cfa28f346f4ae2a0d4cc975b6fa", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2439 (487505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "af9d33946e2547848ed809ed2eb387f9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2440 (487705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "fd4a1b0665d44f45b81cad72d21d29af", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "55cc4bcab9304041977a0107d41b29de", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2441 (487905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0653eead7e544adb8b8ce13282ae34fe", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2442 (488105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "37b9ae8dbeb349e29a9c82ab2889f1b0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2443 (488305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "dfe854dfd67c4cb0899ad03fa7d7ddd6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2444 (488505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "94aa2511675b4d7292435b20984242bc", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2445 (488705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e8f92cc9d01f49e4a1223cce65e92100", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0d8a565477c64a31b5a94067e9381fe8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2446 (488905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7d86b82f84064e42b15b2f6c17037b80", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2447 (489105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0f8e6929cff748d393a7a4b818efe1e1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2448 (489305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "378744c122dc4d83ad2f3cb1d5f09f24", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2449 (489505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e0d32635bd964d2faa582454da13693a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2450 (489705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cfd6bd2c560040a18b2247177f90daa8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "23c13fdbc0c5407d8bca20d4b1b31be2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2451 (489905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "bb1a6f2640434a95868d983ed21d6300", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2452 (490105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "386dcf1c1f454a71a94fba8278854c07", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2453 (490305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "afa33f26f247426b949e796cb8f85ba1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2454 (490505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e4b5a2efac404a98a5f912e0a49fd654", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2455 (490705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "fbf4546cf4654419a617d8206dc4b26b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "03bda2b7978f41438eaad59fe4d08326", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2456 (490905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "753e405f190c42c5b2b0f5981f645b35", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2457 (491105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "87daedab1f304d9cb8386a59408c5dd6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2458 (491305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "97f168facfb64338bf91109094e9e309", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2459 (491505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c6bed4ecd4864daf9ba9742f369e662e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2460 (491705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "a3924e1eec114c5db7d46f586a947338", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "484937f42d44492a8e2f6ed8e992c575", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2461 (491905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4e1d41bf04af403f81bb56f99db60bf9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2462 (492105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "cfbd3186eace451ba678d6a2a9cec65a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2463 (492305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "b55d953ba5d348d1a670c5248313c417", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2464 (492505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e6509fc5596f4e8dba03ab0e63e00995", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2465 (492705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "871262b023b94b65864940e0f1fd8ba4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "613c1007ce65407c98bc3f4335e8556f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2466 (492905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e60149a044f3491587d3c0bd484ad2e8", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2467 (493105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "976a924ef46c4a359bf59b9f1da9cf22", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2468 (493305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "44dfc165c8f241a6ae647b125eaea790", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2469 (493505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0e576352621449f9ad1c785fd48693fd", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2470 (493705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5f814844f3bd4bdf926e4b5cd6b8dcb4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "fc134a0012674395be1b461254cf62b4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2471 (493905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "5214e581b3584b389e24c87cf6b6a455", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2472 (494105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "2e928c59ea7747e38d1d2f3e9c85d5fe", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2473 (494305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7aa010771e60499ebf5eb969696f81d0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2474 (494505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8c8f22d7c74a4bf497f2bf5d8d9e9866", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2475 (494705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3724e3184f224df5b319d29266d11991", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "0152a188eacd44088fda2ad7a72b2c2d", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2476 (494905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8917f88fd7fa4cd4bcc2d76e16054c74", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2477 (495105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "acf31fc70c5a4257ab1bbcc3cb1e7652", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2478 (495305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3acddac844f34b27bed78200da369e9e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2479 (495505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "65b591abf57d4d6296c78d873d53202f", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2480 (495705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e07df940176f47658fb63fcc1232176c", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "1274ca073579476db0176ce78f46c616", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2481 (495905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "84ce9b0b3a964f8182f72d7a113aa918", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2482 (496105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "aa4eae7fece840f1940b00506ad28415", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2483 (496305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "f7301d92c8a84c98813802bb7c21bf2a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2484 (496505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "27e345a03642483e91fc581cf9820bff", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2485 (496705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "adc898a3c71843dba26194647bbda0f9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "eb865f9c27da492ca86bdb06043947e4", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2486 (496905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e228b957a0ba44ee8d90272b61aa12c6", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2487 (497105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "43a617e5ca004402ab7de817c15c6219", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2488 (497305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "e26e2615d5a84f259d1bf3c2bdfd5625", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2489 (497505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "4d48f5ff90bd47d38790691a38c3a908", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2490 (497705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "33fed28b9c304fd99625105d15529941", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "90f94fade6ce4d2497e9250027bb4724", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2491 (497905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8c236e69ef7a4e3abc252c8bafddbc6b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2492 (498105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "9e75bb6192d84bbe9fd010212ad4853a", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2493 (498305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "531de4997f3d4342942c89e2c872630e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2494 (498505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c1914090d55d436388977ef4eafd74e2", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2495 (498705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ff44d1726aa7448c915b746c0d9707cb", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "ef88de8405db43d595eca37e8cb8e31b", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2496 (498905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "befc0d17438c46219d8d906d70265b0e", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2497 (499105 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "7808332f6a054576a700e98c305fad99", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2498 (499305 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "3990104790374a889817b803a9f0c9d1", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2499 (499505 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "723e4eb1bc324f6698b043c8bae1c063", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Episode 2500 (499705 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "d760d88b41ea4744ab47e2492717e978", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "c860501b531b4a6c8cc9608aab3873c9", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "Total reward: -200.0\n", "Episode 2501 (499905 steps so far)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "eab79486a7694024b10034480c83ccfd", "version_major": 2, "version_minor": 0 }, "text/plain": [ "HBox(children=(IntProgress(value=0, max=200), HTML(value='')))" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] } ], "source": [ "#dqn.train(episodes=1000, max_steps_per_episode=1000, evaluate=5, weight_filename=\"agent.h5\")\n", "dqn.train(total_steps=500_000, replay_period=170, weight_filename=\"agent.h5\", evaluate=5)\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We can watch the agent:" ] }, { "cell_type": "code", "execution_count": 10, "metadata": {}, "outputs": [], "source": [ "def render_policy(env, preprocess, policy):\n", " \"\"\"Visualize a policy for an environment.\"\"\"\n", " env.reset()\n", " while True:\n", " state = preprocess(env.state)\n", " terminal = env.step(policy(state)[1])[2]\n", " env.render()\n", " if terminal:\n", " break" ] }, { "cell_type": "code", "execution_count": 11, "metadata": { "scrolled": true }, "outputs": [], "source": [ "# Optional: To record the video uncomment the following lines \n", "# and change \"env\" in the call to render_policy below to \"rec_env\"\n", "\n", "rec_env = gym.wrappers.Monitor(env, \"recording\", video_callable=lambda episode_id: True, force=True)\n", "rec_env.reset_video_recorder()\n", "render_policy(rec_env, preprocess, policy)" ] }, { "cell_type": "code", "execution_count": 12, "metadata": {}, "outputs": [], "source": [ "env.close()" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.7.3" } }, "nbformat": 4, "nbformat_minor": 2 }