This is an automated email from the ASF dual-hosted git repository.
mawiesne pushed a change to branch opennlp-2.x
in repository https://gitbox.apache.org/repos/asf/opennlp.git
from bd6c3de7b [2.x]: Bump org.jacoco:jacoco-maven-plugin from 0.8.14 to
0.8.15 (#1070)
new 717fb2982 OPENNLP-1518: Roberta-based Models - Add support for
utilization via Onnx (#998)
new 093922066 OPENNLP-1839 : Fix native memory leak and vocabulary NPE in
DocumentCategorizerDL (#1074)
new d1e48c89b OPENNLP-1840: Fix native memory leak and vocabulary NPE in
NameFinderDL (#1076)
The 3 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:
.../src/main/java/opennlp/dl/AbstractDL.java | 89 ++++++++++++++++--
.../opennlp/dl/doccat/DocumentCategorizerDL.java | 88 +++++++++++++-----
.../java/opennlp/dl/namefinder/NameFinderDL.java | 73 ++++++++++-----
.../java/opennlp/dl/vectors/SentenceVectorsDL.java | 4 +-
.../src/test/java/opennlp/dl/LoadVocabTest.java | 102 +++++++++++++++++++++
.../dl/doccat/DocumentCategorizerDLTest.java | 60 ++++++++++++
.../opennlp/dl/namefinder/NameFinderDLTest.java | 60 ++++++++++++
.../src/test/resources/opennlp/dl/vocab-plain.txt | 6 ++
.../src/test/resources/opennlp/dl/vocab.json | 8 ++
.../opennlp/tools/tokenize/WordpieceTokenizer.java | 58 ++++++++++--
10 files changed, 483 insertions(+), 65 deletions(-)
create mode 100644 opennlp-dl/src/test/java/opennlp/dl/LoadVocabTest.java
create mode 100644
opennlp-dl/src/test/java/opennlp/dl/doccat/DocumentCategorizerDLTest.java
create mode 100644
opennlp-dl/src/test/java/opennlp/dl/namefinder/NameFinderDLTest.java
create mode 100644 opennlp-dl/src/test/resources/opennlp/dl/vocab-plain.txt
create mode 100644 opennlp-dl/src/test/resources/opennlp/dl/vocab.json