This is an automated email from the ASF dual-hosted git repository.
krickert pushed a change to branch OPENNLP-1888-DocumentShape
in repository https://gitbox.apache.org/repos/asf/opennlp.git
discard 7b51ed0a7 OPENNLP-1888: Create toolkit layer keys through
namespace-applying factories on Layers
discard 246df2d62 OPENNLP-1888: Document the gold-layer convention
discard c61375fa4 OPENNLP-1888: State the index-reference invariants in the
specification text
discard 1addc7352 OPENNLP-1888: Declare per-key positional or document scope
discard cbc853607 OPENNLP-1888: Namespace the standard layer key ids
discard 5c2b64a4f OPENNLP-1888: Manual chapter, review-convention pass, and
key placement rule
discard 890521486 OPENNLP-1888: Add StringUtil.isBlank following the toolkit
whitespace definition
discard 12ec6d3ba OPENNLP-1888: Lemmatize per sentence, validate adapter
outputs, clear adaptive data on failure
discard 433b00a35 OPENNLP-1888: Parse per sentence in the adapters,
distinguish empty from missing layers, validate providers at build time
discard 55799c79a OPENNLP-1888: Pipeline example and contract tests for the
document container, javadoc precision pass
discard 7f7809878 OPENNLP-1888: Lemma and stem layer adapters
discard 0212090ee OPENNLP-1888: Document annotation container: typed
offset-anchored layers over the original text
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 35ee60d8a OPENNLP-1888: Document annotation container: typed
offset-anchored layers over the original text
add 03f1e83b2 OPENNLP-1888: Lemma and stem layer adapters
add 936d87ff9 OPENNLP-1888: Pipeline example and contract tests for the
document container, javadoc precision pass
add cb50c8287 OPENNLP-1888: Parse per sentence in the adapters,
distinguish empty from missing layers, validate providers at build time
add a5ce12fb2 OPENNLP-1888: Lemmatize per sentence, validate adapter
outputs, clear adaptive data on failure
add 489d37623 OPENNLP-1888: Add StringUtil.isBlank following the toolkit
whitespace definition
add ecb71b2a2 OPENNLP-1888: Manual chapter, review-convention pass, and
key placement rule
add c4d6b92c8 OPENNLP-1888: Namespace the standard layer key ids
add de294a2a3 OPENNLP-1888: Declare per-key positional or document scope
add 9d4218cd9 OPENNLP-1888: State the index-reference invariants in the
specification text
add 8a02d15ea OPENNLP-1888: Document the gold-layer convention
add 4cd9bebab OPENNLP-1888: Create toolkit layer keys through
namespace-applying factories on Layers
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 (7b51ed0a7)
\
N -- N -- N refs/heads/OPENNLP-1888-DocumentShape (4cd9bebab)
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