Created
August 5, 2017 13:45
-
-
Save Islandman93/25723eafa405b8911f822ee8e3793bec to your computer and use it in GitHub Desktop.
TensorForce configuration for the NIPS DQN architecture
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
[ | |
{ | |
"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