You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nlpcraft.apache.org by se...@apache.org on 2020/06/11 12:32:07 UTC

[incubator-nlpcraft] branch NLPCRAFT-70 updated (1e219ac -> 0476169)

This is an automated email from the ASF dual-hosted git repository.

sergeykamov pushed a change to branch NLPCRAFT-70
in repository https://gitbox.apache.org/repos/asf/incubator-nlpcraft.git.


    from 1e219ac  Merge branch 'master' into NLPCRAFT-70
     add 359ef9f  NLPCRAFT-67: Add auto-enrich using Bert and FastTest models
     add 0e33d6a  NLPCRAFT-67: After-review changes
     add eeac1b9  NLPCRAFT-67: Moved and renamed root folder
     add 2e4337a  NLPCRAFT-67: After review fixes
     add b614527  NLPCRAFT-67: Add batching
     add 068c957  NLPCRAFT-67: Add CUDA support
     add 3d1c0eb  NLPCRAFT-67: Add README
     add feeca52  Merge remote-tracking branch 'origin/master' into NLPCRAFT-67
     new 0476169  Merge branch 'NLPCRAFT-67' into NLPCRAFT-70

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .gitignore                                         |   3 +
 nlpcraft/src/main/python/ctxword/README.md         |  34 ++++
 .../src/main/python/ctxword/bertft/__init__.py     |  18 ++
 nlpcraft/src/main/python/ctxword/bertft/bertft.py  | 191 +++++++++++++++++++
 nlpcraft/src/main/python/ctxword/bertft/utils.py   |  19 ++
 .../python/ctxword/bin/install_dependencies.sh     |  39 ++++
 .../src/main/python/ctxword/bin/predict.sh         |   5 +-
 .../src/main/python/ctxword/bin/py_requirements    |  11 +-
 .../src/main/python/ctxword/bin/start_server.sh    |   5 +-
 .../ctxword/jupyter/Trasnsformers-FastText.ipynb   | 206 +++++++++++++++++++++
 nlpcraft/src/main/python/ctxword/server.py         |  67 +++++++
 11 files changed, 586 insertions(+), 12 deletions(-)
 create mode 100644 nlpcraft/src/main/python/ctxword/README.md
 create mode 100644 nlpcraft/src/main/python/ctxword/bertft/__init__.py
 create mode 100644 nlpcraft/src/main/python/ctxword/bertft/bertft.py
 create mode 100644 nlpcraft/src/main/python/ctxword/bertft/utils.py
 create mode 100755 nlpcraft/src/main/python/ctxword/bin/install_dependencies.sh
 copy sql/postgres/database.sh => nlpcraft/src/main/python/ctxword/bin/predict.sh (84%)
 copy sql/postgres/database.sh => nlpcraft/src/main/python/ctxword/bin/py_requirements (80%)
 mode change 100755 => 100644
 copy sql/postgres/database.sh => nlpcraft/src/main/python/ctxword/bin/start_server.sh (87%)
 create mode 100644 nlpcraft/src/main/python/ctxword/jupyter/Trasnsformers-FastText.ipynb
 create mode 100644 nlpcraft/src/main/python/ctxword/server.py


[incubator-nlpcraft] 01/01: Merge branch 'NLPCRAFT-67' into NLPCRAFT-70

Posted by se...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

sergeykamov pushed a commit to branch NLPCRAFT-70
in repository https://gitbox.apache.org/repos/asf/incubator-nlpcraft.git

commit 0476169f9ee330f862540e8f9ed366976142250e
Merge: 1e219ac feeca52
Author: Sergey Kamov <se...@apache.org>
AuthorDate: Thu Jun 11 15:31:46 2020 +0300

    Merge branch 'NLPCRAFT-67' into NLPCRAFT-70

 .gitignore                                         |   3 +
 nlpcraft/src/main/python/ctxword/README.md         |  34 ++++
 .../src/main/python/ctxword/bertft/__init__.py     |  18 ++
 nlpcraft/src/main/python/ctxword/bertft/bertft.py  | 191 +++++++++++++++++++
 nlpcraft/src/main/python/ctxword/bertft/utils.py   |  19 ++
 .../python/ctxword/bin/install_dependencies.sh     |  39 ++++
 nlpcraft/src/main/python/ctxword/bin/predict.sh    |  19 ++
 .../src/main/python/ctxword/bin/py_requirements    |  25 +++
 .../src/main/python/ctxword/bin/start_server.sh    |  19 ++
 .../ctxword/jupyter/Trasnsformers-FastText.ipynb   | 206 +++++++++++++++++++++
 nlpcraft/src/main/python/ctxword/server.py         |  67 +++++++
 11 files changed, 640 insertions(+)