Skip to content

Commit

Permalink
retain original atari configs
Browse files Browse the repository at this point in the history
  • Loading branch information
kengz committed Apr 5, 2017
1 parent ac58c1d commit 1283bf3
Showing 1 changed file with 11 additions and 12 deletions.
23 changes: 11 additions & 12 deletions rl/spec/atari_experiment_specs.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"dev_conv_dqn": {
"dev_conv_dqn": {
"problem": "Dev-Breakout-v0",
"Agent": "ConvDQN",
"HyperOptimizer": "GridSearch",
Expand All @@ -19,10 +19,10 @@
"hidden_layers_activation": "relu",
"exploration_anneal_episodes": 3000,
"epi_change_lr": 3000,
"auto_architecture": true,
"num_hidden_layers" : 3,
"num_initial_channels" : 8,
"max_mem_len" : 500000
"auto_architecture": true,
"num_hidden_layers": 3,
"num_initial_channels": 8,
"max_mem_len": 500000

},
"param_range": {
Expand All @@ -49,14 +49,13 @@
"lr": 0.001,
"gamma": 0.99,
"hidden_layers": [
[32, 8, 8, [4, 4]],
[64, 4, 4, [2, 2]],
[64, 3, 3, [1, 1]]
[16, 8, 8, [4, 4]],
[32, 4, 4, [2, 2]]
],
"hidden_layers_activation": "relu",
"exploration_anneal_episodes": 3000,
"epi_change_lr": 3000,
"max_mem_len" : 500000
"max_mem_len": 500000
},
"param_range": {
"lr": [0.001, 0.01]
Expand All @@ -68,7 +67,7 @@
"HyperOptimizer": "GridSearch",
"Memory": "LinearMemoryWithForgetting",
"Optimizer": "AdamOptimizer",
"Policy": "DoubleDQNBoltzmannPolicy",
"Policy": "DoubleDQNEpsilonGreedyPolicy",
"PreProcessor": "Atari",
"param": {
"train_per_n_new_exp": 4,
Expand All @@ -82,7 +81,7 @@
"hidden_layers_activation": "relu",
"exploration_anneal_episodes": 3000,
"epi_change_lr": 3000,
"max_mem_len" : 500000
"max_mem_len": 500000
},
"param_range": {
"lr": [0.001, 0.0001],
Expand All @@ -109,7 +108,7 @@
"hidden_layers_activation": "relu",
"exploration_anneal_episodes": 10000,
"epi_change_lr": 10000,
"max_mem_len" : 500000
"max_mem_len": 500000
},
"param_range": {
"lr": [0.001, 0.0001],
Expand Down

0 comments on commit 1283bf3

Please sign in to comment.