Does the dropout layer need to be defined in deploy.prototxt in caffe?
问题 In the AlexNet implementation in caffe, I saw the following layer in the deploy.prototxt file: layer { name: "drop7" type: "Dropout" bottom: "fc7" top: "fc7" dropout_param { dropout_ratio: 0.5 } } Now the key idea of dropout is to randomly drop units (along with their connections) from the neural network during training. Does this mean that I can simply delete this layer from deploy.prototxt, as this file is meant to be used during testing only? 回答1: Yes. Dropout is not required during