From ed472b1e0af32fd26d502522c440121228189e5a 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: Thu, 30 Aug 2018 17:49:35 +0900 Subject: [PATCH] [enco] Adjust input size for 001 test (#1255) This commit adjusts inputs size of 001 test to reduce test time. Signed-off-by: Jonghyun Park --- contrib/enco/test/caffe/001/test.prototxt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/enco/test/caffe/001/test.prototxt b/contrib/enco/test/caffe/001/test.prototxt index a36be3a..b56731c 100644 --- a/contrib/enco/test/caffe/001/test.prototxt +++ b/contrib/enco/test/caffe/001/test.prototxt @@ -3,7 +3,7 @@ layer { type: "Input" top: "data" input_param { - shape: { dim: 1 dim: 3 dim: 244 dim: 244 } + shape: { dim: 1 dim: 3 dim: 4 dim: 4 } } } layer { @@ -13,7 +13,7 @@ layer { top: "conv" convolution_param { bias_term: false - num_output: 1 + num_output: 2 kernel_size: 1 weight_filler { type: "gaussian" -- 2.7.4