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-website.git


The following commit(s) were added to refs/heads/master by this push:
     new 0a8d74c  WIP.
0a8d74c is described below

commit 0a8d74cb6c080118182082894e06ee914a3fa081
Author: Aaron Radzinski <[email protected]>
AuthorDate: Wed Sep 23 11:38:43 2020 -0700

    WIP.
---
 _data/news.yml                            | 10 ++++++++++
 _layouts/documentation.html               |  6 +++---
 download.html                             |  4 ++--
 intent-matching.html                      |  2 +-
 tools/{model_tools.html => syn_tool.html} | 15 +++++++++++++--
 5 files changed, 29 insertions(+), 8 deletions(-)

diff --git a/_data/news.yml b/_data/news.yml
index 0436b3b..fb3e355 100644
--- a/_data/news.yml
+++ b/_data/news.yml
@@ -15,6 +15,16 @@
 # limitations under the License.
 #
 
+- title: Apache NLPCraft 0.7.0 Released
+  url: https://medium.com/@aradzinski/nlpcraft-0-6-2-fcfb511f1fb3
+  excerpt: Announcing Apache NLPCraft 0.7.0.
+  author: Aaron Radzinksi
+  avatar_url: images/lion.jpg
+  publish_date: September 29, 2020
+  linkedin_id: aaron-radzinski-6b2228167
+  twitter_id: aaron_radzinski
+  medium_id: aradzinski
+
 - title: Apache NLPCraft 0.6.2 Released
   url: https://medium.com/@aradzinski/nlpcraft-0-6-2-fcfb511f1fb3
   excerpt: Announcing Apache NLPCraft 0.6.2.
diff --git a/_layouts/documentation.html b/_layouts/documentation.html
index c2cb1a0..c41c7bc 100644
--- a/_layouts/documentation.html
+++ b/_layouts/documentation.html
@@ -128,10 +128,10 @@ layout: interior
                 {% endif %}
             </li>
             <li>
-                {% if page.id == "model_tools" %}
-                <a class="active" href="/tools/model_tools.html">Model 
Tools</a>
+                {% if page.id == "syn_tool" %}
+                <a class="active" href="/tools/syn_tool.html">Synonyms Tool</a>
                 {% else %}
-                <a href="/tools/model_tools.html">Model Tools</a>
+                <a href="/tools/syn_tool.html">Synonyms Tool</a>
                 {% endif %}
             </li>
             <li class="side-nav-title">Examples</li>
diff --git a/download.html b/download.html
index 0a02c14..2ba6bb8 100644
--- a/download.html
+++ b/download.html
@@ -107,7 +107,7 @@ layout: interior
             </div>
             <div class="bq info">
                 <p>
-                    Releases marked with <i class="fas fa-fw fa-bomb"></i> are 
<b>NOT</b> backward compatible.
+                    Releases marked with <i class="fas fa-fw fa-bomb"></i> are 
<b>NOT</b> 100% backward compatible.
                 </p>
                 <p>
                     The above release files should be verified using the PGP 
signatures and the <a 
href="https://downloads.apache.org/incubator/nlpcraft/KEYS";>project release 
KEYS</a>.
@@ -170,7 +170,7 @@ layout: interior
             </div>
             <div class="bq info">
                 <p>
-                    Releases marked with <i class="fas fa-fw fa-bomb"></i> are 
<b>NOT</b> backward compatible.
+                    Releases marked with <i class="fas fa-fw fa-bomb"></i> are 
<b>NOT</b> 100% backward compatible.
                 </p>
             </div>
         </section>
diff --git a/intent-matching.html b/intent-matching.html
index 4b75d43..f31c3bf 100644
--- a/intent-matching.html
+++ b/intent-matching.html
@@ -78,7 +78,7 @@ id: intent_matching
                         Optional annotation that provides one or more sample 
of the input that associated intent should match on.
                         Although this annotation is optional it's highly 
recommended to provide at least 5 samples per intent.
                         These samples serve not only documentation purpose but 
also used in built-in model <a 
href="/tools/test_framework.html">auto-validation</a>
-                        and <a href="/tools/model_tools.html">model 
inspector</a> tool.
+                        and <a href="/tools/syn_tool.html">model inspector</a> 
tool.
                     </td>
                 </tr>
             </tbody>
diff --git a/tools/model_tools.html b/tools/syn_tool.html
similarity index 59%
rename from tools/model_tools.html
rename to tools/syn_tool.html
index a65cadc..f599af9 100644
--- a/tools/model_tools.html
+++ b/tools/syn_tool.html
@@ -1,7 +1,7 @@
 ---
-active_crumb: Model Tools
+active_crumb: Synonyms Tool
 layout: documentation
-id: model_tools
+id: syn_tool
 ---
 
 <!--
@@ -24,6 +24,17 @@ id: model_tools
 <div class="col-md-8 second-column">
     <section id="overview">
         <h2 class="section-title">Overview</h2>
+        <p>
+            Synonym suggester tool takes an existing model, analyses its 
synonyms and intents and comes up with
+            a list of synonyms that are currently missing that you might want 
to add to your model.
+        </p>
+        <p>
+            This tool is accessed via REST call. It's implementation is based 
on Google's BERT and Facebook fasttext
+            models. It requires <a target="javadoc" 
href=/apis/latest/org/apache/nlpcraft/model/NCIntentSample.html">@NCIntentSample</a>
 annotations present on intent
+            callbacks. In short, the tool scans the data model for intents and 
their
+            <a target="javadoc" 
href="/apis/latest/org/apache/nlpcraft/model/NCIntentSample.html">@NCIntentSample</a>
 annotations, and based on these samples tries to determine
+            which synonyms are missing in the model.
+        </p>
     </section>
     <section id="usage">
         <h2 class="section-title">Usage</h2>

Reply via email to