Skip to content

Instantly share code, notes, and snippets.

@Islandman93
Created August 5, 2017 13:45
Show Gist options
  • Save Islandman93/25723eafa405b8911f822ee8e3793bec to your computer and use it in GitHub Desktop.
Save Islandman93/25723eafa405b8911f822ee8e3793bec to your computer and use it in GitHub Desktop.
TensorForce configuration for the NIPS DQN architecture
[
{
"type": "conv2d",
"size": 16,
"window": 8,
"stride": 4,
"bias": true,
"padding": "VALID"
},
{
"type": "conv2d",
"size": 32,
"window": 4,
"stride": 2,
"bias": true,
"padding": "VALID"
},
{
"type": "flatten"
},
{
"type": "dense",
"size": 256,
"bias": true
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment