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

Added BRNN support #3

Closed
wants to merge 49 commits into from
Closed

Added BRNN support #3

wants to merge 49 commits into from

Commits on Apr 11, 2016

  1. Configuration menu
    Copy the full SHA
    5d9a7b4 View commit details
    Browse the repository at this point in the history
  2. Added BLSTM based on RNN implementation

    SeanNaren committed Apr 11, 2016
    Configuration menu
    Copy the full SHA
    dec350f View commit details
    Browse the repository at this point in the history
  3. added BLSTM to init

    SeanNaren committed Apr 11, 2016
    Configuration menu
    Copy the full SHA
    9bfed85 View commit details
    Browse the repository at this point in the history
  4. removed self call in makeContiguous

    SeanNaren committed Apr 11, 2016
    Configuration menu
    Copy the full SHA
    fe29e8b View commit details
    Browse the repository at this point in the history

Commits on Apr 13, 2016

  1. Added rnn test (for basic RELU)

    SeanNaren committed Apr 13, 2016
    Configuration menu
    Copy the full SHA
    bdc97fa View commit details
    Browse the repository at this point in the history
  2. Removed c sum check

    SeanNaren committed Apr 13, 2016
    Configuration menu
    Copy the full SHA
    e9de79f View commit details
    Browse the repository at this point in the history
  3. Removed print statements

    SeanNaren committed Apr 13, 2016
    Configuration menu
    Copy the full SHA
    25f5383 View commit details
    Browse the repository at this point in the history
  4. Fixed call to input grads

    SeanNaren committed Apr 13, 2016
    Configuration menu
    Copy the full SHA
    d115fac View commit details
    Browse the repository at this point in the history
  5. Added test for all RNN types

    SeanNaren committed Apr 13, 2016
    Configuration menu
    Copy the full SHA
    0df09da View commit details
    Browse the repository at this point in the history
  6. Added description

    SeanNaren committed Apr 13, 2016
    Configuration menu
    Copy the full SHA
    11fe833 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    6406b2a View commit details
    Browse the repository at this point in the history
  8. Exposed rnn variable to make easier to replace

    SeanNaren committed Apr 13, 2016
    Configuration menu
    Copy the full SHA
    94c1c22 View commit details
    Browse the repository at this point in the history
  9. Added base test for BLSTM

    SeanNaren committed Apr 13, 2016
    Configuration menu
    Copy the full SHA
    18ce0fb View commit details
    Browse the repository at this point in the history
  10. Revert "Added description"

    This reverts commit 11fe833.
    SeanNaren committed Apr 13, 2016
    Configuration menu
    Copy the full SHA
    291bd50 View commit details
    Browse the repository at this point in the history
  11. Fixed change of RNN module name

    SeanNaren committed Apr 13, 2016
    Configuration menu
    Copy the full SHA
    b09c184 View commit details
    Browse the repository at this point in the history
  12. Added comment removed BLSTM test

    SeanNaren committed Apr 13, 2016
    Configuration menu
    Copy the full SHA
    12a7696 View commit details
    Browse the repository at this point in the history
  13. Added numDirections param to RNN

    SeanNaren committed Apr 13, 2016
    Configuration menu
    Copy the full SHA
    1287250 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    c98e24f View commit details
    Browse the repository at this point in the history
  15. Removed *2 on gradInput

    SeanNaren committed Apr 13, 2016
    Configuration menu
    Copy the full SHA
    4d83082 View commit details
    Browse the repository at this point in the history
  16. Removed hardcoded 3 dimension from cudnn call

    SeanNaren committed Apr 13, 2016
    Configuration menu
    Copy the full SHA
    3c13e7e View commit details
    Browse the repository at this point in the history
  17. Added BLSTM test

    SeanNaren committed Apr 13, 2016
    Configuration menu
    Copy the full SHA
    e80fce1 View commit details
    Browse the repository at this point in the history

Commits on Apr 14, 2016

  1. Fixed resize of hidden tensors

    SeanNaren committed Apr 14, 2016
    Configuration menu
    Copy the full SHA
    54488bb View commit details
    Browse the repository at this point in the history
  2. Added numDirections to assertions

    SeanNaren committed Apr 14, 2016
    Configuration menu
    Copy the full SHA
    9e58334 View commit details
    Browse the repository at this point in the history
  3. Added assertion check to accGradParams

    SeanNaren committed Apr 14, 2016
    Configuration menu
    Copy the full SHA
    04feef3 View commit details
    Browse the repository at this point in the history
  4. Added BRNN test

    SeanNaren committed Apr 14, 2016
    Configuration menu
    Copy the full SHA
    9d44393 View commit details
    Browse the repository at this point in the history
  5. Reverted change of class name

    SeanNaren committed Apr 14, 2016
    Configuration menu
    Copy the full SHA
    1cdff21 View commit details
    Browse the repository at this point in the history

Commits on Apr 15, 2016

  1. Added ReLU/tanh/LSTM/GRU bidirectional tests

    SeanNaren committed Apr 15, 2016
    Configuration menu
    Copy the full SHA
    d8d4f89 View commit details
    Browse the repository at this point in the history
  2. Updated modules in tests

    SeanNaren committed Apr 15, 2016
    Configuration menu
    Copy the full SHA
    ea21e9d View commit details
    Browse the repository at this point in the history
  3. Added GRU and LSTM

    SeanNaren committed Apr 15, 2016
    Configuration menu
    Copy the full SHA
    31f5f17 View commit details
    Browse the repository at this point in the history
  4. Added GRU/LSTM to init

    SeanNaren committed Apr 15, 2016
    Configuration menu
    Copy the full SHA
    242d613 View commit details
    Browse the repository at this point in the history
  5. Removed direction set

    SeanNaren committed Apr 15, 2016
    Configuration menu
    Copy the full SHA
    170e90d View commit details
    Browse the repository at this point in the history
  6. Changed init

    SeanNaren committed Apr 15, 2016
    Configuration menu
    Copy the full SHA
    2b82dc0 View commit details
    Browse the repository at this point in the history
  7. Fixed module names

    SeanNaren committed Apr 15, 2016
    Configuration menu
    Copy the full SHA
    589fdfd View commit details
    Browse the repository at this point in the history
  8. added batchfirst param

    SeanNaren committed Apr 15, 2016
    Configuration menu
    Copy the full SHA
    04a1ca9 View commit details
    Browse the repository at this point in the history
  9. Put tranpose at top of method call

    SeanNaren committed Apr 15, 2016
    Configuration menu
    Copy the full SHA
    e7ce48b View commit details
    Browse the repository at this point in the history
  10. Added batchFirst to accGrad

    SeanNaren committed Apr 15, 2016
    Configuration menu
    Copy the full SHA
    a6ab506 View commit details
    Browse the repository at this point in the history
  11. Fixed transpose name

    SeanNaren committed Apr 15, 2016
    Configuration menu
    Copy the full SHA
    f40008b View commit details
    Browse the repository at this point in the history
  12. Fixed transpose name for grads

    SeanNaren committed Apr 15, 2016
    Configuration menu
    Copy the full SHA
    ba105f0 View commit details
    Browse the repository at this point in the history
  13. Added all transpose operations

    SeanNaren committed Apr 15, 2016
    Configuration menu
    Copy the full SHA
    d9062ee View commit details
    Browse the repository at this point in the history
  14. Added batchFirst to test params

    SeanNaren committed Apr 15, 2016
    Configuration menu
    Copy the full SHA
    df632a9 View commit details
    Browse the repository at this point in the history
  15. Added small comment to clarify batchFirst

    SeanNaren committed Apr 15, 2016
    Configuration menu
    Copy the full SHA
    e210208 View commit details
    Browse the repository at this point in the history
  16. Added description of recurrent modules

    SeanNaren committed Apr 15, 2016
    Configuration menu
    Copy the full SHA
    c420df1 View commit details
    Browse the repository at this point in the history

Commits on Apr 16, 2016

  1. Added separate RNN modules

    SeanNaren committed Apr 16, 2016
    Configuration menu
    Copy the full SHA
    a334ae2 View commit details
    Browse the repository at this point in the history
  2. Added modules to init

    SeanNaren committed Apr 16, 2016
    Configuration menu
    Copy the full SHA
    079a11c View commit details
    Browse the repository at this point in the history
  3. Added RNNReLU/Tanh description

    SeanNaren committed Apr 16, 2016
    Configuration menu
    Copy the full SHA
    0a9f8ca View commit details
    Browse the repository at this point in the history
  4. Added batchFirst to params

    SeanNaren committed Apr 16, 2016
    Configuration menu
    Copy the full SHA
    2cff977 View commit details
    Browse the repository at this point in the history
  5. Changed module calls in tests

    SeanNaren committed Apr 16, 2016
    Configuration menu
    Copy the full SHA
    fc7e761 View commit details
    Browse the repository at this point in the history
  6. Use torch sum instead of manual loop

    SeanNaren committed Apr 16, 2016
    Configuration menu
    Copy the full SHA
    50d4f7c View commit details
    Browse the repository at this point in the history

Commits on Apr 18, 2016

  1. Put resizing of tensors in a better place

    SeanNaren committed Apr 18, 2016
    Configuration menu
    Copy the full SHA
    b89f6c2 View commit details
    Browse the repository at this point in the history