About 12,000 results
Open links in new tab
  1. convolution - Is there a correct order of "conv2d", "batchnorm2d ...

    May 29, 2023 · After investigating the structure of the official UNet architecture as proposed in the official paper I noticed a recurrent pattern of Conv2d->BatchNorm2d->ReLU (->MaxPool2d) …

  2. How can an MLP be implemented with convolutional layers?

    May 1, 2023 · You'll need to complete a few actions and gain 15 reputation points before being able to upvote. Upvoting indicates when questions and answers are useful. What's reputation …

  3. neural networks - How to use a conv2d layer after a flatten ...

    Dec 10, 2020 · So, I was wondering if I used a pretrained model (EfficientNet for example) if I want to change the _fc attribute and use conv2d in it, how can I recover a 2D structure? …

  4. convolutional neural networks - When should we use separable ...

    Oct 14, 2020 · A related question on StackOverflow is "What is the difference between SeparableConv2D and Conv2D layers". This answer points to this excellent article by Chi …

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

    The Conv2d filter is defined as a 3D-represented tensor, but it's indeed a collection of num_input_channels kernels applied laterally. The different kernels' layers' values are distinct …

  6. convolutional neural networks - Is there any gain by lazy ...

    Jul 22, 2021 · The basic layers for performing convolution operations 1, 2, 3 in PyTorch are nn.Conv1d: Applies a 1D convolution over an input signal composed of several input planes. …

  7. How do I optimize the number of filters in a convolution layer?

    Feb 22, 2020 · If we have a dataset of 32x32 images, we could start with a Conv2D layer, filter of 3x3 and stride of 1x1. Therefore the maximum times this filter would be able to fit into the 32 x …

  8. Confusion about conversion of RGB image to grayscale image …

    Aug 2, 2021 · Note the groups parameter of Conv2d, which affects how the channels are convolved. The default is 1, which means: At groups=1, all inputs are convolved to all outputs. …

  9. What does 'input planes' mean in the phrase 'input signal/image ...

    Jul 22, 2021 · 5 Yes, it is a bit misleading. What it really means is input channels, so it would be: nn.Conv2d: Applies a 2D convolution over an input signal composed of several input channels. …

  10. convolutional neural networks - keras model accuracy not …

    Sep 10, 2022 · I am trying to do multi class(16) classification, however no matter what parameters or number of layers I use my accuracy is not improving, its in 30s the max I got was 43. I have …