You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nlpcraft.apache.org by ar...@apache.org on 2020/03/23 22:47:06 UTC

[incubator-nlpcraft] branch NLPCRAFT-13 updated (947dbb5 -> 2a064c1)

This is an automated email from the ASF dual-hosted git repository.

aradzinski pushed a change to branch NLPCRAFT-13
in repository https://gitbox.apache.org/repos/asf/incubator-nlpcraft.git.


    from 947dbb5  WIP.
     add 05b7162  Fix fot NLPCRAFT-15.
     new 2a064c1  Merge remote-tracking branch 'origin/master' into NLPCRAFT-13

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:
 .../apache/nlpcraft/common/nlp/NCNlpSentence.scala |  29 +++++-
 .../nlpcraft/common/nlp/NCNlpSentenceNote.scala    |  83 ++++++++--------
 .../nlpcraft/common/nlp/NCNlpSentenceToken.scala   |  54 +++++------
 .../common/nlp/core/NCNlpCoreManager.scala         |   2 -
 .../nlpcraft/common/nlp/core/NCNlpTokenizer.scala  |   4 +-
 .../nlp/core/opennlp/NCOpenNlpTokenizer.scala      |  19 +---
 .../nlp/core/stanford/NCStanfordTokenizer.scala    |   3 +-
 .../apache/nlpcraft/model/impl/NCTokenLogger.scala |   4 +-
 .../org/apache/nlpcraft/probe/NCProbeBoot.scala    |   4 +-
 .../probe/mgrs/deploy/NCDeployManager.scala        |   2 +
 .../nlpcraft/probe/mgrs/nlp/NCProbeEnricher.scala  |  39 +-------
 .../probe/mgrs/nlp/NCProbeEnrichmentManager.scala  |  39 +++++---
 .../aggregation/NCAggregationEnricher.scala        |  12 +--
 .../dictionary/NCDictionaryEnricher.scala          |  25 +++--
 .../mgrs/nlp/enrichers/limit/NCLimitEnricher.scala |  38 +++-----
 .../mgrs/nlp/enrichers/model/NCModelEnricher.scala |  19 ++--
 .../nlp/enrichers/post/NCPostEnrichProcessor.scala | 107 ++++++++------------
 .../enrichers/relation/NCRelationEnricher.scala    |  17 ++--
 .../mgrs/nlp/enrichers/sort/NCSortEnricher.scala   |  13 +--
 .../enrichers/stopword/NCStopWordEnricher.scala    | 108 +++++----------------
 .../suspicious/NCSuspiciousNounsEnricher.scala     |  12 +--
 .../nlp/core/opennlp/NCOpenNlpNerEnricher.scala    |   9 +-
 .../server/nlp/core/opennlp/NCOpenNlpParser.scala  |   7 --
 .../server/nlp/enrichers/date/NCDateEnricher.scala |  16 ++-
 .../server/nlp/enrichers/geo/NCGeoEnricher.scala   |  10 +-
 .../nlp/enrichers/quote/NCQuoteEnricher.scala      |   2 +-
 .../enrichers/stopword/NCStopWordEnricher.scala    |  20 ++--
 .../nlpcraft/model/intent/dsl/NCDslTest.java       |   2 +
 .../nlpcraft/models/nested/NCNestedTestModel.scala |   4 +-
 .../mgrs/nlp/enrichers/NCEnricherBaseSpec.scala    |  27 +++++-
 .../mgrs/nlp/enrichers/NCEnricherTestModel.scala   |  18 +++-
 .../mgrs/nlp/enrichers/NCEnrichersTestBeans.scala  |  24 ++++-
 .../NCEnricherAggregationSpec.scala}               |  18 ++--
 .../nlp/enrichers/limit/NCEnricherLimitSpec.scala  |  20 +++-
 .../NCEnricherRelationSpec.scala}                  |  20 ++--
 35 files changed, 371 insertions(+), 459 deletions(-)
 copy src/test/scala/org/apache/nlpcraft/probe/mgrs/nlp/enrichers/{limit/NCEnricherLimitSpec.scala => aggregation/NCEnricherAggregationSpec.scala} (70%)
 copy src/test/scala/org/apache/nlpcraft/probe/mgrs/nlp/enrichers/{limit/NCEnricherLimitSpec.scala => relation/NCEnricherRelationSpec.scala} (64%)


[incubator-nlpcraft] 01/01: Merge remote-tracking branch 'origin/master' into NLPCRAFT-13

Posted by ar...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

aradzinski pushed a commit to branch NLPCRAFT-13
in repository https://gitbox.apache.org/repos/asf/incubator-nlpcraft.git

commit 2a064c11b1af781bf236269d19cadc5b188042ad
Merge: 947dbb5 05b7162
Author: Aaron Radzinzski <ar...@datalingvo.com>
AuthorDate: Mon Mar 23 15:46:45 2020 -0700

    Merge remote-tracking branch 'origin/master' into NLPCRAFT-13

 .../apache/nlpcraft/common/nlp/NCNlpSentence.scala |  29 +++++-
 .../nlpcraft/common/nlp/NCNlpSentenceNote.scala    |  83 ++++++++--------
 .../nlpcraft/common/nlp/NCNlpSentenceToken.scala   |  54 +++++------
 .../common/nlp/core/NCNlpCoreManager.scala         |   2 -
 .../nlpcraft/common/nlp/core/NCNlpTokenizer.scala  |   4 +-
 .../nlp/core/opennlp/NCOpenNlpTokenizer.scala      |  19 +---
 .../nlp/core/stanford/NCStanfordTokenizer.scala    |   3 +-
 .../apache/nlpcraft/model/impl/NCTokenLogger.scala |   4 +-
 .../org/apache/nlpcraft/probe/NCProbeBoot.scala    |   4 +-
 .../probe/mgrs/deploy/NCDeployManager.scala        |   2 +
 .../nlpcraft/probe/mgrs/nlp/NCProbeEnricher.scala  |  39 +-------
 .../probe/mgrs/nlp/NCProbeEnrichmentManager.scala  |  39 +++++---
 .../aggregation/NCAggregationEnricher.scala        |  12 +--
 .../dictionary/NCDictionaryEnricher.scala          |  25 +++--
 .../mgrs/nlp/enrichers/limit/NCLimitEnricher.scala |  38 +++-----
 .../mgrs/nlp/enrichers/model/NCModelEnricher.scala |  19 ++--
 .../nlp/enrichers/post/NCPostEnrichProcessor.scala | 107 ++++++++------------
 .../enrichers/relation/NCRelationEnricher.scala    |  17 ++--
 .../mgrs/nlp/enrichers/sort/NCSortEnricher.scala   |  13 +--
 .../enrichers/stopword/NCStopWordEnricher.scala    | 108 +++++----------------
 .../suspicious/NCSuspiciousNounsEnricher.scala     |  12 +--
 .../nlp/core/opennlp/NCOpenNlpNerEnricher.scala    |   9 +-
 .../server/nlp/core/opennlp/NCOpenNlpParser.scala  |   7 --
 .../server/nlp/enrichers/date/NCDateEnricher.scala |  16 ++-
 .../server/nlp/enrichers/geo/NCGeoEnricher.scala   |  10 +-
 .../nlp/enrichers/quote/NCQuoteEnricher.scala      |   2 +-
 .../enrichers/stopword/NCStopWordEnricher.scala    |  20 ++--
 .../nlpcraft/model/intent/dsl/NCDslTest.java       |   2 +
 .../nlpcraft/models/nested/NCNestedTestModel.scala |   4 +-
 .../mgrs/nlp/enrichers/NCEnricherBaseSpec.scala    |  27 +++++-
 .../mgrs/nlp/enrichers/NCEnricherTestModel.scala   |  18 +++-
 .../mgrs/nlp/enrichers/NCEnrichersTestBeans.scala  |  24 ++++-
 .../NCEnricherAggregationSpec.scala}               |  18 ++--
 .../nlp/enrichers/limit/NCEnricherLimitSpec.scala  |  20 +++-
 .../NCEnricherRelationSpec.scala}                  |  20 ++--
 35 files changed, 371 insertions(+), 459 deletions(-)