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 2022/03/29 21:26:24 UTC

[incubator-nlpcraft] branch master updated (a36551e -> 56c8a1e)

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

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


    from a36551e  WIP Javadoc.
     new e165dd9  Update NCDialogFlowItem.java
     new 3c19929  Merge branch 'master' of https://github.com/apache/incubator-nlpcraft
     new 56c8a1e  Update NCPipeline.java

The 3 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:
 .../main/scala/org/apache/nlpcraft/NCDialogFlowItem.java   |  2 +-
 .../src/main/scala/org/apache/nlpcraft/NCPipeline.java     | 14 ++++++--------
 2 files changed, 7 insertions(+), 9 deletions(-)

[incubator-nlpcraft] 03/03: Update NCPipeline.java

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

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

commit 56c8a1e23b36bc681074c6f1b9da70c33d21986c
Author: Aaron Radzinski <ar...@datalingvo.com>
AuthorDate: Tue Mar 29 14:26:19 2022 -0700

    Update NCPipeline.java
---
 .../src/main/scala/org/apache/nlpcraft/NCPipeline.java     | 14 ++++++--------
 1 file changed, 6 insertions(+), 8 deletions(-)

diff --git a/nlpcraft/src/main/scala/org/apache/nlpcraft/NCPipeline.java b/nlpcraft/src/main/scala/org/apache/nlpcraft/NCPipeline.java
index 9baeae3..867d20e 100644
--- a/nlpcraft/src/main/scala/org/apache/nlpcraft/NCPipeline.java
+++ b/nlpcraft/src/main/scala/org/apache/nlpcraft/NCPipeline.java
@@ -26,7 +26,6 @@ import java.util.Optional;
  * <p>
  * An NLP pipeline is a container for various processing components that take the input text at the beginning of the
  * pipeline and produce the list of {@link NCEntity entities} at the end of the pipeline.
- * <p>
  * Schematically the pipeline looks like this:
  * <pre>
  *                                   +----------+        +-----------+
@@ -34,11 +33,10 @@ import java.util.Optional;
  * :  Text   : -> |  Token  | -> | Token     |  | -> | Token      |  | ----.
  * :  Input  :    |  Parser |    | Enrichers |--+    | Validators |--+      \
  * *=========*    +---------+    +-----------+       +------------+          \
- *                                                                            \
- *                                                                             }
- *                    +-----------+        +----------+        +--------+     /
- * *=========*    +---+--------+  |    +---+-------+  |    +---+-----+  |    /
- * :  Entity : <- | Entity     |  | <- | Entity    |  | <- | Entity  |  | <-'
+ *                                                                            }
+ *                    +-----------+        +----------+        +--------+    /
+ * *=========*    +---+--------+  |    +---+-------+  |    +---+-----+  |   /
+ * :  Entity : <- | Entity     |  | <- | Entity    |  | <- | Entity  |  | <-
  * :  List   :    | Validators |--+    | Enrichers |--+    | Parsers |--+
  * *=========*    +------------+       +-----------+       +---------+
  * </pre>
@@ -46,8 +44,8 @@ import java.util.Optional;
  * Pipeline has the following components:
  * <ul>
  *     <li>
- *         {@link NCTokenParser Token parser} is responsible for taking the input text and tokenize it into a list of
- *         {@link NCToken tokens}. This process is called tokenization, i.e. the process of demarcating and
+ *         {@link NCTokenParser} is responsible for taking the input text and tokenize it into a list of
+ *         {@link NCToken}. This process is called tokenization, i.e. the process of demarcating and
  *         classifying sections of a string of input characters. There's only one token parser for the pipeline.
  *     </li>
  *     <li>

[incubator-nlpcraft] 01/03: Update NCDialogFlowItem.java

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

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

commit e165dd95ea0f5646e7885a3671fd88a9d009f0d5
Author: Aaron Radzinski <ar...@datalingvo.com>
AuthorDate: Tue Mar 29 13:21:02 2022 -0700

    Update NCDialogFlowItem.java
---
 nlpcraft/src/main/scala/org/apache/nlpcraft/NCDialogFlowItem.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/nlpcraft/src/main/scala/org/apache/nlpcraft/NCDialogFlowItem.java b/nlpcraft/src/main/scala/org/apache/nlpcraft/NCDialogFlowItem.java
index 4ea757f..f293fda 100644
--- a/nlpcraft/src/main/scala/org/apache/nlpcraft/NCDialogFlowItem.java
+++ b/nlpcraft/src/main/scala/org/apache/nlpcraft/NCDialogFlowItem.java
@@ -22,7 +22,7 @@ package org.apache.nlpcraft;
  * represents a snapshot of winning intent's match and its associated data. List of dialog flow items
  * is passed into a custom user-defined dialog flow match method.
  *
- * @see NCConversation#getDialogFlow() 
+ * @see NCConversation#getDialogFlow()
  */
 public interface NCDialogFlowItem {
     /**

[incubator-nlpcraft] 02/03: Merge branch 'master' of https://github.com/apache/incubator-nlpcraft

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

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

commit 3c19929597269fb617bb59b7d2b53603aed410f1
Merge: e165dd9 a36551e
Author: Aaron Radzinski <ar...@datalingvo.com>
AuthorDate: Tue Mar 29 13:21:03 2022 -0700

    Merge branch 'master' of https://github.com/apache/incubator-nlpcraft

 .../main/scala/org/apache/nlpcraft/NCPipeline.java | 33 ++++++++++++++++++++++
 .../main/scala/org/apache/nlpcraft/NCToken.java    |  3 +-
 pom.xml                                            |  2 +-
 3 files changed, 36 insertions(+), 2 deletions(-)