We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db37812 commit 1f97e24Copy full SHA for 1f97e24
deep_q_rl/run_sygi.py
@@ -12,6 +12,7 @@
12
import launcher
13
import sys
14
15
+
16
class Defaults:
17
# ----------------------
18
# Experiment Parameters
@@ -35,7 +36,7 @@ class Defaults:
35
36
BATCH_ACCUMULATOR = 'mean'
37
LEARNING_RATE = .0002
38
DISCOUNT = .95
- RMS_DECAY = .99 # (Rho)
39
+ RMS_DECAY = .99 # (Rho)
40
RMS_EPSILON = 1e-6
41
MOMENTUM = 0
42
CLIP_DELTA = 0
@@ -44,7 +45,7 @@ class Defaults:
44
45
EPSILON_DECAY = 1000000
46
PHI_LENGTH = 4
47
UPDATE_FREQUENCY = 1
- REPLAY_MEMORY_SIZE = 100000 # I changed that 10^6 -> 10^5
48
+ REPLAY_MEMORY_SIZE = 1000000
49
BATCH_SIZE = 32
50
NETWORK_TYPE = "sygi"
51
FREEZE_INTERVAL = -1
0 commit comments