About 31,500 results
Open links in new tab
  1. What is the difference between a convolutional neural network …

    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. If the window is greater than size 1x1, the output will be necessarily smaller than the input (unless the input is artificially 'padded' with zeros), and hence CNN's often ...

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

    Jun 12, 2020 · The typical convolution neural network (CNN) is not fully convolutional because it often contains fully connected layers too (which do not perform the convolution operation), which are parameter-rich, in the sense that they have many parameters (compared to their equivalent convolution layers), although the fully connected layers can also be ...

  3. Extract features with CNN and pass as sequence to RNN

    Sep 12, 2020 · $\begingroup$ But if you have separate CNN to extract features, you can extract features for last 5 frames and then pass these features to RNN. And then you do CNN part for 6th frame and you pass the features from 2,3,4,5,6 frames to RNN which is better. The task I want to do is autonomous driving using sequences of images.

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

    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 while RNN is used for ideal for text and speech analysis.

  5. In a CNN, does each new filter have different weights for each …

    Typically for a CNN architecture, in a single filter as described by your number_of_filters parameter, there is one 2D kernel per input channel. There are input_channels * number_of_filters sets of weights, each of which describe a convolution kernel. So the diagrams showing one set of weights per input channel for each filter are correct.

  6. convolutional neural networks - How do multiple filters in a CNN …

    Aug 1, 2024 · In a CNN, each filter produces one feature map regardless of the number of input channels. For your example: Single channel input : The input image has 1 channel of size $ 224 \times 224$. First Layer: 64 filters (each $ 3 \times 3$) are applied to the input. Each filter convolves over the input channel, producing 1 output channel (per filter).

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

    Sep 30, 2021 · 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. That is, if I'm making e.g. a

  8. What is a cascaded convolutional neural network?

    To realize 3DDFA, we propose to combine two achievements in recent years, namely, Cascaded Regression and the Convolutional Neural Network (CNN). This combination requires the introduction of a new input feature which fulfills the "cascade manner" and "convolution manner" simultaneously (see Sec. 3.2) and a new cost function which can model the ...

  9. What is the computational complexity of the forward pass of a ...

    Aug 7, 2020 · Stack Exchange Network. Stack Exchange network consists of 183 Q&A communities including Stack Overflow, the largest, most trusted online community for developers to learn, share their knowledge, and build their careers.

  10. Reduce receptive field size of CNN while keeping its capacity?

    Feb 4, 2019 · One way to keep the capacity while reducing the receptive field size is to add 1x1 conv layers instead of 3x3 (I did so within the DenseBlocks, there the first layer is a 3x3 conv and now followed by 4 times a 1x1 conv layer instead of the original 3x3 convs (which increase the receptive field)).

Refresh