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: lisa-lab/DeepLearningTutorials
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: segmentation
Choose a base ref
...
head repository: lisa-lab/DeepLearningTutorials
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.
  • 8 commits
  • 3 files changed
  • 4 contributors

Commits on Jan 19, 2018

  1. Update rnnrbm.py

    Hi, so I ran into this error at line 244, then I traced back the error it was due to at line 291, os.path.dirname(__file__) returned empty string and caused the split-out parent directory to be empty, thus the path argument passed into train() function became ./data/Nottingham/train/*.mid which did not exist rather than ../data/Nottingham/train/* which was expected.
    So I changed os.path.dirname(__file__) into os.path.dirname(os.path.abspath(__file__)) to get the current working directory from file's absolute path, by which you could then split out the parent directory.
    You can refer the reason to this link: https://stackoverflow.com/questions/7783308/os-path-dirname-file-returns-empty
    LeoMingo authored Jan 19, 2018
    Configuration menu
    Copy the full SHA
    e82dadc View commit details
    Browse the repository at this point in the history

Commits on Jan 26, 2018

  1. Merge pull request #201 from LeoMingo/patch-3

    Update rnnrbm.py
    lamblin authored Jan 26, 2018
    Configuration menu
    Copy the full SHA
    238a0bc View commit details
    Browse the repository at this point in the history

Commits on Mar 8, 2018

  1. add conlleval.pl

    slefrancois committed Mar 8, 2018
    Configuration menu
    Copy the full SHA
    562a389 View commit details
    Browse the repository at this point in the history

Commits on Mar 9, 2018

  1. update conlleval version

    slefrancois committed Mar 9, 2018
    Configuration menu
    Copy the full SHA
    0316283 View commit details
    Browse the repository at this point in the history
  2. update url

    slefrancois committed Mar 9, 2018
    Configuration menu
    Copy the full SHA
    2829c28 View commit details
    Browse the repository at this point in the history
  3. update credits

    slefrancois committed Mar 9, 2018
    Configuration menu
    Copy the full SHA
    b13a1b7 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #202 from slefrancois/conlleval

    add conlleval.pl
    nouiz authored Mar 9, 2018
    Configuration menu
    Copy the full SHA
    7f06bc2 View commit details
    Browse the repository at this point in the history

Commits on Jun 15, 2018

  1. Merge pull request #204 from lisa-lab/segmentation

    Fully convolutional networks for 2D segmentation
    lamblin authored Jun 15, 2018
    Configuration menu
    Copy the full SHA
    11c4651 View commit details
    Browse the repository at this point in the history
Loading