Skip to content

Commit 1f97e24

Browse files
committed
increasing replay size
1 parent db37812 commit 1f97e24

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

deep_q_rl/run_sygi.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
import launcher
1313
import sys
1414

15+
1516
class Defaults:
1617
# ----------------------
1718
# Experiment Parameters
@@ -35,7 +36,7 @@ class Defaults:
3536
BATCH_ACCUMULATOR = 'mean'
3637
LEARNING_RATE = .0002
3738
DISCOUNT = .95
38-
RMS_DECAY = .99 # (Rho)
39+
RMS_DECAY = .99 # (Rho)
3940
RMS_EPSILON = 1e-6
4041
MOMENTUM = 0
4142
CLIP_DELTA = 0
@@ -44,7 +45,7 @@ class Defaults:
4445
EPSILON_DECAY = 1000000
4546
PHI_LENGTH = 4
4647
UPDATE_FREQUENCY = 1
47-
REPLAY_MEMORY_SIZE = 100000 # I changed that 10^6 -> 10^5
48+
REPLAY_MEMORY_SIZE = 1000000
4849
BATCH_SIZE = 32
4950
NETWORK_TYPE = "sygi"
5051
FREEZE_INTERVAL = -1

0 commit comments

Comments
 (0)