You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@madlib.apache.org by kh...@apache.org on 2020/05/21 22:39:19 UTC

[madlib] branch master updated: DL: Update user docs for load_custom_function

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

khannaekta pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/madlib.git


The following commit(s) were added to refs/heads/master by this push:
     new 3312799  DL: Update user docs for load_custom_function
3312799 is described below

commit 3312799aa316539a2a3c0931ad2be2f149b0cb92
Author: Ekta Khanna <ek...@pivotal.io>
AuthorDate: Thu May 21 14:46:18 2020 -0700

    DL: Update user docs for load_custom_function
---
 .../deep_learning/madlib_keras_custom_function.sql_in        | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/ports/postgres/modules/deep_learning/madlib_keras_custom_function.sql_in b/src/ports/postgres/modules/deep_learning/madlib_keras_custom_function.sql_in
index c8c2c9c..a22a9a5 100644
--- a/src/ports/postgres/modules/deep_learning/madlib_keras_custom_function.sql_in
+++ b/src/ports/postgres/modules/deep_learning/madlib_keras_custom_function.sql_in
@@ -80,9 +80,9 @@ load_custom_function(
   </dd>
 
   <dt>name</dt>
-  <dd>TEXT, default: NULL. Name of the object.  Must be unique
-  identifier in the table, since this name is used when passing
-  the object to Keras.
+  <dd>TEXT. Name of the object. Must be unique identifier
+  in the table, since this name is used when passing the
+  object to Keras.
   </dd>
 
   <dt>description (optional)</dt>
@@ -98,17 +98,17 @@ load_custom_function(
     <table class="output">
       <tr>
         <th>id</th>
-        <td>SERIAL PRIMARY KEY. Object ID.
+        <td>SERIAL. Object ID.
         </td>
       </tr>
       <tr>
         <th>name</th>
-        <td>TEXT. Name of model.
+        <td>TEXT PRIMARY KEY. Name of the object.
         </td>
       </tr>
       <tr>
         <th>description</th>
-        <td>TEXT. Description of model (free text).
+        <td>TEXT. Description of the object (free text).
         </td>
       </tr>
       <tr>