Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Created Deep Recurrent Q-Network example #85

Open
wants to merge 6 commits into
base: master
Choose a base branch
from

Commits on Dec 25, 2018

  1. Create cartpole-drqn.py

    This shows the way to implement Deep Recurrent Q-Network (DRQN) model for the Cartpole case. I had to expand the state input to include a few number of past state data and created a meaningful sequential input stream for Long and Short-Term Memory (LSTM) model. Otherwise, it did not work with just current state information. This sounds like violating the Markov property assumption but this does the job.
    Douglas-Cho authored Dec 25, 2018
    Configuration menu
    Copy the full SHA
    5006346 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1 from Douglas-Cho/Douglas-Cho-drqn-1

    Create cartpole-drqn.py
    Douglas-Cho authored Dec 25, 2018
    Configuration menu
    Copy the full SHA
    25b7598 View commit details
    Browse the repository at this point in the history
  3. the graph for drqn

    Douglas-Cho authored Dec 25, 2018
    Configuration menu
    Copy the full SHA
    e9b27c1 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #2 from Douglas-Cho/Douglas-Cho-drqn-2

    the graph for drqn
    Douglas-Cho authored Dec 25, 2018
    Configuration menu
    Copy the full SHA
    a622919 View commit details
    Browse the repository at this point in the history
  5. saved weights for drqn

    Douglas-Cho authored Dec 25, 2018
    Configuration menu
    Copy the full SHA
    83f7e65 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #3 from Douglas-Cho/Douglas-Cho-drqn-3

    saved weights for drqn
    Douglas-Cho authored Dec 25, 2018
    Configuration menu
    Copy the full SHA
    1e43fe0 View commit details
    Browse the repository at this point in the history