From 302e6564a7a76109e1178207e44e45a58631c477 Mon Sep 17 00:00:00 2001 From: Chunseok Lee Date: Wed, 4 Mar 2020 18:09:24 +0900 Subject: Imported Upstream version 1.1.0 --- res/BVLCCaffeTests/Pooling_001/INFERENCE | 0 res/BVLCCaffeTests/Pooling_001/test.prototxt | 17 +++++++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 res/BVLCCaffeTests/Pooling_001/INFERENCE create mode 100644 res/BVLCCaffeTests/Pooling_001/test.prototxt (limited to 'res/BVLCCaffeTests/Pooling_001') diff --git a/res/BVLCCaffeTests/Pooling_001/INFERENCE b/res/BVLCCaffeTests/Pooling_001/INFERENCE new file mode 100644 index 000000000..e69de29bb diff --git a/res/BVLCCaffeTests/Pooling_001/test.prototxt b/res/BVLCCaffeTests/Pooling_001/test.prototxt new file mode 100644 index 000000000..1ecbb96bc --- /dev/null +++ b/res/BVLCCaffeTests/Pooling_001/test.prototxt @@ -0,0 +1,17 @@ +layer { + name: "data" + type: "Input" + top: "data" + input_param { shape: { dim: 1 dim: 3 dim: 15 dim: 15 } } +} +layer { + name: "pool" + type: "Pooling" + bottom: "data" + top: "pool" + pooling_param { + pool: MAX + kernel_size: 3 + stride: 2 + } +} -- cgit v1.2.3