This is an automated email from the ASF dual-hosted git repository. koji pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/opennlp-addons.git.
from 6c142db OPENNLP-860 Add .gitignore file add 6f7ea88 OPENNLP-1201: add auxiliary info support to token in TokenNameFinder. This is useful for Japanese as users can utilize POS tag new d650253 Merge pull request #1 from kojisekig/OPENNLP-1201 The 1 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: {modelbuilder-addon => japanese-addon}/pom.xml | 66 +++++++++--------- .../AuxiliaryInfoNameContextGenerator.java | 81 ++++++++++++++++++++++ .../AuxiliaryInfoTokenNameFinderFactory.java | 56 +++++++++++++++ .../opennlp/tools/namefind/AuxiliaryInfoUtil.java | 63 +++++++++++++++++ ...AuxiliaryInfoAwareDelegateFeatureGenerator.java | 65 +++++++++++++++++ ...ryInfoAwareDelegateFeatureGeneratorFactory.java | 40 +++++++++++ .../tools/namefind/ner-auxinfo-features.xml | 59 ++++++++++++++++ .../tools/namefind/AuxiliaryInfoUtilTest.java | 72 +++++++++++++++++++ ...liaryInfoAwareDelegateFeatureGeneratorTest.java | 65 +++++++++++++++++ 9 files changed, 532 insertions(+), 35 deletions(-) copy {modelbuilder-addon => japanese-addon}/pom.xml (61%) create mode 100644 japanese-addon/src/main/java/opennlp/tools/namefind/AuxiliaryInfoNameContextGenerator.java create mode 100644 japanese-addon/src/main/java/opennlp/tools/namefind/AuxiliaryInfoTokenNameFinderFactory.java create mode 100644 japanese-addon/src/main/java/opennlp/tools/namefind/AuxiliaryInfoUtil.java create mode 100644 japanese-addon/src/main/java/opennlp/tools/util/featuregen/AuxiliaryInfoAwareDelegateFeatureGenerator.java create mode 100644 japanese-addon/src/main/java/opennlp/tools/util/featuregen/AuxiliaryInfoAwareDelegateFeatureGeneratorFactory.java create mode 100644 japanese-addon/src/main/resources/opennlp/tools/namefind/ner-auxinfo-features.xml create mode 100644 japanese-addon/src/test/java/opennlp/tools/namefind/AuxiliaryInfoUtilTest.java create mode 100644 japanese-addon/src/test/java/opennlp/tools/util/featuregen/AuxiliaryInfoAwareDelegateFeatureGeneratorTest.java