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

Task Parsing Part for Pytorch Implementation #552

Draft
wants to merge 134 commits into
base: master
Choose a base branch
from
Draft

Commits on Sep 16, 2021

  1. init code

    ZhengTang1120 committed Sep 16, 2021
    9 Configuration menu
    Copy the full SHA
    d86fccb View commit details
    Browse the repository at this point in the history
  2. Update columnReader.py

    ZhengTang1120 committed Sep 16, 2021
    Configuration menu
    Copy the full SHA
    07c4142 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c9ec5b8 View commit details
    Browse the repository at this point in the history

Commits on Sep 20, 2021

  1. initial code for metal

    ZhengTang1120 committed Sep 20, 2021
    4 Configuration menu
    Copy the full SHA
    9311763 View commit details
    Browse the repository at this point in the history

Commits on Sep 21, 2021

  1. Configuration menu
    Copy the full SHA
    a33fe36 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    822f6c2 View commit details
    Browse the repository at this point in the history

Commits on Sep 25, 2021

  1. Configuration menu
    Copy the full SHA
    8ef31d2 View commit details
    Browse the repository at this point in the history
  2. init code for rnnLayer

    also refined some functions in embedding layer
    ZhengTang1120 committed Sep 25, 2021
    Configuration menu
    Copy the full SHA
    ddcf223 View commit details
    Browse the repository at this point in the history

Commits on Sep 29, 2021

  1. 4 Configuration menu
    Copy the full SHA
    03229a4 View commit details
    Browse the repository at this point in the history
  2. greedy forward layer

    ZhengTang1120 committed Sep 29, 2021
    Configuration menu
    Copy the full SHA
    5a6b128 View commit details
    Browse the repository at this point in the history

Commits on Sep 30, 2021

  1. 1 Configuration menu
    Copy the full SHA
    0aa3aaa View commit details
    Browse the repository at this point in the history
  2. traverse the code, fixed bugs

    Now, the model initialization part is working
    ZhengTang1120 committed Sep 30, 2021
    3 Configuration menu
    Copy the full SHA
    e121618 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4cbeb68 View commit details
    Browse the repository at this point in the history
  4. finally training...

    ZhengTang1120 committed Sep 30, 2021
    Configuration menu
    Copy the full SHA
    470eca9 View commit details
    Browse the repository at this point in the history

Commits on Oct 1, 2021

  1. Configuration menu
    Copy the full SHA
    2b91e03 View commit details
    Browse the repository at this point in the history
  2. fix some minor issues

    ZhengTang1120 committed Oct 1, 2021
    Configuration menu
    Copy the full SHA
    1892713 View commit details
    Browse the repository at this point in the history

Commits on Oct 7, 2021

  1. Configuration menu
    Copy the full SHA
    850e9d2 View commit details
    Browse the repository at this point in the history
  2. Update forwardLayer.py

    ZhengTang1120 committed Oct 7, 2021
    Configuration menu
    Copy the full SHA
    b8e2d3c View commit details
    Browse the repository at this point in the history
  3. Update forwardLayer.py

    ZhengTang1120 committed Oct 7, 2021
    Configuration menu
    Copy the full SHA
    c5476bc View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    9199eed View commit details
    Browse the repository at this point in the history

Commits on Oct 9, 2021

  1. Configuration menu
    Copy the full SHA
    fdaf8e4 View commit details
    Browse the repository at this point in the history

Commits on Oct 19, 2021

  1. add features and fixed bugs

    fixed bugs on UNK word embedding
    set dropout prob to 0.1
    add clipping
    ZhengTang1120 committed Oct 19, 2021
    4 Configuration menu
    Copy the full SHA
    c2b7193 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    66e6400 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    46bc27e View commit details
    Browse the repository at this point in the history

Commits on Oct 20, 2021

  1. Update seqScorer.py

    ZhengTang1120 committed Oct 20, 2021
    Configuration menu
    Copy the full SHA
    21d861f View commit details
    Browse the repository at this point in the history
  2. Update seqScorer.py

    ZhengTang1120 committed Oct 20, 2021
    Configuration menu
    Copy the full SHA
    a1a4465 View commit details
    Browse the repository at this point in the history

Commits on Oct 21, 2021

  1. fixed the eval() bug

    ZhengTang1120 committed Oct 21, 2021
    Configuration menu
    Copy the full SHA
    cfb5479 View commit details
    Browse the repository at this point in the history

Commits on Oct 27, 2021

  1. Configuration menu
    Copy the full SHA
    3ee92fe View commit details
    Browse the repository at this point in the history
  2. missed import...

    ZhengTang1120 committed Oct 27, 2021
    Configuration menu
    Copy the full SHA
    a37ef47 View commit details
    Browse the repository at this point in the history
  3. debugged for parsing

    ZhengTang1120 committed Oct 27, 2021
    Configuration menu
    Copy the full SHA
    5e9434b View commit details
    Browse the repository at this point in the history

Commits on Oct 28, 2021

  1. fixed bugs for parsing

    ZhengTang1120 committed Oct 28, 2021
    Configuration menu
    Copy the full SHA
    ce00bd7 View commit details
    Browse the repository at this point in the history
  2. export model to onnx

    ZhengTang1120 committed Oct 28, 2021
    Configuration menu
    Copy the full SHA
    d00c087 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ee1c6dd View commit details
    Browse the repository at this point in the history
  4. fixed bug in saving x2i

    ZhengTang1120 committed Oct 28, 2021
    Configuration menu
    Copy the full SHA
    3f89fa7 View commit details
    Browse the repository at this point in the history

Commits on Oct 29, 2021

  1. fixed some bugs

    also trying the new weight decay strategy: (rule out biases and norms)
    ZhengTang1120 committed Oct 29, 2021
    Configuration menu
    Copy the full SHA
    96d7dcf View commit details
    Browse the repository at this point in the history
  2. remove clipping

    ZhengTang1120 committed Oct 29, 2021
    Configuration menu
    Copy the full SHA
    6a37769 View commit details
    Browse the repository at this point in the history

Commits on Nov 3, 2021

  1. add scheduler

    ZhengTang1120 committed Nov 3, 2021
    Configuration menu
    Copy the full SHA
    e577f3c View commit details
    Browse the repository at this point in the history

Commits on Nov 16, 2021

  1. Configuration menu
    Copy the full SHA
    c8ec489 View commit details
    Browse the repository at this point in the history
  2. Update metal.py

    ZhengTang1120 committed Nov 16, 2021
    Configuration menu
    Copy the full SHA
    1a9d4bd View commit details
    Browse the repository at this point in the history

Commits on Dec 2, 2021

  1. Configuration menu
    Copy the full SHA
    dc4e77b View commit details
    Browse the repository at this point in the history
  2. get dummy input

    ZhengTang1120 committed Dec 2, 2021
    2 Configuration menu
    Copy the full SHA
    86f1250 View commit details
    Browse the repository at this point in the history
  3. Create pytorch2onnx.py

    ZhengTang1120 committed Dec 2, 2021
    Configuration menu
    Copy the full SHA
    3e1fd11 View commit details
    Browse the repository at this point in the history
  4. Update pytorch2onnx.py

    ZhengTang1120 committed Dec 2, 2021
    Configuration menu
    Copy the full SHA
    d9ed82c View commit details
    Browse the repository at this point in the history
  5. Update pytorch2onnx.py

    ZhengTang1120 committed Dec 2, 2021
    Configuration menu
    Copy the full SHA
    f29403e View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    b36cbab View commit details
    Browse the repository at this point in the history
  7. remove the redundant

    ZhengTang1120 committed Dec 2, 2021
    Configuration menu
    Copy the full SHA
    045c581 View commit details
    Browse the repository at this point in the history

Commits on Dec 6, 2021

  1. Update pytorch2onnx.py

    ZhengTang1120 committed Dec 6, 2021
    Configuration menu
    Copy the full SHA
    de010c3 View commit details
    Browse the repository at this point in the history
  2. Update pytorch2onnx.py

    ZhengTang1120 committed Dec 6, 2021
    Configuration menu
    Copy the full SHA
    78c2f27 View commit details
    Browse the repository at this point in the history
  3. Update pytorch2onnx.py

    ZhengTang1120 committed Dec 6, 2021
    Configuration menu
    Copy the full SHA
    2347df5 View commit details
    Browse the repository at this point in the history

Commits on Dec 7, 2021

  1. Update pytorch2onnx.py

    ZhengTang1120 committed Dec 7, 2021
    Configuration menu
    Copy the full SHA
    70a9370 View commit details
    Browse the repository at this point in the history

Commits on Dec 9, 2021

  1. test the onnx model

    I have to save the character RNN in separate model, since the sentence length and word length are all varied and onnx is not happy with these kind of input...
    ZhengTang1120 committed Dec 9, 2021
    Configuration menu
    Copy the full SHA
    d229259 View commit details
    Browse the repository at this point in the history

Commits on Dec 15, 2021

  1. Create test_onnx.scala

    ZhengTang1120 committed Dec 15, 2021
    Configuration menu
    Copy the full SHA
    5f328f0 View commit details
    Browse the repository at this point in the history
  2. Delete test_onnx.scala

    ZhengTang1120 committed Dec 15, 2021
    Configuration menu
    Copy the full SHA
    424e67a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    80aae2d View commit details
    Browse the repository at this point in the history
  4. Update test_onnx.py

    ZhengTang1120 committed Dec 15, 2021
    Configuration menu
    Copy the full SHA
    3c90227 View commit details
    Browse the repository at this point in the history

Commits on Dec 16, 2021

  1. Update pytorch2onnx.py

    ZhengTang1120 committed Dec 16, 2021
    Configuration menu
    Copy the full SHA
    9007983 View commit details
    Browse the repository at this point in the history
  2. Update test_onnx.py

    ZhengTang1120 committed Dec 16, 2021
    1 Configuration menu
    Copy the full SHA
    82ba700 View commit details
    Browse the repository at this point in the history

Commits on Jan 26, 2022

  1. Configuration menu
    Copy the full SHA
    46fb8ad View commit details
    Browse the repository at this point in the history
  2. Update test_onnx.py

    ZhengTang1120 committed Jan 26, 2022
    Configuration menu
    Copy the full SHA
    a734a89 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c38dc95 View commit details
    Browse the repository at this point in the history
  4. debug the randomness

    ZhengTang1120 committed Jan 26, 2022
    Configuration menu
    Copy the full SHA
    753c20e View commit details
    Browse the repository at this point in the history
  5. debug randomness

    ZhengTang1120 committed Jan 26, 2022
    Configuration menu
    Copy the full SHA
    dd6517b View commit details
    Browse the repository at this point in the history
  6. Update metal.py

    ZhengTang1120 committed Jan 26, 2022
    Configuration menu
    Copy the full SHA
    fea59e0 View commit details
    Browse the repository at this point in the history
  7. debug randomness

    ZhengTang1120 committed Jan 26, 2022
    Configuration menu
    Copy the full SHA
    6d8446a View commit details
    Browse the repository at this point in the history
  8. Update metal.py

    ZhengTang1120 committed Jan 26, 2022
    Configuration menu
    Copy the full SHA
    a4a1db6 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    4889201 View commit details
    Browse the repository at this point in the history
  10. Update layers.py

    ZhengTang1120 committed Jan 26, 2022
    Configuration menu
    Copy the full SHA
    3181031 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    593bc7f View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    df5cc6a View commit details
    Browse the repository at this point in the history
  13. debug randomness

    ZhengTang1120 committed Jan 26, 2022
    Configuration menu
    Copy the full SHA
    cd5368a View commit details
    Browse the repository at this point in the history
  14. Update forwardLayer.py

    ZhengTang1120 committed Jan 26, 2022
    Configuration menu
    Copy the full SHA
    f19eaf1 View commit details
    Browse the repository at this point in the history
  15. dropout

    ZhengTang1120 committed Jan 26, 2022
    Configuration menu
    Copy the full SHA
    31201f0 View commit details
    Browse the repository at this point in the history
  16. debug dropout

    ZhengTang1120 committed Jan 26, 2022
    Configuration menu
    Copy the full SHA
    f00163e View commit details
    Browse the repository at this point in the history
  17. Update forwardLayer.py

    ZhengTang1120 committed Jan 26, 2022
    Configuration menu
    Copy the full SHA
    4a194a7 View commit details
    Browse the repository at this point in the history

Commits on Jan 27, 2022

  1. average models

    ZhengTang1120 committed Jan 27, 2022
    Configuration menu
    Copy the full SHA
    0d3f146 View commit details
    Browse the repository at this point in the history
  2. Update run.py

    ZhengTang1120 committed Jan 27, 2022
    Configuration menu
    Copy the full SHA
    981a45a View commit details
    Browse the repository at this point in the history
  3. Update metal.py

    ZhengTang1120 committed Jan 27, 2022
    Configuration menu
    Copy the full SHA
    b9a8ced View commit details
    Browse the repository at this point in the history
  4. Update run.py

    ZhengTang1120 committed Jan 27, 2022
    Configuration menu
    Copy the full SHA
    f4c9f93 View commit details
    Browse the repository at this point in the history
  5. Update run.py

    ZhengTang1120 committed Jan 27, 2022
    Configuration menu
    Copy the full SHA
    36adfb6 View commit details
    Browse the repository at this point in the history
  6. fixed typo

    ZhengTang1120 committed Jan 27, 2022
    Configuration menu
    Copy the full SHA
    aa491ff View commit details
    Browse the repository at this point in the history
  7. debug randomness

    ZhengTang1120 committed Jan 27, 2022
    Configuration menu
    Copy the full SHA
    dd0dd2a View commit details
    Browse the repository at this point in the history
  8. Update mtl-en-ner.conf

    ZhengTang1120 committed Jan 27, 2022
    Configuration menu
    Copy the full SHA
    eeab1b0 View commit details
    Browse the repository at this point in the history
  9. Update utils.py

    ZhengTang1120 committed Jan 27, 2022
    Configuration menu
    Copy the full SHA
    6cda51e View commit details
    Browse the repository at this point in the history
  10. Update utils.py

    ZhengTang1120 committed Jan 27, 2022
    Configuration menu
    Copy the full SHA
    d8e6734 View commit details
    Browse the repository at this point in the history
  11. solve the randomness

    ZhengTang1120 committed Jan 27, 2022
    Configuration menu
    Copy the full SHA
    2b8a78c View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    7c83bfe View commit details
    Browse the repository at this point in the history
  13. Update mtl-en-ner.conf

    ZhengTang1120 committed Jan 27, 2022
    Configuration menu
    Copy the full SHA
    f44f00d View commit details
    Browse the repository at this point in the history
  14. Update forwardLayer.py

    ZhengTang1120 committed Jan 27, 2022
    Configuration menu
    Copy the full SHA
    14bede9 View commit details
    Browse the repository at this point in the history
  15. Update metal.py

    ZhengTang1120 committed Jan 27, 2022
    Configuration menu
    Copy the full SHA
    382958b View commit details
    Browse the repository at this point in the history
  16. fix bugs

    ZhengTang1120 committed Jan 27, 2022
    Configuration menu
    Copy the full SHA
    a67bc71 View commit details
    Browse the repository at this point in the history
  17. Update run.py

    ZhengTang1120 committed Jan 27, 2022
    Configuration menu
    Copy the full SHA
    89104bb View commit details
    Browse the repository at this point in the history
  18. fix bug

    ZhengTang1120 committed Jan 27, 2022
    Configuration menu
    Copy the full SHA
    8d31a31 View commit details
    Browse the repository at this point in the history
  19. Update forwardLayer.py

    ZhengTang1120 committed Jan 27, 2022
    Configuration menu
    Copy the full SHA
    9435f6d View commit details
    Browse the repository at this point in the history
  20. Update forwardLayer.py

    ZhengTang1120 committed Jan 27, 2022
    Configuration menu
    Copy the full SHA
    1752b26 View commit details
    Browse the repository at this point in the history
  21. Update forwardLayer.py

    ZhengTang1120 committed Jan 27, 2022
    Configuration menu
    Copy the full SHA
    c6d8fcc View commit details
    Browse the repository at this point in the history

Commits on Feb 3, 2022

  1. Update forwardLayer.py

    ZhengTang1120 committed Feb 3, 2022
    Configuration menu
    Copy the full SHA
    249afc9 View commit details
    Browse the repository at this point in the history
  2. fix bug

    ZhengTang1120 committed Feb 3, 2022
    Configuration menu
    Copy the full SHA
    fe4367b View commit details
    Browse the repository at this point in the history
  3. remove debug print

    ZhengTang1120 committed Feb 3, 2022
    Configuration menu
    Copy the full SHA
    1030177 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    0b57ad8 View commit details
    Browse the repository at this point in the history
  5. Update pytorch2onnx.py

    ZhengTang1120 committed Feb 3, 2022
    Configuration menu
    Copy the full SHA
    bab975e View commit details
    Browse the repository at this point in the history
  6. Update pytorch2onnx.py

    ZhengTang1120 committed Feb 3, 2022
    Configuration menu
    Copy the full SHA
    50c1127 View commit details
    Browse the repository at this point in the history
  7. Update pytorch2onnx.py

    ZhengTang1120 committed Feb 3, 2022
    Configuration menu
    Copy the full SHA
    05c090a View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    08fd0d0 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    f567220 View commit details
    Browse the repository at this point in the history
  10. Update pytorch2onnx.py

    ZhengTang1120 committed Feb 3, 2022
    Configuration menu
    Copy the full SHA
    f8f1ca1 View commit details
    Browse the repository at this point in the history
  11. Update pytorch2onnx.py

    ZhengTang1120 committed Feb 3, 2022
    Configuration menu
    Copy the full SHA
    298bdc4 View commit details
    Browse the repository at this point in the history
  12. Update pytorch2onnx.py

    ZhengTang1120 committed Feb 3, 2022
    Configuration menu
    Copy the full SHA
    949522c View commit details
    Browse the repository at this point in the history
  13. Update pytorch2onnx.py

    ZhengTang1120 committed Feb 3, 2022
    Configuration menu
    Copy the full SHA
    d05d81b View commit details
    Browse the repository at this point in the history
  14. Update pytorch2onnx.py

    ZhengTang1120 committed Feb 3, 2022
    Configuration menu
    Copy the full SHA
    9bc0ac8 View commit details
    Browse the repository at this point in the history
  15. Update pytorch2onnx.py

    ZhengTang1120 committed Feb 3, 2022
    Configuration menu
    Copy the full SHA
    ebbfdcf View commit details
    Browse the repository at this point in the history
  16. Update pytorch2onnx.py

    ZhengTang1120 committed Feb 3, 2022
    Configuration menu
    Copy the full SHA
    12a777d View commit details
    Browse the repository at this point in the history
  17. Update pytorch2onnx.py

    ZhengTang1120 committed Feb 3, 2022
    Configuration menu
    Copy the full SHA
    84d5517 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    a2bfc83 View commit details
    Browse the repository at this point in the history
  19. Update pytorch2onnx.py

    ZhengTang1120 committed Feb 3, 2022
    Configuration menu
    Copy the full SHA
    3269cd4 View commit details
    Browse the repository at this point in the history
  20. Update pytorch2onnx.py

    ZhengTang1120 committed Feb 3, 2022
    Configuration menu
    Copy the full SHA
    c90015c View commit details
    Browse the repository at this point in the history
  21. Update pytorch2onnx.py

    ZhengTang1120 committed Feb 3, 2022
    Configuration menu
    Copy the full SHA
    81c1bc5 View commit details
    Browse the repository at this point in the history
  22. Update pytorch2onnx.py

    ZhengTang1120 committed Feb 3, 2022
    Configuration menu
    Copy the full SHA
    91911ae View commit details
    Browse the repository at this point in the history
  23. debug decoder

    ZhengTang1120 committed Feb 3, 2022
    Configuration menu
    Copy the full SHA
    b1be4b5 View commit details
    Browse the repository at this point in the history
  24. decoder error...

    ZhengTang1120 committed Feb 3, 2022
    Configuration menu
    Copy the full SHA
    40654a6 View commit details
    Browse the repository at this point in the history
  25. Update pytorch2onnx.py

    ZhengTang1120 committed Feb 3, 2022
    Configuration menu
    Copy the full SHA
    7cda4dd View commit details
    Browse the repository at this point in the history
  26. Configuration menu
    Copy the full SHA
    7e673e7 View commit details
    Browse the repository at this point in the history
  27. Configuration menu
    Copy the full SHA
    1857a5f View commit details
    Browse the repository at this point in the history
  28. Configuration menu
    Copy the full SHA
    14beb42 View commit details
    Browse the repository at this point in the history

Commits on Mar 3, 2022

  1. Configuration menu
    Copy the full SHA
    3aee7e7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    cd46faa View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    fd514a2 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    2786971 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    9b97c68 View commit details
    Browse the repository at this point in the history

Commits on Mar 9, 2022

  1. Update pytorch2onnx.py

    ZhengTang1120 committed Mar 9, 2022
    Configuration menu
    Copy the full SHA
    a20b2c5 View commit details
    Browse the repository at this point in the history

Commits on Mar 10, 2022

  1. Configuration menu
    Copy the full SHA
    a002222 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    743bbc5 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ca34b1c View commit details
    Browse the repository at this point in the history

Commits on Mar 21, 2022

  1. Configuration menu
    Copy the full SHA
    52d903c View commit details
    Browse the repository at this point in the history
  2. Update mtl-en-srla.conf

    ZhengTang1120 committed Mar 21, 2022
    Configuration menu
    Copy the full SHA
    2057c8a View commit details
    Browse the repository at this point in the history