summaryrefslogtreecommitdiff
path: root/res/BVLCCaffeTests/BatchNorm_000/test.prototxt
diff options
context:
space:
mode:
Diffstat (limited to 'res/BVLCCaffeTests/BatchNorm_000/test.prototxt')
-rw-r--r--res/BVLCCaffeTests/BatchNorm_000/test.prototxt17
1 files changed, 17 insertions, 0 deletions
diff --git a/res/BVLCCaffeTests/BatchNorm_000/test.prototxt b/res/BVLCCaffeTests/BatchNorm_000/test.prototxt
new file mode 100644
index 000000000..7c0f19ddf
--- /dev/null
+++ b/res/BVLCCaffeTests/BatchNorm_000/test.prototxt
@@ -0,0 +1,17 @@
+layer {
+ name: "data"
+ type: "Input"
+ top: "data"
+ input_param {
+ shape: { dim: 1 dim: 3 dim: 4 dim: 4 }
+ }
+}
+layer {
+ name: "batchnorm"
+ type: "BatchNorm"
+ bottom: "data"
+ top: "batchnorm"
+ batch_norm_param {
+ use_global_stats: true
+ }
+}