You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@systemml.apache.org by ni...@apache.org on 2019/03/23 02:23:41 UTC

[systemml] branch gh-pages updated: [SYSTEMML-540] Throw exception whenever parameter of a Keras layer is not supported by SystemML

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

niketanpansare pushed a commit to branch gh-pages
in repository https://gitbox.apache.org/repos/asf/systemml.git


The following commit(s) were added to refs/heads/gh-pages by this push:
     new c81626b  [SYSTEMML-540] Throw exception whenever parameter of a Keras layer is not supported by SystemML
c81626b is described below

commit c81626b4476c7859c94aa8750df45de4f4382573
Author: Niketan Pansare <np...@us.ibm.com>
AuthorDate: Fri Mar 22 19:21:40 2019 -0700

    [SYSTEMML-540] Throw exception whenever parameter of a Keras layer is not supported by SystemML
---
 reference-guide-caffe2dml.md | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/reference-guide-caffe2dml.md b/reference-guide-caffe2dml.md
index 381b96d..6242e03 100644
--- a/reference-guide-caffe2dml.md
+++ b/reference-guide-caffe2dml.md
@@ -450,6 +450,21 @@ layer {
 
 ## Utility Layers
 
+### Flatten Layer
+
+The Flatten layer is a utility layer that flattens an input of shape n * c * h * w to a simple vector output of shape n * (c*h*w).
+
+
+**Sample Usage:**
+```
+layer {
+        name: "flatten_1"
+        type: "Flatten"
+        bottom: "max_pooling2d_2"
+        top: "flatten_1"
+}
+```
+
 ### Eltwise Layer
 
 Element-wise operations such as product or sum between two blobs.