Skip to content

Commit 9dce017

Browse files
authored
Merge pull request dennybritz#201 from guotong1988/patch-1
Update CliffWalk REINFORCE with Baseline Solution.ipynb
2 parents 59cded5 + b2d179a commit 9dce017

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PolicyGradient/CliffWalk REINFORCE with Baseline Solution.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@
161161
" Transition = collections.namedtuple(\"Transition\", [\"state\", \"action\", \"reward\", \"next_state\", \"done\"])\n",
162162
" \n",
163163
" for i_episode in range(num_episodes):\n",
164-
" # Reset the environment and pick the fisrst action\n",
164+
" # Reset the environment and pick the first action\n",
165165
" state = env.reset()\n",
166166
" \n",
167167
" episode = []\n",

0 commit comments

Comments
 (0)