summaryrefslogtreecommitdiff
path: root/examples/mnist/lenet.prototxt
diff options
context:
space:
mode:
authorEvan Shelhamer <shelhamer@imaginarynumber.net>2015-12-03 19:39:19 -0800
committerEvan Shelhamer <shelhamer@imaginarynumber.net>2016-02-25 17:29:42 -0800
commit2cc3844cb2a4a72de10d321781dc8f994bef95c7 (patch)
tree6df7f6bf13aed8195fb39d78062834877c11e374 /examples/mnist/lenet.prototxt
parent0d9a78f5a083db859f01d45da91c5a0ca1389de8 (diff)
downloadcaffeonacl-2cc3844cb2a4a72de10d321781dc8f994bef95c7.tar.gz
caffeonacl-2cc3844cb2a4a72de10d321781dc8f994bef95c7.tar.bz2
caffeonacl-2cc3844cb2a4a72de10d321781dc8f994bef95c7.zip
[examples] switch examples + models to Input layers
Diffstat (limited to 'examples/mnist/lenet.prototxt')
-rw-r--r--examples/mnist/lenet.prototxt11
1 files changed, 5 insertions, 6 deletions
diff --git a/examples/mnist/lenet.prototxt b/examples/mnist/lenet.prototxt
index dff7123b..8cf78e62 100644
--- a/examples/mnist/lenet.prototxt
+++ b/examples/mnist/lenet.prototxt
@@ -1,10 +1,9 @@
name: "LeNet"
-input: "data"
-input_shape {
- dim: 64
- dim: 1
- dim: 28
- dim: 28
+layer {
+ name: "data"
+ type: "Input"
+ top: "data"
+ input_param { shape: { dim: 64 dim: 1 dim: 28 dim: 28 } }
}
layer {
name: "conv1"