Concolutional Neural Networks(CNN)同样使用三层结构,但结构上同Feedforward Neural Network有很大不同,其结构如下图: Input layer: 对单张图片来说,输入数据是3D的(Width*Length*Depth),见下方的立体图.但如果我们使用mini-batch去训练神经网络的话,则input变为了4D数据(Width*Length*Depth*Batch_size). Feature-extraction layers:Convo…