Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix spelling error and markdown header issue #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions _posts/2016-03-09-space-invaders.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Deep Q-Learning (Space Invaders)
---


Ever since I learned about neural networks playing Atari games I wanted to reimplemnted it and learn how it works. Below you can see an AI playing Space Invaders.
Ever since I learned about neural networks playing Atari games I wanted to reimplement it and learn how it works. Below you can see an AI playing Space Invaders.
I trained it during my batch at <a href="http://recurse.com">Recurse Center</a> on little over 50M frames.

<center>
Expand Down Expand Up @@ -125,7 +125,7 @@ d3.csv("{{site_url}}/assets/space_invaders/avg_reward_per_game.csv")

Average game reward (600 games) after N games played. Blue line is random strategy baseline, red line is best-action strategy baseline.

#Algorithm
# Algorithm
So what is Deep Q-Learning (DQN)? Below you will find a gentle introduction. I omit certain details for the sake of simplicity
and I encourage you to read the <a href="http://deeplearning.net/software/theano/extending/unittest.html">original paper</a>.

Expand Down