From 2cc3844cb2a4a72de10d321781dc8f994bef95c7 Mon Sep 17 00:00:00 2001 From: Evan Shelhamer Date: Thu, 3 Dec 2015 19:39:19 -0800 Subject: [examples] switch examples + models to Input layers --- examples/mnist/lenet.prototxt | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'examples/mnist/lenet.prototxt') 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" -- cgit v1.2.3