Created
August 5, 2017 13:39
-
-
Save Islandman93/6dd37e58d42979be4ab14edb1c32308d to your computer and use it in GitHub Desktop.
TensorForce config for batch dqn agent
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"preprocessing": [ | |
{ | |
"type": "image_resize", | |
"width": 84, | |
"height": 84 | |
}, | |
{ | |
"type": "grayscale" | |
}, | |
{ | |
"type": "divide", | |
"scale": 255 | |
}, | |
{ | |
"type": "sequence", | |
"length": 4 | |
} | |
], | |
"exploration": { | |
"type": "epsilon_anneal", | |
"epsilon": 1.0, | |
"epsilon_final": 0.1, | |
"epsilon_timesteps": 1e6 | |
}, | |
"batch_size": 5, | |
"repeat_update": 1, | |
"target_update_frequency": 10000, | |
"discount": 0.99, | |
"learning_rate": 0.004, | |
"optimizer": { | |
"type": "rmsprop", | |
"decay": 0.99, | |
"epsilon": 0.1 | |
}, | |
"tf_saver": false, | |
"log_level": "info", | |
"update_target_weight": 1.0, | |
"double_dqn": false, | |
"clip_loss": 1.0 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment