From a9d41b240691209944bd93339a00f3e40571119a Mon Sep 17 00:00:00 2001 From: Justin Russell Date: Wed, 22 Nov 2017 01:49:13 -0500 Subject: [PATCH] Fix typo in docstring --- rl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rl.py b/rl.py index 20a392592..868784e9f 100644 --- a/rl.py +++ b/rl.py @@ -133,7 +133,7 @@ def __init__(self, mdp, Ne, Rplus, alpha=None): self.alpha = lambda n: 1./(1+n) # udacity video def f(self, u, n): - """ Exploration function. Returns fixed Rplus untill + """ Exploration function. Returns fixed Rplus until agent has visited state, action a Ne number of times. Same as ADP agent in book.""" if n < self.Ne: