Created
June 24, 2018 09:10
-
-
Save simoninithomas/ae0e300a2f7a15d23843aa6f757bb76f to your computer and use it in GitHub Desktop.
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
| # Instantiate the DQNetwork | |
| DQNetwork = DQNNet(state_size, action_size, learning_rate, name="DQNetwork") | |
| # Instantiate the target network | |
| TargetNetwork = DQNNet(state_size, action_size, learning_rate, name="TargetNetwork") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment