summaryrefslogtreecommitdiff
path: root/res/BVLCCaffeTests/Pooling_003/test.prototxt
diff options
context:
space:
mode:
Diffstat (limited to 'res/BVLCCaffeTests/Pooling_003/test.prototxt')
-rw-r--r--res/BVLCCaffeTests/Pooling_003/test.prototxt17
1 files changed, 17 insertions, 0 deletions
diff --git a/res/BVLCCaffeTests/Pooling_003/test.prototxt b/res/BVLCCaffeTests/Pooling_003/test.prototxt
new file mode 100644
index 000000000..e25855fa8
--- /dev/null
+++ b/res/BVLCCaffeTests/Pooling_003/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: AVE
+ kernel_size: 3
+ stride: 2
+ }
+}