From 1a1d0498c4421eeed6aac7a870f4ea9f84b97f2b Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EB=B0=95=EC=A2=85=ED=98=84/=EB=8F=99=EC=9E=91=EC=A0=9C?= =?utf8?q?=EC=96=B4Lab=28SR=29/Staff=20Engineer/=EC=82=BC=EC=84=B1?= =?utf8?q?=EC=A0=84=EC=9E=90?= Date: Tue, 23 Oct 2018 16:16:59 +0900 Subject: [PATCH] [enco] Add caffe 019 test (#1945) This commit introduces caffe 019 test which includes a convolution layer with bias term. Signed-off-by: Jonghyun Park --- contrib/enco/test/caffe/019/BUILD | 0 contrib/enco/test/caffe/019/INFERENCE | 0 contrib/enco/test/caffe/019/test.prototxt | 26 ++++++++++++++++++++++++++ 3 files changed, 26 insertions(+) create mode 100644 contrib/enco/test/caffe/019/BUILD create mode 100644 contrib/enco/test/caffe/019/INFERENCE create mode 100644 contrib/enco/test/caffe/019/test.prototxt diff --git a/contrib/enco/test/caffe/019/BUILD b/contrib/enco/test/caffe/019/BUILD new file mode 100644 index 0000000..e69de29 diff --git a/contrib/enco/test/caffe/019/INFERENCE b/contrib/enco/test/caffe/019/INFERENCE new file mode 100644 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 index 0000000..78009fe --- /dev/null +++ b/contrib/enco/test/caffe/019/test.prototxt @@ -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 + } + } +} -- 2.7.4