论文名称:Involution: Inverting the Inherence of Convolution for Visual Recognition
作者:Duo Li, Jie Hu, Changhu Wang, Xiangtai Li, Qi She, Lei Zhu, Tong Zhang, Qifeng Chen, The Hong Kong University of Science and Technology, ByteDance AI Lab, Peking University, Beijing University of Posts and Telecommunications
Convolution
- 空间无关性(spatial agnostic):same kernel for different position
- 优点:参数共享,平移等变
- 缺点:不能灵活改变参数,卷积核尺寸不能过大,只能通过堆叠来扩大感受野、捕捉长距离关系
- 通道特异性(channel specific):different kernels for different channels
- 优点:充分提取不同通道上的信息
- 缺点:有冗余
Convolution kernel 尺寸为 B,C_out,C_in,K,K
Involution
与convolution不同,involution拥有完全相反的性质:
- 空间特异性:kernel privatized for different position
- 通道不变性:kernel shared across different channels
involution kernel 的尺寸为B,G,KK,H,W.