brain:arcade_games
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
brain:arcade_games [2017/01/04 23:59] – peter | brain:arcade_games [2020/07/15 09:30] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 19: | Line 19: | ||
ale> make -j 4 | ale> make -j 4 | ||
</ | </ | ||
+ | |||
+ | |||
+ | Create a directory for the ROM files. | ||
+ | |||
+ | <code bash> | ||
+ | mkdir /ale/roms | ||
+ | </ | ||
+ | |||
+ | and copy the binary rom files into that directory. | ||
+ | |||
+ | <WRAP info> | ||
+ | The DeepMind-Atari-Deep-Q-Learner-master.zip file at https:// | ||
+ | |||
+ | Download this file too; or obtain roms from another source. | ||
+ | </ | ||
+ | |||
+ | |||
+ | Check that ALE has compiled correctly. | ||
+ | |||
+ | <code bash> | ||
+ | cd /ale | ||
+ | ale -help | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | This should display help tips | ||
+ | </ | ||
+ | |||
+ | Check the rom is able to be processed by ALE. | ||
+ | |||
+ | <code bash> | ||
+ | ./ale rom/ | ||
+ | </ | ||
+ | |||
+ | This should display some details about the game. | ||
+ | |||
+ | READ the manual at / | ||
+ | |||
+ | <code bash> | ||
+ | cd / | ||
+ | ./ | ||
+ | ./ | ||
+ | </ | ||
+ | |||
+ | <code bash> | ||
+ | ./ale -display_screen true roms/ | ||
+ | ./ale -display_screen true -game_controller fifo roms/ | ||
+ | </ | ||
+ | |||
+ | |||
+ | Create a test program. | ||
+ | |||
+ | <code bash> | ||
+ | vi test.cpp | ||
+ | g++ -o test test.cpp src/ | ||
+ | ./test | ||
+ | ls / | ||
+ | cat / | ||
+ | cat / | ||
+ | ls / | ||
+ | cp libale.so / | ||
+ | g++ -o test test.cpp src/ | ||
+ | ./test | ||
+ | ldconfig | ||
+ | ./test | ||
+ | ./test roms/ | ||
+ | g++ -o test test.cpp src/ | ||
+ | locate SDL.h | ||
+ | g++ -o test test.cpp src/ | ||
+ | ./test roms/ | ||
+ | ./ale -display_screen true -game_controller fifo roms/ | ||
+ | </ | ||
+ | |||
+ | ===== Install ImageMagick and supporting libs ===== | ||
+ | |||
+ | apt-get install imagemagick | ||
+ | apt-get install libmagick++-dev | ||
Line 32: | Line 109: | ||
Perhaps different type neurons for different size images with some sort of standardisation comparison between unequal image sizes. | Perhaps different type neurons for different size images with some sort of standardisation comparison between unequal image sizes. | ||
+ | Images - Convolutions | ||
- | Create a directory for the ROM files. | + | update resolver' |
+ | # epsilon decreases over time | ||
+ | current_epsilon = 0.05 + 0.95 * np.exp(-epoch / 2500.) | ||
+ | resolver.epsilon.set_value(np.float32(current_epsilon)) | ||
- | <code bash> | ||
- | mkdir /ale/roms | ||
- | </ | ||
- | |||
- | and copy the binary rom files into that directory. | ||
+ | # gamma - delayed reward coefficient - what fraction of reward is retained if it is obtained one tick later | ||
+ | gamma = theano.shared(np.float32(1), | ||
Line 48: | Line 126: | ||
https:// | https:// | ||
+ | |||
+ | http:// | ||
+ | |||
brain/arcade_games.1483574379.txt.gz · Last modified: 2020/07/15 09:30 (external edit)