Created
July 9, 2017 01:49
-
-
Save malzantot/3ecf4be0fde6ecfea5e9632bca1e66c9 to your computer and use it in GitHub Desktop.
Solution of FrozenLake8x8 environment using Value Iteration.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Solving FrozenLake8x8 environment using Value-Itertion. | |
Author : Moustafa Alzantot ([email protected]) | |
""" | |
import numpy as np | |
import gym | |
from gym import wrappers | |
def run_episode(env, policy, gamma = 1.0, render = False): | |
""" Evaluates policy by using it to run an episode and finding its | |
total reward. | |
args: | |
env: gym environment. | |
policy: the policy to be used. | |
gamma: discount factor. | |
render: boolean to turn rendering on/off. | |
returns: | |
total reward: real value of the total reward recieved by agent under policy. | |
""" | |
obs = env.reset() | |
total_reward = 0 | |
step_idx = 0 | |
while True: | |
if render: | |
env.render() | |
obs, reward, done , _ = env.step(int(policy[obs])) | |
total_reward += (gamma ** step_idx * reward) | |
step_idx += 1 | |
if done: | |
break | |
return total_reward | |
def evaluate_policy(env, policy, gamma = 1.0, n = 100): | |
""" Evaluates a policy by running it n times. | |
returns: | |
average total reward | |
""" | |
scores = [ | |
run_episode(env, policy, gamma = gamma, render = False) | |
for _ in range(n)] | |
return np.mean(scores) | |
def extract_policy(v, gamma = 1.0): | |
""" Extract the policy given a value-function """ | |
policy = np.zeros(env.nS) | |
for s in range(env.nS): | |
q_sa = np.zeros(env.action_space.n) | |
for a in range(env.action_space.n): | |
for next_sr in env.P[s][a]: | |
# next_sr is a tuple of (probability, next state, reward, done) | |
p, s_, r, _ = next_sr | |
q_sa[a] += (p * (r + gamma * v[s_])) | |
policy[s] = np.argmax(q_sa) | |
return policy | |
def value_iteration(env, gamma = 1.0): | |
""" Value-iteration algorithm """ | |
v = np.zeros(env.nS) # initialize value-function | |
max_iterations = 100000 | |
eps = 1e-20 | |
for i in range(max_iterations): | |
prev_v = np.copy(v) | |
for s in range(env.nS): | |
q_sa = [sum([p*(r + prev_v[s_]) for p, s_, r, _ in env.P[s][a]]) for a in range(env.nA)] | |
v[s] = max(q_sa) | |
if (np.sum(np.fabs(prev_v - v)) <= eps): | |
print ('Value-iteration converged at iteration# %d.' %(i+1)) | |
break | |
return v | |
if __name__ == '__main__': | |
env_name = 'FrozenLake8x8-v0' | |
gamma = 1.0 | |
env = gym.make(env_name) | |
optimal_v = value_iteration(env, gamma); | |
policy = extract_policy(optimal_v, gamma) | |
policy_score = evaluate_policy(env, policy, gamma, n=1000) | |
print('Policy average score = ', policy_score) |
why at line 71 you are multiplying the probability with (r+prev_v[s_])
There's a mistake in line 49 (extract_policy
) which should also take as input the environment (the code would run fine in this script because when extract_policy
is called, env
is already defined, but for consistency it should be changed)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi, why gamma is not used in value_iteration?