msayyadi / rl-library

Automatically exported from code.google.com/p/rl-library
0 stars 0 forks source link

Tetris scoring #158

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Every step gives a small positive reward:

currentReward += java.lang.Math.pow(numRowsCleared + 0.1, rewardExponent);

this doesnt seem right.

Original issue reported on code.google.com by rad...@gmail.com on 8 Jul 2008 at 9:05

GoogleCodeExporter commented 8 years ago
This is done, in the regular RL-Library version.

Should check if that's the right way to score.

score += java.lang.Math.pow(2.0d, numRowsCleared-1);

Original comment by brian.ta...@gmail.com on 12 Nov 2008 at 8:55

GoogleCodeExporter commented 8 years ago

Original comment by brian.ta...@gmail.com on 12 Nov 2008 at 8:55

GoogleCodeExporter commented 8 years ago

Original comment by brian.ta...@gmail.com on 12 Nov 2008 at 8:55