Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: AppliedDataSciencePartners/DeepReinforcementLearning
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: druidOfCode/DeepReinforcementLearning
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 12 commits
  • 44 files changed
  • 1 contributor

Commits on Feb 23, 2018

  1. Fixed to run with python 3.6

    Pushed mainly to save me time from potentially needing to make the same edits on a separate machine. Also laying the groundwork for modifying the game.py file
    druidOfCode authored Feb 23, 2018
    Configuration menu
    Copy the full SHA
    82a6eab View commit details
    Browse the repository at this point in the history

Commits on Feb 24, 2018

  1. Updated ignore

    .gitignore populating
    druidOfCode committed Feb 24, 2018
    Configuration menu
    Copy the full SHA
    7a7b207 View commit details
    Browse the repository at this point in the history
  2. Populating ignore

    druidOfCode committed Feb 24, 2018
    Configuration menu
    Copy the full SHA
    e93b32f View commit details
    Browse the repository at this point in the history
  3. Patched out xrange

    xrange was changed to range in python 3.6
    
    A run.py file was created to replace "run.ipynb"
    druidOfCode committed Feb 24, 2018
    Configuration menu
    Copy the full SHA
    ee3cee8 View commit details
    Browse the repository at this point in the history
  4. run.py cleaning

    Since it was converted from the base run.ipynb it looked horrid. That has been fixed.
    druidOfCode committed Feb 24, 2018
    Configuration menu
    Copy the full SHA
    5990398 View commit details
    Browse the repository at this point in the history
  5. Updated iteration logic

    Changed from running forever to a max of 100 iterations. This can easily be changed if necessary.
    druidOfCode committed Feb 24, 2018
    Configuration menu
    Copy the full SHA
    604fc0b View commit details
    Browse the repository at this point in the history
  6. Patched Keras PyDot bug

    Patched logging for Keras. The patched lines are known to cause keras to produce a string of critical errors
    druidOfCode committed Feb 24, 2018
    Configuration menu
    Copy the full SHA
    07f4b1b View commit details
    Browse the repository at this point in the history
  7. Added line to temp modify path

    Added line that should allow most people to for go adding a new line to their path for GraphViz. You can still add the path yourself as any other program will still want it in your path. If the path variable in run.py is incorrect for you, change as needed.
    druidOfCode committed Feb 24, 2018
    Configuration menu
    Copy the full SHA
    b5ef6b5 View commit details
    Browse the repository at this point in the history
  8. fixed reload

    added import for reload. In Python 2.x, this was a builtin, but in 3.x, it's in the importlib module.
    druidOfCode committed Feb 24, 2018
    Configuration menu
    Copy the full SHA
    bb0e69c View commit details
    Browse the repository at this point in the history
  9. Migrating away fully from .ipynb format

    .ipynb is too unstable for this work type. In my experience attempting to train in Jupyter will cause the Python Kernel to crash. Running directly in console fixes this. Although I do admit it is uglier...
    druidOfCode committed Feb 24, 2018
    Configuration menu
    Copy the full SHA
    ae9d99c View commit details
    Browse the repository at this point in the history
  10. Added Requirements file

    Created base requirement file. Run pip install -r requirements.txt to install the dependencies
    druidOfCode committed Feb 24, 2018
    Configuration menu
    Copy the full SHA
    c224d9b View commit details
    Browse the repository at this point in the history

Commits on Feb 25, 2018

  1. Simple update

    Just some config files, not really connected to anything... nothing to see here, move along.
    druidOfCode committed Feb 25, 2018
    Configuration menu
    Copy the full SHA
    0ee986d View commit details
    Browse the repository at this point in the history
Loading