MultiConv: Multi-kernel Gated Convolution
- MultiConv is a design pattern that combines multiple convolution kernels with adaptive gating to extract features at various scales.
- It reconciles heterogeneous local and global cues by modulating contributions of each branch, enhancing performance in tasks like imaging, video, and audio analysis.
- Empirical studies show that MultiConv significantly improves accuracy and robustness across applications, evidenced by gains in segmentation, classification, and detection metrics.
Searching arXiv for recent and foundational papers on Multi-kernel Gated Convolution and closely related formulations. Multi-kernel Gated Convolution, often abbreviated as MultiConv, denotes a family of architectural patterns in which multiple convolutional branches with different receptive fields are combined with a learned gating mechanism that modulates their contribution to the output. Across the literature, the pattern appears in decoder adapters for thyroid ultrasound, spatial aggregation blocks in modern ConvNets, recurrent ConvLSTM transitions for video, audio back-end classifiers built on SSL features, and DenseNet-like image classifiers with hybrid connectivity. Despite this diversity, the underlying objective is consistent: to reconcile feature cues that occur at different spatial or temporal scales while suppressing redundant, artifact-prone, or otherwise uninformative activations through gating (Sabouri et al., 9 Mar 2026, Li et al., 2022, Agethen et al., 2019, Tran et al., 3 Sep 2025, Yang et al., 2019).
1. Terminology and conceptual scope
The nomenclature is not standardized. In thyroid ultrasound, the paper does not define a separate module literally named “MultiConv”; rather, the Multi-Kernel Gated Adapter (MKGA) and ResMKGA instantiate a multi-kernel gated convolution pattern in the decoder (Sabouri et al., 9 Mar 2026). In MogaNet, the corresponding mechanism is called multi-order gated aggregation, housed in the spatial aggregation block (Li et al., 2022). In ConvLSTM-based video modeling, the relevant terms are multi-kernel approach, Inception-like multi-kernel, and Network-in-LSTM (Agethen et al., 2019). In HCGNet, the relevant component is the multi-kernel depthwise convolution stage inside the SMG module, paired with update and forget gates (Yang et al., 2019). By contrast, the audio deepfake detector explicitly uses Multi-kernel gated Convolution (MultiConv) as the name of its back-end classifier block (Tran et al., 3 Sep 2025).
This variation in terminology reflects a broader fact: MultiConv is better understood as a design pattern than as a single canonical module. Some realizations emphasize spatially varying gates, some apply channel-wise softmax competition between branches, some use GLU-like multiplicative gating after branch fusion, and some embed the mechanism inside recurrent state transitions rather than feed-forward feature hierarchies. The common denominator is the joint use of multi-receptive-field convolutions and adaptive gating.
2. Canonical computational pattern
A general formulation appears in the thyroid ultrasound work, where the pattern is written for branches as
followed by a projection
a context-dependent gate
and either branch-wise gated fusion
or post-projection gating
before the final refinement stage (Sabouri et al., 9 Mar 2026). This is the clearest explicit abstraction of MultiConv in the cited literature.
The same logic recurs in specialized forms. In MogaNet, the multi-order context is built from low-, middle-, and high-order branches, then projected and gated pointwise: (Li et al., 2022). In the ConvLSTM setting, the single-kernel input-to-hidden and hidden-to-hidden convolutions of each gate are replaced by aggregated multi-kernel transforms and 0, optionally preceded by kernel-specific attention masks derived from optical flow (Agethen et al., 2019). In the audio detector, MultiConv is realized by splitting the expanded representation into a left content stream and a right convolutional stream, fusing the multi-kernel outputs into 1, and computing
2
as a GLU-like gate (Tran et al., 3 Sep 2025). In HCGNet, the gated fusion appears as
3
where 4 is a forget-gate vector on reused features and 5 is a global context vector produced by update-gated fusion of the multi-kernel branches (Yang et al., 2019).
These formulations differ in granularity and parameterization, but they share three structural primitives: parallel convolutional context extraction, learned gating, and context-sensitive fusion.
3. Major architectural instantiations
| Setting | Multi-kernel branches | Gating and fusion |
|---|---|---|
| Thyroid ultrasound MKGA/ResMKGA | 6 and dilated 7 with 8 | Additive attention gate from 9 and 0; gated skip fused with decoder feature (Sabouri et al., 9 Mar 2026) |
| MogaNet spatial block | DW 1, DW 2, DW 3, with channel split 4 | 5 Conv + SiLU gate and context projection; element-wise product and residual addition (Li et al., 2022) |
| ConvLSTM video model | Parallel 6, 7, optionally 8 | Concatenation with interleaving or learned 9 mixing; optional kernel-specific attention masks from optical flow (Agethen et al., 2019) |
| Audio deepfake detector | Parallel 1D convolutions with kernel sets such as 0, 1, 2, 3, or four-kernel sets | Fused multi-kernel stream multiplicatively gates the split content stream; stacked across 4 layers (Tran et al., 3 Sep 2025) |
| HCGNet SMG module | Depthwise 5 and 6, or 7 dilated with 8 approximating 9 | Update gate performs per-channel two-branch softmax after spatial attention and global pooling; forget gate decays reused features (Yang et al., 2019) |
In the thyroid setting, MultiConv is explicitly decoder-side rather than backbone-side. MKGA refines skip features with complementary receptive fields and then gates them using semantic context from the deeper decoder state 0. ResMKGA adds residual bottleneck stabilization through squeeze-and-excitation, with
1
(Sabouri et al., 9 Mar 2026). This placement is motivated by cross-center domain shift, where segmentation relies more on geometry and malignancy prediction depends more on texture.
In MogaNet, MultiConv is part of the SMixer of a modern ConvNet block. It is preceded by the Feature Decomposition module
2
and followed by gated aggregation. The design is explicitly framed as a remedy for a representation bottleneck in modern ConvNets, particularly the under-encoding of middle-order interactions (Li et al., 2022).
In recurrent video modeling, MultiConv is embedded inside the ConvLSTM transition itself. Rather than using a single convolution for the gate preactivations, each recurrent gate receives a multi-branch transform, optionally deepened by 3 bottlenecks and mixing layers. This is why the authors describe the method as a Network-in-LSTM (Agethen et al., 2019).
In the audio model, the module is purely temporal and 1D. Its MultiConv branches operate on frame-wise SSL features from XLS-R after front-end SwiGLU gating and layer aggregation. The module is stacked, and diversity across layers is further promoted by a CKA term in the training objective (Tran et al., 3 Sep 2025).
HCGNet places the mechanism inside a two-stage SMG module: hierarchical squeezing first compresses DenseNet-like concatenated inputs, after which multi-kernel depthwise excitation and gated fusion produce a compact global-context update. Here MultiConv is tightly coupled to the network’s Hybrid Connectivity, which nests global dense and local residual pathways (Yang et al., 2019).
4. Empirical evidence across tasks and modalities
The thyroid ultrasound study provides a particularly direct demonstration of MultiConv under domain shift. With a ResNet34 backbone, the unfrozen baseline drops from in-domain Dice 4 to external Dice 5. Adding MKGA raises external Dice to 6, and ResMKGA raises it to 7, reported as significant at 8 versus the unfrozen baseline. For TI-RADS malignancy prediction, the same CNN baseline attains external AUC 9, whereas MKGA reaches AUC 0 and improves diagnostic accuracy from 1 to 2 with McNemar 3 (Sabouri et al., 9 Mar 2026).
In MogaNet, the multi-order gated aggregation block scales from lightweight to very large regimes while remaining competitive with both ConvNet and ViT baselines. MogaNet-T reports 4 top-1 accuracy at 5 with 6M parameters and 7G FLOPs, and 8 at 9 with refined training. At the upper end, MogaNet-XL reports 0 at 1 with IN-21K pretraining, 2M parameters, and 3G FLOPs. The same design transfers to COCO detection, ADE20K segmentation, pose estimation, and video prediction (Li et al., 2022).
In ConvLSTM-based video recognition, replacing single-kernel recurrent convolutions with MultiConv improves performance on multiple settings. On UCF-101 with a VGG-16 feature extractor, the 4 baseline reaches 5 top-1, the 6 baseline 7, MultiConv with 8 reaches 9, and adding stacked 0 mixing yields 1. On Sports-1M-20, the corresponding values are 2, 3, and 4. In an I3D-based UCF-101 setting, Inception MultiConv reaches 5, and the end-to-end version reaches 6 (Agethen et al., 2019).
The audio deepfake detector reports state-of-the-art or competitive error rates on multiple benchmarks. It attains 7 EER on ASVspoof 2019 LA, 8 on ASVspoof 2021 DF, 9 on ASVspoof 2021 LA, and 0 on ITW. The four-kernel configuration 1 with CKA is reported as best for heterogeneous out-of-domain generalization, and removing CKA degrades performance, for example from 2 to 3 on 21DF and from 4 to 5 on DFADD in the cited comparison (Tran et al., 3 Sep 2025).
HCGNet provides evidence for MultiConv in dense image classification and transfer. On ImageNet, HCGNet-B reports top-1/top-5 error 6 with 7M parameters and 8G FLOPs, compared with DenseNet-169 at 9, 0M parameters, and 1G FLOPs. On CIFAR-10/100, HCGNet-A2 reaches 2 and 3 error with 4M parameters and 5G FLOPs, while HCGNet-A3 reaches 6 and 7 with 8M parameters and 9G FLOPs (Yang et al., 2019).
Taken together, these results show that MultiConv is not confined to one task family. It has been used for segmentation, image classification, action recognition, audio spoofing detection, pose estimation, and detection/segmentation transfer, with gains emerging when the target problem contains heterogeneous local and global cues.
5. Ablations, trade-offs, and failure modes
The thyroid work offers one of the clearest ablation studies on the role of gating. Removing the gate slightly improves external segmentation, with Dice 00 instead of 01, but sharply degrades TI-RADS classification, with accuracy 02 instead of 03 and AUC 04 instead of 05. Removing the multi-kernel block harms both tasks, producing DDTI Dice 06, AUC 07, and accuracy 08. Among kernel choices, 09 plus dilated 10 with effective 11 receptive field is reported as the best balance, whereas 12 loses diagnostic power and 13 is unstable (Sabouri et al., 9 Mar 2026).
MogaNet reports a similar dependence on branch design and gating details. In the module ablation table, adding the gating branch raises accuracy from 14 to 15, adding DW 16 raises it to 17, adding multi-order DW convolutions raises it to 18, adding FD raises it to 19, and replacing SE/MLP with the CA block yields 20. Removing 21, removing 22, or removing multi-order DWConv each lowers top-1 accuracy, and SiLU in both branches is reported as the best gating activation. The default channel split 23 is also identified as the best among tested splits (Li et al., 2022).
In ConvLSTM, the benefits of MultiConv depend on motion heterogeneity. Mixed channel allocations across 24 and 25 kernels outperform pure single-kernel settings, and qualitative results show specialization of attention masks: larger kernels attend to faster-moving digits, smaller kernels to slower motion. Yet the paper also notes that when motion speeds are relatively uniform and fit within the receptive field of a small kernel, multi-kernel mixtures may provide limited gains or even underperform a well-matched single kernel (Agethen et al., 2019).
The audio detector reports that no single kernel configuration universally dominates. Smaller kernels 26 are best on ITW and LibriSeVoc, large kernels 27 excel on 19LA and HABLA, and the four-kernel set 28 generalizes best to heterogeneous out-of-domain attacks. The model also struggles with neural autoregressive vocoders and certain TTS systems, and Sino-Tibetan datasets remain difficult. Deeper stacks beyond the default 29 can improve in-domain performance but hurt generalization (Tran et al., 3 Sep 2025).
HCGNet identifies additional constraints. Its MultiConv stage uses only two scales, and descriptor-level fusion may underweight fine-grained spatial patterns because the update gate aggregates global descriptors rather than spatially varying fusion maps. The paper also notes the usual depthwise-convolution trade-off: efficiency is improved, but cross-channel mixing becomes weaker and must be supplied by the squeeze path and gating FCs (Yang et al., 2019).
These studies collectively show that MultiConv is not a monotone recipe in which “more kernels” or “stronger gates” always improve outcomes. Kernel size, branch count, gating granularity, and the statistics of the target data interact strongly.
6. Relation to adjacent methods and likely directions
Several papers explicitly position MultiConv relative to adjacent design families. MogaNet distinguishes its multi-order gated aggregation from Inception-like and SKNet-style branch selection: it constructs a unified multi-order context with parallel depthwise kernels and dilations, then applies a pointwise SiLU gate to the aggregated context rather than branch-wise softmax competition (Li et al., 2022). HCGNet similarly distinguishes its SMG module from Inception-style concatenation and from SKNet’s direct kernel selection on branch feature maps, emphasizing instead spatial attention, global descriptor extraction, and per-channel two-branch softmax fusion at the descriptor level (Yang et al., 2019). The thyroid study compares MKGA against raw skip fusion, single-kernel conv fusion, SE-only recalibration, and attention-only fusion, arguing that robustness under cross-center shift depends on the combination of complementary receptive fields and semantic gating before decoder fusion (Sabouri et al., 9 Mar 2026).
This suggests that MultiConv occupies an intermediate position between static multi-branch convolution and attention-like dynamic modulation. It preserves the locality and inductive bias of convolutions while introducing data-dependent selection mechanisms that are lighter than full self-attention in several of the cited settings.
The forward directions mentioned in the literature are concrete. In thyroid ultrasound, the single post-projection spatial gate could be replaced by branch-wise or channel-wise gating, and extension to 3D ultrasound would require volumetric MultiConv and 3D gating; neither is explored in the paper (Sabouri et al., 9 Mar 2026). In ConvLSTM, the attention mechanism is applied only to the input-to-hidden path, with hidden-to-hidden attention reserved for future work (Agethen et al., 2019). In the audio model, kernel-set selection remains task-dependent, and the authors’ results imply that tuning receptive-field ensembles to attack families and languages is important (Tran et al., 3 Sep 2025).
Across these variants, the enduring contribution of MultiConv is not a single invariant block definition, but a reusable architectural principle: parallel receptive fields are most effective when paired with an explicit mechanism for deciding what information should pass through them, where, and at what scale.