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
omit 7e65aad4d OPENNLP-1888: Anchor the Document thread-safety note to
immutability
omit e017205ff OPENNLP-1888: Javadoc container overrides and cite the
pipeline example test
omit efaf71c59 OPENNLP-1888: Create toolkit layer keys through
namespace-applying factories on Layers
omit 25373fd65 OPENNLP-1888: Document the gold-layer convention
omit 8cc427de1 OPENNLP-1888: State the index-reference invariants in the
specification text
omit 0c44492af OPENNLP-1888: Declare per-key positional or document scope
omit 47b693e0a OPENNLP-1888: Namespace the standard layer key ids
omit f7af70bca OPENNLP-1888: Manual chapter, review-convention pass, and
key placement rule
omit 2a2553d6b OPENNLP-1888: Add StringUtil.isBlank following the toolkit
whitespace definition
omit fe7d06d96 OPENNLP-1888: Lemmatize per sentence, validate adapter
outputs, clear adaptive data on failure
omit f78676d19 OPENNLP-1888: Parse per sentence in the adapters,
distinguish empty from missing layers, validate providers at build time
omit 6192017bb OPENNLP-1888: Pipeline example and contract tests for the
document container, javadoc precision pass
omit 7c211eafb OPENNLP-1888: Lemma and stem layer adapters
omit 6076c74bd OPENNLP-1888: Document annotation container: typed
offset-anchored layers over the original text
add 9951bfd0a OPENNLP-1870: Add opt-in emoji annotations for NameFinder,
Doccat, and Sentiment (#1177)
add 8eef045b6 Minor: Regenerated NOTICE File for
9951bfd0ae0aee8ca77eb436702e5544fbea2afc
add 03903f2df OPENNLP-1888: Document annotation container: typed
offset-anchored layers over the original text
add f0ef9fbbb OPENNLP-1888: Lemma and stem layer adapters
add a3a2e0f27 OPENNLP-1888: Pipeline example and contract tests for the
document container, javadoc precision pass
add d23084eb5 OPENNLP-1888: Parse per sentence in the adapters,
distinguish empty from missing layers, validate providers at build time
add fbbe347df OPENNLP-1888: Lemmatize per sentence, validate adapter
outputs, clear adaptive data on failure
add 406759606 OPENNLP-1888: Add StringUtil.isBlank following the toolkit
whitespace definition
add bb7777e6d OPENNLP-1888: Manual chapter, review-convention pass, and
key placement rule
add 2743e7b55 OPENNLP-1888: Namespace the standard layer key ids
add 2cc503241 OPENNLP-1888: Declare per-key positional or document scope
add 58304f259 OPENNLP-1888: State the index-reference invariants in the
specification text
add 8ee474c28 OPENNLP-1888: Document the gold-layer convention
add 1db33f25d OPENNLP-1888: Create toolkit layer keys through
namespace-applying factories on Layers
add 0308e9cc8 OPENNLP-1888: Javadoc container overrides and cite the
pipeline example test
add b920e43fc OPENNLP-1888: Anchor the Document thread-safety note to
immutability
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 (7e65aad4d)
\
N -- N -- N refs/heads/OPENNLP-1888-DocumentShape (b920e43fc)
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:
LICENSE | 8 +-
NOTICE | 9 +
.../tools/doccat/EmojiFeatureGenerator.java | 82 +++++++
.../sentiment/EmojiSentimentContextGenerator.java | 87 +++++++
.../tools/sentiment/EmojiSentimentFactory.java} | 46 ++--
.../EmojiAnnotationFeatureGenerator.java | 83 +++++++
...=> EmojiAnnotationFeatureGeneratorFactory.java} | 24 +-
.../tools/util/normalizer/EmojiAnnotation.java | 197 ++++++++++++++++
.../tools/util/normalizer/EmojiAnnotationJoin.java | 51 ++++
.../tools/util/normalizer/EmojiAnnotations.java | 256 +++++++++++++++++++++
.../tools/util/normalizer/EmojiAnnotator.java | 197 ++++++++++++++++
.../tools/util/normalizer/EmojiCategory.java | 62 +++++
.../tools/util/normalizer/EmojiEntityType.java | 57 +++++
.../opennlp/tools/util/normalizer/EmojiFlags.java | 227 ++++++++++++++++++
.../tools/util/normalizer/emoji-annotations.txt | 212 +++++++++++++++++
.../tools/doccat/EmojiFeatureGeneratorTest.java | 80 +++++++
.../EmojiSentimentContextGeneratorTest.java | 72 ++++++
.../EmojiAnnotationFeatureGeneratorTest.java | 127 ++++++++++
.../util/normalizer/EmojiAnnotationsTest.java | 256 +++++++++++++++++++++
.../tools/util/normalizer/EmojiAnnotatorTest.java | 176 ++++++++++++++
.../normalizer/EmojiAnnotatorUsageExampleTest.java | 65 ++++++
.../tools/util/normalizer/EmojiFlagsTest.java | 147 ++++++++++++
.../tools/util/normalizer/NormalizerTestUtil.java | 29 ++-
opennlp-distr/src/main/readme/LICENSE | 5 +-
opennlp-distr/src/main/readme/NOTICE | 9 +
opennlp-docs/src/docbkx/normalizer.xml | 67 +++++-
src/license/NOTICE.template | 9 +
27 files changed, 2586 insertions(+), 54 deletions(-)
create mode 100644
opennlp-core/opennlp-runtime/src/main/java/opennlp/tools/doccat/EmojiFeatureGenerator.java
create mode 100644
opennlp-core/opennlp-runtime/src/main/java/opennlp/tools/sentiment/EmojiSentimentContextGenerator.java
copy
opennlp-core/{opennlp-ml/opennlp-ml-commons/src/main/java/opennlp/tools/ml/model/ObjectDataReader.java
=>
opennlp-runtime/src/main/java/opennlp/tools/sentiment/EmojiSentimentFactory.java}
(50%)
create mode 100644
opennlp-core/opennlp-runtime/src/main/java/opennlp/tools/util/featuregen/EmojiAnnotationFeatureGenerator.java
copy
opennlp-core/opennlp-runtime/src/main/java/opennlp/tools/util/featuregen/{CharacterNgramFeatureGeneratorFactory.java
=> EmojiAnnotationFeatureGeneratorFactory.java} (60%)
create mode 100644
opennlp-core/opennlp-runtime/src/main/java/opennlp/tools/util/normalizer/EmojiAnnotation.java
create mode 100644
opennlp-core/opennlp-runtime/src/main/java/opennlp/tools/util/normalizer/EmojiAnnotationJoin.java
create mode 100644
opennlp-core/opennlp-runtime/src/main/java/opennlp/tools/util/normalizer/EmojiAnnotations.java
create mode 100644
opennlp-core/opennlp-runtime/src/main/java/opennlp/tools/util/normalizer/EmojiAnnotator.java
create mode 100644
opennlp-core/opennlp-runtime/src/main/java/opennlp/tools/util/normalizer/EmojiCategory.java
create mode 100644
opennlp-core/opennlp-runtime/src/main/java/opennlp/tools/util/normalizer/EmojiEntityType.java
create mode 100644
opennlp-core/opennlp-runtime/src/main/java/opennlp/tools/util/normalizer/EmojiFlags.java
create mode 100644
opennlp-core/opennlp-runtime/src/main/resources/opennlp/tools/util/normalizer/emoji-annotations.txt
create mode 100644
opennlp-core/opennlp-runtime/src/test/java/opennlp/tools/doccat/EmojiFeatureGeneratorTest.java
create mode 100644
opennlp-core/opennlp-runtime/src/test/java/opennlp/tools/sentiment/EmojiSentimentContextGeneratorTest.java
create mode 100644
opennlp-core/opennlp-runtime/src/test/java/opennlp/tools/util/featuregen/EmojiAnnotationFeatureGeneratorTest.java
create mode 100644
opennlp-core/opennlp-runtime/src/test/java/opennlp/tools/util/normalizer/EmojiAnnotationsTest.java
create mode 100644
opennlp-core/opennlp-runtime/src/test/java/opennlp/tools/util/normalizer/EmojiAnnotatorTest.java
create mode 100644
opennlp-core/opennlp-runtime/src/test/java/opennlp/tools/util/normalizer/EmojiAnnotatorUsageExampleTest.java
create mode 100644
opennlp-core/opennlp-runtime/src/test/java/opennlp/tools/util/normalizer/EmojiFlagsTest.java
copy
opennlp-api/src/main/java/opennlp/tools/util/normalizer/CharSequenceNormalizer.java
=>
opennlp-core/opennlp-runtime/src/test/java/opennlp/tools/util/normalizer/NormalizerTestUtil.java
(57%)