Skip to content
Open
Show file tree
Hide file tree
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
8 changes: 6 additions & 2 deletions README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ http://docs.nvidia.com/cuda/cuda-getting-started-guide-for-linux
To train DQN on Atari games, the following components must be installed:
* LuaJIT and Torch 7.0
* nngraph
* Xitari
* AleWrap
* Xitari (Download here: https://github.com/deepmind/xitari)
* AleWrap (Download here: https://github.com/deepmind/alewrap)

To install all of the above in a subdirectory called 'torch', it should be enough to run

Expand All @@ -58,6 +58,10 @@ It should then be sufficient to run the script

./run_cpu <game name>

For example,

./run_cpu breakout

Or, if GPU support is enabled,

./run_gpu <game name>
Expand Down
1 change: 0 additions & 1 deletion roms/README

This file was deleted.

Binary file added roms/breakout.bin
Binary file not shown.
2 changes: 1 addition & 1 deletion run_cpu
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,4 @@ args="-framework $FRAMEWORK -game_path $game_path -name $agent_name -env $ENV -e
echo $args

cd dqn
../torch/bin/luajit train_agent.lua $args
th train_agent.lua $args