This is an automated email from the ASF dual-hosted git repository.
mawiesne pushed a change to branch OPENNLP-855-Sentiment-from-text
in repository https://gitbox.apache.org/repos/asf/opennlp.git
discard 17ea9573 OPENNLP-855: New SentimentAnalysisParser - adapts existing
Sentiment code to OpenNLP 3.x module structures - introduces SentimentDetector
API interface
discard 2f376c30 OPENNLP-855: New SentimentAnalysisParser
add 442e2c7f OPENNLP-1757: Expose probs() method in thread-safe
probabilistic ME classes (#812)
add cb4a685d OPENNLP-1759: Optimize computation of hashCode in StringList
(#814)
add d237d9fa OPENNLP-1751: Update log4j2 to 2.25.1 (#818)
add aa38e3d0 Minor: Regenerated NOTICE File for
d237d9fa3fa5b03e98cca9518560f95fc1f6b4fa
add 0349ae95 Updates copyright year in several files (#820)
add fa7b8af2 OPENNLP-1764: Update classgraph to 4.8.181 (#824)
add 271e7c9c Minor: Regenerated NOTICE File for
fa7b8af2a68c257a5dc200982608527f64d324d9
add a82ba8f9 OPENNLP-1762 - Fix mvn clean install by setting default
download property to SourceForge for surefire/failsafe
add c05a93ba OPENNLP-1766: Update logcaptor to 2.12.0 (#827)
add 55832e48 OPENNLP-1767: Fix sentence detection when an abbreviation
overlaps at sentence end (#829)
add 9be6ba5f Bump actions/cache from 4.2.3 to 4.2.4
add 7410b98f Bump actions/checkout from 4.2.2 to 5.0.0
add 3cfd623f Bump org.apache.maven.plugins:maven-javadoc-plugin from
3.11.2 to 3.11.3
add 865ea1a7 Bump actions/setup-java from 4.7.1 to 5.0.0
add 3f878c0b OPENNLP-1766: Update logcaptor to 2.12.1 (#836)
add a77051f3 OPENNLP-1769: Update maven-failsafe-plugin to 3.5.4 (#837)
add eace11ec Enable dependabot for non default branches (2.x)
add b3515540 Bump org.apache.maven.plugins:maven-javadoc-plugin from
3.11.3 to 3.12.0 (#850)
add 4ddc9684 Bump actions/cache from 4.2.4 to 4.3.0
add a7e3eba4 Bump junit.version from 5.13.3 to 5.13.4
add cc65359a Enable Java 25 as additional CI Java version since it is GA
now.
add ecabec47 OPENNLP-1771: Update ONNX runtime to 1.23.0 (#854)
add 65b1f8c3 OPENNLP-1772: Update log4j2 to 2.25.2 (#855)
add 459eb099 OPENNLP-1773: Update license-maven-plugin to 2.7.0 (#858)
add ab5eb479 Minor: Regenerated NOTICE File for
459eb0993f5b42020f7ad59f1f5c0bb1aa4ac24c (#862)
add d6613f48 OPENNLP-1774: Update JUnit to 6.0.0 (#868)
add 92f6804f OPENNLP-1776: Update forbiddenapis plugin to 3.10 (#869)
add 9c419b8a OPENNLP-1775: Update Uimaj to 3.6.1 (#867)
add bd671ff3 Minor: Regenerated NOTICE File for
9c419b8a7c27f4b32c62602369da731a3b97afff (#870)
add 9e9e59e2 Bump org.jacoco:jacoco-maven-plugin from 0.8.13 to 0.8.14
add 3311098a OPENNLP-1777: Update ONNX runtime to 1.23.1 (#878)
add d3768786 OPENNLP-1778: Update classgraph to 4.8.184 (#873)
add d7b96d6d Minor: Regenerated NOTICE File for
fa3a74c3eb55df0e2fa041854fffa17d3ee6de43 (#880)
add 19551725 Minor: Regenerated NOTICE File for
6bd39328311ffc4188ed984d9a00657f94a2b55e (#881)
add 52c37e51 OPENNLP-855: New SentimentAnalysisParser
add 1529f536 OPENNLP-855: New SentimentAnalysisParser - adapts existing
Sentiment code to OpenNLP 3.x module structures - introduces SentimentDetector
API interface
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 (17ea9573)
\
N -- N -- N refs/heads/OPENNLP-855-Sentiment-from-text (1529f536)
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:
.github/dependabot.yml | 27 +++++++-
.github/workflows/license.yml | 6 +-
.github/workflows/maven.yml | 16 ++---
.github/workflows/publish-snapshots.yml | 6 +-
.github/workflows/shell-tests.yml | 12 ++--
LICENSE | 2 +-
NOTICE | 14 ++---
.../main/java/opennlp/tools/ml/Probabilistic.java | 14 ++---
.../main/java/opennlp/tools/chunker/ChunkerME.java | 13 ++--
.../opennlp/tools/chunker/ThreadSafeChunkerME.java | 15 +++--
.../langdetect/ThreadSafeLanguageDetectorME.java | 7 ++-
.../opennlp/tools/lemmatizer/LemmatizerME.java | 12 ++--
.../tools/lemmatizer/ThreadSafeLemmatizerME.java | 15 +++--
.../java/opennlp/tools/namefind/NameFinderME.java | 12 +++-
.../tools/namefind/ThreadSafeNameFinderME.java | 15 +++--
.../java/opennlp/tools/postag/POSTaggerME.java | 23 ++++---
.../tools/postag/ThreadSafePOSTaggerME.java | 16 +++--
.../tools/sentdetect/SentenceDetectorME.java | 59 ++++++++++++++----
.../sentdetect/ThreadSafeSentenceDetectorME.java | 28 ++++++---
.../tools/tokenize/ThreadSafeTokenizerME.java | 22 +++++--
.../java/opennlp/tools/tokenize/TokenizerME.java | 26 +++++++-
.../main/java/opennlp/tools/util/StringList.java | 32 ++++------
.../sentdetect/SentenceDetectorMEDutchTest.java | 6 +-
.../sentdetect/SentenceDetectorMEFrenchTest.java | 4 +-
.../sentdetect/SentenceDetectorMEGermanTest.java | 72 ++++++++++++++++------
.../tools/sentdetect/SentenceDetectorMEIT.java | 14 ++---
.../sentdetect/SentenceDetectorMEItalianTest.java | 4 +-
.../sentdetect/SentenceDetectorMEPolishTest.java | 4 +-
.../SentenceDetectorMEPortugueseTest.java | 4 +-
.../sentdetect/SentenceDetectorMESpanishTest.java | 4 +-
.../tools/sentdetect/SentenceDetectorMETest.java | 16 ++---
.../test/resources/opennlp/tools/lang/abb_DE.xml | 14 ++++-
opennlp-distr/src/main/readme/NOTICE | 2 +-
opennlp-docs/src/docbkx/opennlp.xml | 2 +-
.../opennlp/uima/sentdetect/SentenceDetector.java | 2 +-
.../main/java/opennlp/uima/tokenize/Tokenizer.java | 2 +-
.../test/java/opennlp/uima/AbstractUimaTest.java | 14 +++--
.../uima/dictionary/DictionaryResourceTest.java | 26 ++++----
.../test-descriptors/DictionaryNameFinder.xml | 2 +-
opennlp-extensions/pom.xml | 2 +-
pom.xml | 23 ++++---
41 files changed, 408 insertions(+), 201 deletions(-)
copy
opennlp-core/opennlp-ml/opennlp-ml-maxent/src/main/java/opennlp/tools/ml/maxent/ContextGenerator.java
=> opennlp-api/src/main/java/opennlp/tools/ml/Probabilistic.java (70%)