paper-with-me

CondConv

2000년 도입 · 논문 5편에서 사용

CondConv, or Conditionally Parameterized Convolutions, are a type of convolution which learn specialized convolutional kernels for each example. In particular, we parameterize the convolutional kernels in a CondConv layer as a linear combination of $n$ experts $(\alpha_1 W_1 + \ldots + \alpha_n W_n) * x$, where $\alpha_1, \ldots, \alpha_n$ are functions of the input learned through gradient descent. To efficiently increase the capacity of a CondConv layer, developers can increase the number of experts. This can be more computationally efficient than increasing the size of the convolutional kernel itself, because the convolutional kernel is applied at many different positions within the input, while the experts are combined only once per input.

출처: CondConv: Conditionally Parameterized Convolutions for Efficient Inference

소개 논문: CondConv: Conditionally Parameterized Convolutions for Efficient Inference

Convolutions · Computer Vision