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: kpu/nplm
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: rsennrich/nplm
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Able to merge. These branches can be automatically merged.

Commits on Jul 4, 2014

  1. Copy the full SHA
    d80c555 View commit details

Commits on Jul 9, 2014

  1. Copy the full SHA
    52861f2 View commit details

Commits on Aug 28, 2014

  1. osx compile

    hieuhoang committed Aug 28, 2014
    Copy the full SHA
    31412fd View commit details
  2. osx compile

    hieuhoang committed Aug 28, 2014
    Copy the full SHA
    e2b0468 View commit details
  3. Merge pull request #1 from hieuhoang/master

    osx compile
    rsennrich committed Aug 28, 2014
    Copy the full SHA
    de2fdd9 View commit details

Commits on Sep 2, 2014

  1. no longer need to put Eigen include in system directory. Need to put …

    …it in nplm's 3rdparty directory
    hieuhoang committed Sep 2, 2014
    Copy the full SHA
    233de06 View commit details

Commits on Oct 16, 2014

  1. Revert shared cache. Doesn't save enough memory to be worth locking t…

    …he system for it.
    
    This reverts commit 52861f2.
    rsennrich committed Oct 16, 2014
    Copy the full SHA
    f097add View commit details
  2. new parameter init_model to initialize the network parameters from an…

    … existing model.
    
    (use cases: continue training with more epochs, or save memory by using different subsets of data for each epoch)
    rsennrich committed Oct 16, 2014
    Copy the full SHA
    84b1e84 View commit details
  3. support for networks with single hidden layer

    (set num_hidden to 0; num_output_embeddings will be size of remaining layer)
    rsennrich committed Oct 16, 2014
    Copy the full SHA
    6412075 View commit details
  4. Copy the full SHA
    cfc957c View commit details

Commits on Nov 4, 2014

  1. Copy the full SHA
    ba48d70 View commit details

Commits on Nov 17, 2014

  1. Copy the full SHA
    7eb6ea4 View commit details
  2. Copy the full SHA
    77ef291 View commit details
  3. expose premultiplication

    rsennrich committed Nov 17, 2014
    Copy the full SHA
    accf80c View commit details
  4. cleanup Makefile

    rsennrich committed Nov 17, 2014
    Copy the full SHA
    f757a62 View commit details
  5. Copy the full SHA
    337ead1 View commit details
  6. Copy the full SHA
    41de6b6 View commit details
  7. Copy the full SHA
    d58f430 View commit details
  8. Copy the full SHA
    e348895 View commit details
  9. Copy the full SHA
    1479874 View commit details

Commits on Feb 11, 2015

  1. createMmap: convert ngramized and numberized text files into memory m…

    …apped files for training
    rsennrich committed Feb 11, 2015
    Copy the full SHA
    8a0847e View commit details
  2. be less verbose

    rsennrich committed Feb 11, 2015
    Copy the full SHA
    02a3683 View commit details

Commits on Feb 12, 2015

  1. Copy the full SHA
    e6fb89f View commit details

Commits on Feb 19, 2015

  1. Copy the full SHA
    8d5573b View commit details

Commits on Feb 24, 2015

  1. Copy the full SHA
    d3f0c1b View commit details

Commits on Mar 25, 2015

  1. Many of the header files contained an absolute path to Eigen. I have …

    …fixed that here so that it only relies on the Makefile
    Kenton William Murray committed Mar 25, 2015
    Copy the full SHA
    10c75fa View commit details
  2. Merge pull request #4 from KentonMurray/master

    no relative paths to Eigen
    rsennrich committed Mar 25, 2015
    Copy the full SHA
    67ecf2e View commit details

Commits on Apr 7, 2015

  1. Copy the full SHA
    6a0d522 View commit details

Commits on Apr 8, 2015

  1. Copy the full SHA
    3dc380d View commit details
  2. Copy the full SHA
    28bdadf View commit details

Commits on Jun 25, 2015

  1. c++11 compile

    graehl committed Jun 25, 2015
    Copy the full SHA
    cd9d683 View commit details
  2. compile warnings

    graehl committed Jun 25, 2015
    Copy the full SHA
    50308d5 View commit details
  3. Copy the full SHA
    37e397f View commit details
  4. more tab->space

    graehl committed Jun 25, 2015
    Copy the full SHA
    589a79f View commit details
  5. Copy the full SHA
    a3dd915 View commit details
  6. compile

    graehl committed Jun 25, 2015
    Copy the full SHA
    5fbf961 View commit details
  7. tab fix

    graehl committed Jun 25, 2015
    Copy the full SHA
    363c73c View commit details
  8. Copy the full SHA
    82aaac9 View commit details

Commits on Jun 26, 2015

  1. find_string

    graehl committed Jun 26, 2015
    Copy the full SHA
    c461c4a View commit details

Commits on Jul 17, 2015

  1. Merge pull request #5 from graehl/master

    c++11
    rsennrich committed Jul 17, 2015
    Copy the full SHA
    a7da1b6 View commit details
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -2,9 +2,11 @@ python/nplm.pyc
src/*.o
src/*.a
src/shared/*.o
src/libneuralLM.so
src/libnplm.so
src/prepareNeuralLM
src/prepareNeuralTM
src/testNeuralLM
src/testNeuralNetwork
src/trainNeuralNetwork
.history
src/make.sh
Loading