summaryrefslogtreecommitdiff
path: root/res/BVLCCaffeTests/Scale_001/test.prototxt
diff options
context:
space:
mode:
Diffstat (limited to 'res/BVLCCaffeTests/Scale_001/test.prototxt')
-rw-r--r--res/BVLCCaffeTests/Scale_001/test.prototxt17
1 files changed, 17 insertions, 0 deletions
diff --git a/res/BVLCCaffeTests/Scale_001/test.prototxt b/res/BVLCCaffeTests/Scale_001/test.prototxt
new file mode 100644
index 000000000..d15be8ff3
--- /dev/null
+++ b/res/BVLCCaffeTests/Scale_001/test.prototxt
@@ -0,0 +1,17 @@
+layer {
+ name: "data"
+ type: "Input"
+ top: "data"
+ input_param { shape: { dim: 1 dim: 3 dim: 16 dim: 16 } }
+}
+layer {
+ name: "scale"
+ type: "Scale"
+ bottom: "data"
+ top: "scale"
+ scale_param {
+ filler { type: "gaussian" std: 0.01 }
+ bias_term: true
+ bias_filler { type: "gaussian" std: 0.01 }
+ }
+}