Replies: 1 comment 3 replies
-
@takekbys this is normal. Sometimes 1d convolutions are used to reduce channel counts before going into expensive operations, or to match channel counts from other sources, etc. There's nothing 'wrong' in general with sequential 1D convolutions. This is the basic structure of most smaller fully connected neural networks. Larger kernels like 3x3 are useful for drawing in additional spatial information from the surroundings, which is why they are so common in visual CNNs. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
There are a few consecutive 1x1 conv pairs, I think.
Does it contribute to performance improvement?
Isn't it a wasteful calculation?
For example, yolov5l has consecutive 1x1 conv pairs.
I'm sorry if I have a misunderstanding.
Beta Was this translation helpful? Give feedback.
All reactions