About 35,300 results
Open links in new tab
  1. What is the difference between a convolutional neural network and a ...

    Mar 8, 2018 · A convolutional neural network (CNN) is a neural network where one or more of the layers employs a convolution as the function applied to the output of the previous layer.

  2. machine learning - What is a fully convolution network? - Artificial ...

    Jun 12, 2020 · Fully convolution networks A fully convolution network (FCN) is a neural network that only performs convolution (and subsampling or upsampling) operations. Equivalently, an FCN is a CNN …

  3. machine learning - What is the concept of channels in CNNs ...

    Dec 30, 2018 · The concept of CNN itself is that you want to learn features from the spatial domain of the image which is XY dimension. So, you cannot change dimensions like you mentioned.

  4. deep learning - What are "bottlenecks" in neural networks? - Artificial ...

    In a CNN (such as Google's Inception network), bottleneck layers are added to reduce the number of feature maps (aka channels) in the network, which, otherwise, tend to increase in each layer. This is …

  5. neural networks - Are fully connected layers necessary in a CNN ...

    Aug 6, 2019 · A convolutional neural network (CNN) that does not have fully connected layers is called a fully convolutional network (FCN). See this answer for more info. An example of an FCN is the u-net, …

  6. How to handle rectangular images in convolutional neural networks ...

    I think the squared image is more a choice for simplicity. There are two types of convolutional neural networks Traditional CNNs: CNNs that have fully connected layers at the end, and fully convolutional …

  7. What is the fundamental difference between CNN and RNN?

    May 13, 2019 · A CNN will learn to recognize patterns across space while RNN is useful for solving temporal data problems. CNNs have become the go-to method for solving any image data challenge …

  8. What is a cascaded convolutional neural network?

    3 The paper you are citing is the paper that introduced the cascaded convolution neural network. In fact, in this paper, the authors say To realize 3DDFA, we propose to combine two achievements in recent …

  9. What is the difference between CNN-LSTM and RNN?

    Why would "CNN-LSTM" be another name for RNN, when it doesn't even have RNN in it? Can you clarify this? What is your knowledge of RNNs and CNNs? Do you know what an LSTM is?

  10. convolutional neural networks - When to use Multi-class CNN vs. one ...

    Sep 30, 2021 · 0 I'm building an object detection model with convolutional neural networks (CNN) and I started to wonder when should one use either multi-class CNN or a single-class CNN.