Skip to content

Instantly share code, notes, and snippets.

@louisng5
louisng5 / README
Last active November 14, 2016 10:33
OpenAI - CartPole-v0 - 19 EPISODES BEFORE SOLVE
I have used some aggressive measure to achieve 19 Episodes before solve, inculding:
1) Large batch_size used for experience replay.
2) 30 epoch size used for every training batch.
3) 0 probability for random action.
With this approach, the NN start to "know" how to balance at episode 10-15.
Keras was used for creating and training the NN.