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

15 Adding CoreferenceProcessor #41

Open
wants to merge 65 commits into
base: master
Choose a base branch
from

Commits on Jun 15, 2022

  1. add empty coref processor

    KiaLAN committed Jun 15, 2022
    Configuration menu
    Copy the full SHA
    880329f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d9b3f71 View commit details
    Browse the repository at this point in the history

Commits on Jun 16, 2022

  1. fix output span

    KiaLAN committed Jun 16, 2022
    Configuration menu
    Copy the full SHA
    da36372 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6dafabe View commit details
    Browse the repository at this point in the history

Commits on Jun 17, 2022

  1. change nlp pipeline

    KiaLAN committed Jun 17, 2022
    Configuration menu
    Copy the full SHA
    0e18a8f View commit details
    Browse the repository at this point in the history
  2. Merge branch 'master' of https://github.com/asyml/ForteHealth into 15…

    …_coreference_processor
    KiaLAN committed Jun 17, 2022
    Configuration menu
    Copy the full SHA
    2d28246 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    fcafb22 View commit details
    Browse the repository at this point in the history
  4. fixed some comments

    KiaLAN committed Jun 17, 2022
    Configuration menu
    Copy the full SHA
    0b675aa View commit details
    Browse the repository at this point in the history
  5. fix comments and format files

    KiaLAN committed Jun 17, 2022
    Configuration menu
    Copy the full SHA
    d0812ee View commit details
    Browse the repository at this point in the history
  6. update requirements.txt

    KiaLAN committed Jun 17, 2022
    Configuration menu
    Copy the full SHA
    0769453 View commit details
    Browse the repository at this point in the history
  7. update setup.py

    KiaLAN committed Jun 17, 2022
    Configuration menu
    Copy the full SHA
    5a55b41 View commit details
    Browse the repository at this point in the history
  8. add unit test

    KiaLAN committed Jun 17, 2022
    Configuration menu
    Copy the full SHA
    fdc343e View commit details
    Browse the repository at this point in the history
  9. remove duplicated definition

    KiaLAN committed Jun 17, 2022
    Configuration menu
    Copy the full SHA
    85bf9bb View commit details
    Browse the repository at this point in the history
  10. fix ddt

    KiaLAN committed Jun 17, 2022
    Configuration menu
    Copy the full SHA
    9579923 View commit details
    Browse the repository at this point in the history
  11. fix import

    KiaLAN committed Jun 17, 2022
    Configuration menu
    Copy the full SHA
    4e41b34 View commit details
    Browse the repository at this point in the history
  12. formatting

    KiaLAN committed Jun 17, 2022
    Configuration menu
    Copy the full SHA
    443f886 View commit details
    Browse the repository at this point in the history
  13. remove long lines

    KiaLAN committed Jun 17, 2022
    Configuration menu
    Copy the full SHA
    5f3cf34 View commit details
    Browse the repository at this point in the history
  14. remove unused import

    KiaLAN committed Jun 17, 2022
    Configuration menu
    Copy the full SHA
    a11f209 View commit details
    Browse the repository at this point in the history
  15. add cython to dependency

    KiaLAN committed Jun 17, 2022
    Configuration menu
    Copy the full SHA
    07dbb02 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    008eb1b View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    ce2fd6f View commit details
    Browse the repository at this point in the history
  18. fix typo

    KiaLAN committed Jun 17, 2022
    Configuration menu
    Copy the full SHA
    e832289 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    c18f704 View commit details
    Browse the repository at this point in the history
  20. black format

    KiaLAN committed Jun 17, 2022
    Configuration menu
    Copy the full SHA
    a9cf38d View commit details
    Browse the repository at this point in the history
  21. add spacy

    KiaLAN committed Jun 17, 2022
    Configuration menu
    Copy the full SHA
    2c346fb View commit details
    Browse the repository at this point in the history
  22. add cython and pytest

    KiaLAN committed Jun 17, 2022
    Configuration menu
    Copy the full SHA
    037f33b View commit details
    Browse the repository at this point in the history
  23. remove commented code

    KiaLAN committed Jun 17, 2022
    Configuration menu
    Copy the full SHA
    5856d15 View commit details
    Browse the repository at this point in the history
  24. fix unit test data

    KiaLAN committed Jun 17, 2022
    Configuration menu
    Copy the full SHA
    03b6d69 View commit details
    Browse the repository at this point in the history
  25. fix unit test data 2

    KiaLAN committed Jun 17, 2022
    Configuration menu
    Copy the full SHA
    9e55211 View commit details
    Browse the repository at this point in the history
  26. Configuration menu
    Copy the full SHA
    2730b88 View commit details
    Browse the repository at this point in the history
  27. update unit test

    KiaLAN committed Jun 17, 2022
    Configuration menu
    Copy the full SHA
    5f6d024 View commit details
    Browse the repository at this point in the history
  28. remove TODO

    KiaLAN committed Jun 17, 2022
    Configuration menu
    Copy the full SHA
    c9d56a4 View commit details
    Browse the repository at this point in the history
  29. add load_lang_model

    KiaLAN committed Jun 17, 2022
    Configuration menu
    Copy the full SHA
    09114ad View commit details
    Browse the repository at this point in the history
  30. Configuration menu
    Copy the full SHA
    cb676c3 View commit details
    Browse the repository at this point in the history
  31. change import order

    KiaLAN committed Jun 17, 2022
    Configuration menu
    Copy the full SHA
    e5ef675 View commit details
    Browse the repository at this point in the history

Commits on Jul 1, 2022

  1. use ddt data and unpack

    KiaLAN committed Jul 1, 2022
    Configuration menu
    Copy the full SHA
    8b18e67 View commit details
    Browse the repository at this point in the history
  2. update config structure

    KiaLAN committed Jul 1, 2022
    Configuration menu
    Copy the full SHA
    299d6d3 View commit details
    Browse the repository at this point in the history
  3. add comment for lang

    KiaLAN committed Jul 1, 2022
    Configuration menu
    Copy the full SHA
    1a0e239 View commit details
    Browse the repository at this point in the history
  4. fix set() bug

    KiaLAN committed Jul 1, 2022
    Configuration menu
    Copy the full SHA
    36bcaba View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    3a20b8d View commit details
    Browse the repository at this point in the history
  6. formatting

    KiaLAN committed Jul 1, 2022
    Configuration menu
    Copy the full SHA
    26efabd View commit details
    Browse the repository at this point in the history
  7. udpate test

    KiaLAN committed Jul 1, 2022
    Configuration menu
    Copy the full SHA
    f7db024 View commit details
    Browse the repository at this point in the history
  8. shorten comment

    KiaLAN committed Jul 1, 2022
    Configuration menu
    Copy the full SHA
    f453e60 View commit details
    Browse the repository at this point in the history
  9. remove store_scores

    KiaLAN committed Jul 1, 2022
    Configuration menu
    Copy the full SHA
    1d006fd View commit details
    Browse the repository at this point in the history
  10. fix assertion

    KiaLAN committed Jul 1, 2022
    Configuration menu
    Copy the full SHA
    dcec89f View commit details
    Browse the repository at this point in the history
  11. remove store_scores in test

    KiaLAN committed Jul 1, 2022
    Configuration menu
    Copy the full SHA
    465341d View commit details
    Browse the repository at this point in the history
  12. rename document to entry

    KiaLAN committed Jul 1, 2022
    Configuration menu
    Copy the full SHA
    3ee2f7b View commit details
    Browse the repository at this point in the history
  13. fix cfg_inference kwargs

    KiaLAN committed Jul 1, 2022
    Configuration menu
    Copy the full SHA
    1d44ff7 View commit details
    Browse the repository at this point in the history
  14. add conv_dict test

    KiaLAN committed Jul 1, 2022
    Configuration menu
    Copy the full SHA
    0ad95d8 View commit details
    Browse the repository at this point in the history
  15. black reformat

    KiaLAN committed Jul 1, 2022
    Configuration menu
    Copy the full SHA
    87b0996 View commit details
    Browse the repository at this point in the history
  16. fix pylint

    KiaLAN committed Jul 1, 2022
    Configuration menu
    Copy the full SHA
    148e918 View commit details
    Browse the repository at this point in the history
  17. update comment

    KiaLAN committed Jul 1, 2022
    Configuration menu
    Copy the full SHA
    2fefe18 View commit details
    Browse the repository at this point in the history
  18. update comment

    KiaLAN committed Jul 1, 2022
    Configuration menu
    Copy the full SHA
    662b324 View commit details
    Browse the repository at this point in the history

Commits on Jul 9, 2022

  1. try one

    KiaLAN committed Jul 9, 2022
    Configuration menu
    Copy the full SHA
    6bcc58c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ae31363 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    74ffad4 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f3dc9e3 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    2581edb View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    e09dfe7 View commit details
    Browse the repository at this point in the history
  7. remove 'model' argument

    KiaLAN committed Jul 9, 2022
    Configuration menu
    Copy the full SHA
    c925f5b View commit details
    Browse the repository at this point in the history
  8. fix rebundunt import and args

    KiaLAN committed Jul 9, 2022
    Configuration menu
    Copy the full SHA
    f6c1a8b View commit details
    Browse the repository at this point in the history

Commits on Jul 16, 2022

  1. fix merge conflict

    KiaLAN committed Jul 16, 2022
    Configuration menu
    Copy the full SHA
    035a2c8 View commit details
    Browse the repository at this point in the history
  2. fix merge conflict

    KiaLAN committed Jul 16, 2022
    Configuration menu
    Copy the full SHA
    7b31beb View commit details
    Browse the repository at this point in the history
  3. fix merge conflict

    KiaLAN committed Jul 16, 2022
    Configuration menu
    Copy the full SHA
    5ef774a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    ffe88f6 View commit details
    Browse the repository at this point in the history