From 74f3d48d142cc9c5f821ffaf415aa4dd71b2d817 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: Mon, 3 Sep 2018 10:10:01 +0900 Subject: [PATCH] [enco] Symmetrically padded convolution test (#1274) This commit adds a 003 test which includes symmetrically padded convolution layer. Signed-off-by: Jonghyun Park --- contrib/enco/test/caffe/003/BUILD | 0 contrib/enco/test/caffe/003/INFERENCE | 0 contrib/enco/test/caffe/003/test.prototxt | 24 ++++++++++++++++++++++++ 3 files changed, 24 insertions(+) create mode 100644 contrib/enco/test/caffe/003/BUILD create mode 100644 contrib/enco/test/caffe/003/INFERENCE create mode 100644 contrib/enco/test/caffe/003/test.prototxt diff --git a/contrib/enco/test/caffe/003/BUILD b/contrib/enco/test/caffe/003/BUILD new file mode 100644 index 0000000..e69de29 diff --git a/contrib/enco/test/caffe/003/INFERENCE b/contrib/enco/test/caffe/003/INFERENCE new file mode 100644 index 0000000..e69de29 diff --git a/contrib/enco/test/caffe/003/test.prototxt b/contrib/enco/test/caffe/003/test.prototxt new file mode 100644 index 0000000..7cd59be --- /dev/null +++ b/contrib/enco/test/caffe/003/test.prototxt @@ -0,0 +1,24 @@ +layer { + name: "data" + type: "Input" + top: "data" + input_param { + shape: { dim: 1 dim: 3 dim: 16 dim: 16 } + } +} +layer { + name: "conv" + type: "Convolution" + bottom: "data" + top: "conv" + convolution_param { + bias_term: false + num_output: 2 + pad: 1 + kernel_size: 3 + weight_filler { + type: "gaussian" + std: 0.01 + } + } +} -- 2.7.4