question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

BNInception architecture

See original GitHub issue

Seems like there is a mistake in BNInception architecture after the 29th Oct commit. I try to use its convolutional part as a pretrained model for transfer learning and get this during the forward pass:

RuntimeError: given groups=1, weight of size [64, 192, 1, 1], expected input[1, 64, 8, 8] to have 192 channels, but got 64 channels instead

Issue Analytics

  • State:open
  • Created 5 years ago
  • Comments:5 (1 by maintainers)

github_iconTop GitHub Comments

1reaction
Bonsencommented, Dec 28, 2018

@Cadene He maybe uses fastai…

0reactions
jaideep11061982commented, Feb 6, 2019

please ignore above layers here is error self.inception_3a_3x3_bn = nn.BatchNorm2d(64, affine=True) self.inception_3a_relu_3x3 = nn.ReLU (inplace) self.inception_3a_double_3x3_reduce = nn.Conv2d(192, 64, kernel_size=(1, 1), stride=(1, 1))

Batch norm would return only 64 channels of certain sizes ,reduce layer needs 192 channels

Read more comments on GitHub >

github_iconTop Results From Across the Web

A Simple Guide to the Versions of the Inception Network
Using the dimension reduced inception module, a neural network architecture was built. This was popularly known as GoogLeNet (Inception v1).
Read more >
Inception Network | Implementation Of GoogleNet In Keras
The paper proposes a new type of architecture – GoogLeNet or Inception v1. It is basically a convolutional neural network (CNN) which is...
Read more >
Rethinking the Inception Architecture for Computer Vision - arXiv
Here we explore ways to scale up networks in ways that aim at utilizing the added computation as efficiently as possible by suitably...
Read more >
Short history of the Inception deep learning architecture
This paper introduces the Inception v1 architecture, implemented in the winning ILSVRC 2014 submission GoogLeNet. The main contribution with respect to Network ...
Read more >
Understanding Architecture Of Inception Network & Applying It ...
Inception networks were created with the idea of increasing the capability of a deep neural network while efficiently using computational resources. I quote...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found