https://en.wikipedia.org/wiki/Convolutional_neural_network

 

Convolutional layers apply a convolution operation to the input, passing the result to the next layer. The convolution emulates the response of an individual neuron to visual stimuli.[7]

Each convolutional neuron processes data only for its receptive field. Tiling allows CNNs to tolerate translation of the input image (eg. translation, rotation, perspective distortion) .[clarification needed]

Although fully connected feedforward neural networks can be used to learn features as well as classify data, it is not practical to apply this architecture to images. A very high number of neurons would be necessary even in a shallow architecture (opposite of deep). The convolution operation brings a solution to this problem as it reduces the number of free parameters, allowing the network to be deeper with fewer parameters.backpropagation.

相关文章:

  • 2021-12-24
  • 2021-06-22
  • 2021-12-28
  • 2021-05-14
  • 2021-06-14
  • 2021-06-30
  • 2021-05-23
  • 2022-12-23
猜你喜欢
  • 2021-10-14
  • 2021-12-25
  • 2021-11-27
  • 2021-06-08
  • 2021-05-05
  • 2021-05-03
  • 2021-07-31
相关资源
相似解决方案