Skip to content

Commit

Permalink
@ aisgpu8 17082701
Browse files Browse the repository at this point in the history
> cartpole
> beta: 0.01
> lr_decay: False
  • Loading branch information
jingweiz committed Aug 27, 2017
1 parent 17bdccc commit d9717ef
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions utils/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@

CONFIGS = [
# agent_type, env_type, game, model_type, memory_type
[ "empty", "atari", "Boxing-v0", "empty", "none" ], # 0
[ "empty", "gym", "CartPole-v0", "empty", "none" ], # 0
[ "dqn", "gym", "CartPole-v0", "dqn-mlp", "sequential"], # 1
[ "dqn", "atari-ram", "Pong-ram-v0", "dqn-mlp", "sequential"], # 2
[ "dqn", "atari", "PongDeterministic-v4", "dqn-cnn", "sequential"], # 3
[ "dqn", "atari", "BreakoutDeterministic-v4", "dqn-cnn", "sequential"], # 4
[ "a3c", "atari", "PongDeterministic-v4", "a3c-cnn-dis", "none" ], # 5
[ "a3c", "gym", "InvertedPendulum-v1", "a3c-mlp-con", "none" ], # 6
[ "acer", "gym", "MountainCar-v0", "acer-mlp-dis", "episodic" ], # 7 # NOTE: acer under testing
[ "acer", "gym", "CartPole-v0", "acer-mlp-dis", "episodic" ], # 7 # NOTE: acer under testing
[ "acer", "atari", "Boxing-v0", "acer-cnn-dis", "episodic" ] # 8 # NOTE: acer under testing
]

Expand All @@ -31,8 +31,8 @@ def __init__(self):
self.verbose = 0 # 0(warning) | 1(info) | 2(debug)

# training signature
self.machine = "aisgpu7" # "machine_id"
self.timestamp = "17082700" # "yymmdd##"
self.machine = "aisgpu8" # "machine_id"
self.timestamp = "17082701" # "yymmdd##"
# training configuration
self.mode = 1 # 1(train) | 2(test model_file)
self.config = 7
Expand Down

0 comments on commit d9717ef

Please sign in to comment.