You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nlpcraft.apache.org by se...@apache.org on 2020/09/10 18:57:57 UTC

[incubator-nlpcraft] branch NLPCRAFT-41 updated (14b8ad8 -> 867a3e0)

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

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


    from 14b8ad8  Update nlpcraft.conf
     add d87440e  WIP.
     add f8f600b  WIP.
     add aa6399d  WIP.
     add 02bab36  Merge branch 'NLPCRAFT-41' into NLPCRAFT-41-1
     add bdc8a1b  WIP.
     add 4ed0e3f  WIP.
     add c3ad67d  WIP.
     add 5fbdd3b  WIP.
     add 2af9dad  WIP.
     add 123e5cc  WIP.
     add f82235e  WIP.
     add 867a3e0  WIP.

No new revisions were added by this update.

Summary of changes:
 nlpcraft/src/main/resources/nlpcraft.conf          |    3 +
 .../nlpcraft/common/inspections/NCInspection.scala |   56 -
 .../common/inspections/NCInspectionParameter.scala |   53 -
 .../common/inspections/NCInspectionResult.scala    |   69 -
 .../common/inspections/NCInspectionService.scala   |   60 -
 .../common/inspections/impl/NCInspectionImpl.scala |   47 -
 .../impl/NCInspectionParameterImpl.scala           |   28 -
 .../inspections/impl/NCInspectionResultImpl.scala  |   56 -
 .../apache/nlpcraft/model/NCModelFileAdapter.java  |   18 +-
 .../nlpcraft/model/impl/NCModelWrapper.scala       |   69 -
 .../apache/nlpcraft/model/impl/NCTokenImpl.scala   |   14 +-
 .../model/intent/impl/NCIntentScanner.scala        |  486 --------
 .../model/intent/impl/NCIntentSolver.scala         |    6 +-
 .../test/impl/NCTestAutoModelValidatorImpl.scala   |   17 +-
 .../org/apache/nlpcraft/probe/NCProbeBoot.scala    |    3 -
 .../nlpcraft/probe/mgrs/cmd/NCCommandManager.scala |   40 +-
 .../probe/mgrs/conn/NCConnectionManager.scala      |    5 +-
 .../probe/mgrs/deploy/NCDeployManager.scala        | 1312 ++++++++++++++++++--
 .../mgrs/inspections/NCInspectionManager.scala     |   70 --
 .../inspectors/NCIntentsInspection.scala           |   70 --
 .../inspectors/NCMacrosInspection.scala            |   47 -
 .../inspections/inspectors/NCProbeInspection.scala |   86 --
 .../inspectors/NCSynonymsInspection.scala          |   72 --
 .../nlpcraft/probe/mgrs/model/NCModelManager.scala |  707 +----------
 .../NCModelData.scala}                             |   65 +-
 .../nlpcraft/probe/mgrs/nlp/NCProbeEnricher.scala  |    5 +-
 .../probe/mgrs/nlp/NCProbeEnrichmentManager.scala  |   48 +-
 .../dictionary/NCDictionaryEnricher.scala          |    7 +-
 .../mgrs/nlp/enrichers/limit/NCLimitEnricher.scala |    7 +-
 .../mgrs/nlp/enrichers/model/NCModelEnricher.scala |   40 +-
 .../enrichers/relation/NCRelationEnricher.scala    |    7 +-
 .../mgrs/nlp/enrichers/sort/NCSortEnricher.scala   |    7 +-
 .../enrichers/stopword/NCStopWordEnricher.scala    |   20 +-
 .../suspicious/NCSuspiciousNounsEnricher.scala     |    9 +-
 .../mgrs/nlp/validate/NCValidateManager.scala      |   46 +-
 .../nlpcraft/server/probe/NCProbeManager.scala     |   54 +-
 .../server/sugsyn/NCSuggestSynonymManager.scala    |   38 +-
 .../server/sugsyn/NCSuggestSynonymResult.scala     |    4 +-
 38 files changed, 1455 insertions(+), 2296 deletions(-)
 delete mode 100644 nlpcraft/src/main/scala/org/apache/nlpcraft/common/inspections/NCInspection.scala
 delete mode 100644 nlpcraft/src/main/scala/org/apache/nlpcraft/common/inspections/NCInspectionParameter.scala
 delete mode 100644 nlpcraft/src/main/scala/org/apache/nlpcraft/common/inspections/NCInspectionResult.scala
 delete mode 100644 nlpcraft/src/main/scala/org/apache/nlpcraft/common/inspections/NCInspectionService.scala
 delete mode 100644 nlpcraft/src/main/scala/org/apache/nlpcraft/common/inspections/impl/NCInspectionImpl.scala
 delete mode 100644 nlpcraft/src/main/scala/org/apache/nlpcraft/common/inspections/impl/NCInspectionParameterImpl.scala
 delete mode 100644 nlpcraft/src/main/scala/org/apache/nlpcraft/common/inspections/impl/NCInspectionResultImpl.scala
 delete mode 100644 nlpcraft/src/main/scala/org/apache/nlpcraft/model/impl/NCModelWrapper.scala
 delete mode 100644 nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/impl/NCIntentScanner.scala
 delete mode 100644 nlpcraft/src/main/scala/org/apache/nlpcraft/probe/mgrs/inspections/NCInspectionManager.scala
 delete mode 100644 nlpcraft/src/main/scala/org/apache/nlpcraft/probe/mgrs/inspections/inspectors/NCIntentsInspection.scala
 delete mode 100644 nlpcraft/src/main/scala/org/apache/nlpcraft/probe/mgrs/inspections/inspectors/NCMacrosInspection.scala
 delete mode 100644 nlpcraft/src/main/scala/org/apache/nlpcraft/probe/mgrs/inspections/inspectors/NCProbeInspection.scala
 delete mode 100644 nlpcraft/src/main/scala/org/apache/nlpcraft/probe/mgrs/inspections/inspectors/NCSynonymsInspection.scala
 rename nlpcraft/src/main/scala/org/apache/nlpcraft/probe/mgrs/{NCModelDecorator.scala => nlp/NCModelData.scala} (57%)