-
Notifications
You must be signed in to change notification settings - Fork 18.5k
Unknown bottom blob 'data' #3375
Description
I am training a vggnet 19 layers, But the problems is am getting the following errors and coulnt proceed
F1124 16:05:28.878301 25702 insert_splits.cpp:35] Unknown bottom blob 'data' (layer 'conv1_1', bottom index 0)
top part of prototxt file
`
VGG_19_layers_prelu_train_val.prototxt
name: "VGG_ILSVRC_19_layers"
layer {
name: "data"
type: "Data"
include {
phase: TRAIN
}
transform_param {
crop_size: 224
mean_value: 104
mean_value: 117
mean_value: 123
mirror: true
}
data_param {
source: "data/ilsvrc12/ilsvrc12_train_lmdb"
batch_size: 64
backend: LMDB
}
top: "data"
top: "label"
}
layer {
name: "data"
type: "Data"
include {
phase: TEST
}
transform_param {
crop_size: 224
mean_value: 104
mean_value: 117
mean_value: 123
mirror: false
}
data_param {
source: "data/ilsvrc12/ilsvrc12_val_lmdb"
batch_size: 50
backend: LMDB
}
top: "data"
top: "label"
}
layer {
bottom: "data"
top: "conv1_1"
name: "conv1_1"
type: "Convolution"
convolution_param {
num_output: 64
pad: 1
kernel_size: 3
}
}
`