This is an automated email from the ASF dual-hosted git repository.
krickert pushed a change to branch OPENNLP-1870
in repository https://gitbox.apache.org/repos/asf/opennlp.git
discard 80bac3e01 OPENNLP-1870: Read the fold table through the Direction
accessor in the annotation audit
discard 55e2daf4a OPENNLP-1870: Wire emoji annotations as opt-in features for
NameFinder, Doccat, and Sentiment
discard 697bcf7f0 OPENNLP-1870: EmojiAnnotator, the opt-in Term-adjacent
annotation surface
discard 38d907bd3 OPENNLP-1870: Derived flag facts: ISO 3166 decoding from
flag emoji sequences
discard b181fa03b OPENNLP-1870: Emoji annotation record store with bundled
facts and audit
add 728186acc OPENNLP-1891: Harden Deserialization in BaseModel (#1185)
add 011195f34 OPENNLP-1878: Non-breaking performance follow-up for
normalization and tokenization hot paths (#1161)
add 6038bf503 OPENNLP-1892: Precompile Tag patterns to avoid repeated
pattern compilation (#1187)
add 0e940a47a OPENNLP-1870: Emoji annotation record store with bundled
facts and audit
add 18ede766d OPENNLP-1870: Derived flag facts: ISO 3166 decoding from
flag emoji sequences
add e689b9d63 OPENNLP-1870: EmojiAnnotator, the opt-in Term-adjacent
annotation surface
add c681833e6 OPENNLP-1870: Wire emoji annotations as opt-in features for
NameFinder, Doccat, and Sentiment
add a948317e5 OPENNLP-1870: Read the fold table through the Direction
accessor in the annotation audit
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (80bac3e01)
\
N -- N -- N refs/heads/OPENNLP-1870 (a948317e5)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.../main/java/opennlp/tools/util/StringUtil.java | 8 +
.../opennlp/tools/util/normalizer/Alignment.java | 68 +++++-
.../opennlp/tools/util/normalizer/CharClass.java | 268 +++++++++++++--------
.../opennlp/tools/util/normalizer/CodePoints.java | 92 +++++++
.../tools/util/normalizer/AlignmentTest.java | 32 +++
.../tools/util/normalizer/CharClassTest.java | 91 ++++++-
.../tools/util/normalizer/CodePointsTest.java | 138 +++++++++++
.../src/main/java/opennlp/dl/AbstractDL.java | 4 +-
.../opennlp/dl/doccat/DocumentCategorizerDL.java | 12 +-
.../java/opennlp/dl/namefinder/NameFinderDL.java | 10 +-
.../parser/lang/es/AncoraSpanishHeadRules.java | 53 ++--
.../java/opennlp/tools/util/model/BaseModel.java | 42 +++-
.../AlignedAggregateCharSequenceNormalizer.java | 5 +-
.../opennlp/tools/util/normalizer/Confusables.java | 109 ++++++---
.../normalizer/DigitCharSequenceNormalizer.java | 15 +-
.../parser/lang/es/AncoraSpanishHeadRulesTest.java | 72 ++++++
.../tools/tokenize/uax29/WordSegmenterTest.java | 7 +
.../opennlp/tools/util/model/BaseModelTest.java | 91 +++++++
.../normalizer/AlignedNormalizerPipelineTest.java | 17 ++
.../tools/util/normalizer/ConfusablesTest.java | 49 ++++
.../util/normalizer/SetBasedNormalizerTest.java | 7 +
21 files changed, 1017 insertions(+), 173 deletions(-)
create mode 100644
opennlp-api/src/main/java/opennlp/tools/util/normalizer/CodePoints.java
create mode 100644
opennlp-api/src/test/java/opennlp/tools/util/normalizer/CodePointsTest.java
create mode 100644
opennlp-core/opennlp-runtime/src/test/java/opennlp/tools/parser/lang/es/AncoraSpanishHeadRulesTest.java
create mode 100644
opennlp-core/opennlp-runtime/src/test/java/opennlp/tools/util/model/BaseModelTest.java