Skip to content

Instantly share code, notes, and snippets.

@Islandman93
Created August 5, 2017 13:39
Show Gist options
  • Save Islandman93/6dd37e58d42979be4ab14edb1c32308d to your computer and use it in GitHub Desktop.
Save Islandman93/6dd37e58d42979be4ab14edb1c32308d to your computer and use it in GitHub Desktop.
TensorForce config for batch dqn agent
"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