[enco] Add caffe 019 test (#1945)
author박종현/동작제어Lab(SR)/Staff Engineer/삼성전자 <jh1302.park@samsung.com>
Tue, 23 Oct 2018 07:16:59 +0000 (16:16 +0900)
committerGitHub Enterprise <noreply-CODE@samsung.com>
Tue, 23 Oct 2018 07:16:59 +0000 (16:16 +0900)
This commit introduces caffe 019 test which includes a convolution layer
with bias term.

Signed-off-by: Jonghyun Park <jh1302.park@samsung.com>
contrib/enco/test/caffe/019/BUILD [new file with mode: 0644]
contrib/enco/test/caffe/019/INFERENCE [new file with mode: 0644]
contrib/enco/test/caffe/019/test.prototxt [new file with mode: 0644]

diff --git a/contrib/enco/test/caffe/019/BUILD b/contrib/enco/test/caffe/019/BUILD
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/contrib/enco/test/caffe/019/INFERENCE b/contrib/enco/test/caffe/019/INFERENCE
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/contrib/enco/test/caffe/019/test.prototxt b/contrib/enco/test/caffe/019/test.prototxt
new file mode 100644 (file)
index 0000000..78009fe
--- /dev/null
@@ -0,0 +1,26 @@
+layer {
+  name: "data"
+  type: "Input"
+  top: "data"
+  input_param {
+    shape: { dim: 1 dim: 3 dim: 4 dim: 4 }
+  }
+}
+layer {
+  name: "conv"
+  type: "Convolution"
+  bottom: "data"
+  top: "conv"
+  convolution_param {
+    num_output: 2
+    kernel_size: 1
+    weight_filler {
+      type: "gaussian"
+      std: 0.01
+    }
+    bias_filler {
+      type: "gaussian"
+      std: 0.01
+    }
+  }
+}