Papers
Topics
Authors
Recent
Search
2000 character limit reached

Multigroup Attention Pooling

Updated 4 July 2026
  • Multigroup attention pooling is a technique that learns distinct, group-specific summaries from feature maps rather than collapsing them into a single vector.
  • It is employed across various domains such as reactor physics, graph learning, and vision by using separate attention mechanisms and fusion strategies.
  • Empirical results indicate that this approach can improve performance and interpretability compared to traditional pooling methods, though gains are often task-specific.

Multigroup attention pooling denotes a family of pooling mechanisms in which a model does not collapse intermediate features into a single summary vector by a uniform operator such as sum, average, or max; instead, it learns multiple attention-defined summaries, each associated with a distinct group, and then stacks, concatenates, or otherwise fuses those summaries into the final representation. In its explicit formulation for inverse critical experiment design, the layer assigns one spatial attention map to each discrete energy group and produces Z=[z1;z2;;zG]RG×CZ=[z_1;z_2;\dots;z_G]\in\mathbb{R}^{G\times C} from a U-Net feature map, thereby replacing conventional global pooling with group-specific spatial weighting (Savage et al., 1 Jun 2026). Closely related constructions appear in graph representation learning, sentence embedding, speaker verification, and vision attention modules, where the operative “groups” are message-passing levels, token-attention heads, temporal subspaces, or multiple pooling branches rather than energy bins (Itoh et al., 2021, Chen et al., 2018, Liu et al., 2018, Costa et al., 2024, Zhong et al., 2022, Guo et al., 2023).

1. General formulation and design space

A common formal pattern is to begin with a set of feature vectors {ϕr}r=1R\{\phi_r\}_{r=1}^R, define one scoring function per group, normalize scores within each group, and form a weighted sum for that group. In the multigroup attention pooling layer used for reactor-physics surrogate modeling, the feature map ΦRC×H×W\Phi\in\mathbb{R}^{C\times H\times W} is flattened into R=HWR=H\cdot W vectors ϕrRC\phi_r\in\mathbb{R}^C, one learnable attention weight vector wgRCw_g\in\mathbb{R}^C is introduced for each group gg, and the layer computes

sg,r=wgϕr,ag,r=exp(wgϕr)r=1Rexp(wgϕr),zg=r=1Rag,rϕr.s_{g,r}=w_g^\top\phi_r,\qquad a_{g,r}=\frac{\exp(w_g^\top\phi_r)}{\sum_{r'=1}^R\exp(w_g^\top\phi_{r'})},\qquad z_g=\sum_{r=1}^R a_{g,r}\phi_r.

The stacked descriptor is ZRG×CZ\in\mathbb{R}^{G\times C} (Savage et al., 1 Jun 2026).

Across the broader literature, the same structural idea reappears with different choices of group axis and fusion rule. In multi-level graph pooling, each GNN layer has its own attention-pooling module and the resulting graph vectors are unified by a sum or learned weighted sum (Itoh et al., 2021). In vector-based multi-head sentence pooling, each head has its own attention parameters and the final sentence embedding is the concatenation of per-head pooled vectors (Chen et al., 2018). In speaker verification, temporal features are split into non-overlapping sub-vectors, attention is computed independently for each head, and utterance-level embeddings are formed by concatenation of the head outputs (Liu et al., 2018). In CNN attention modules, different pooling operators or branches can themselves serve as the “groups,” with subsequent fusion by affine transforms, residual gating, or 1×11\times1 convolution (Zhong et al., 2022, Guo et al., 2023).

This suggests an umbrella taxonomy in which multigroup attention pooling can be classified by four orthogonal choices: the item set being pooled, the definition of a group, the intra-group normalization mechanism, and the cross-group fusion operator.

Variant family Group axis Cross-group fusion
Reactor MAP Discrete energy groups Stack to {ϕr}r=1R\{\phi_r\}_{r=1}^R0
MLAP for GNNs Message-passing levels Sum or weighted sum
Sentence and speech pooling Attention heads / subspaces Concatenation
Vision multi-pooling modules Pooling branches / channel-spatial branches Multiplicative or convolutional fusion

2. Canonical multigroup attention pooling in reactor-physics surrogate modeling

The clearest use of the exact term “multigroup attention pooling” appears in the surrogate model for inverse critical experiment design. The motivation is explicitly physical: traditional global pooling assumes that all channels and spatial locations contribute equally, whereas in reactor-physics sensitivity mapping thermal neutrons are localized near fuel elements and fast neutrons travel farther before interacting. The layer therefore embeds a per-energy-group spatial weighting directly into the network (Savage et al., 1 Jun 2026).

In that architecture, a 2D U-Net encoder-decoder maps the one-hot material grid {ϕr}r=1R\{\phi_r\}_{r=1}^R1, reflected to {ϕr}r=1R\{\phi_r\}_{r=1}^R2, into a spatial feature map {ϕr}r=1R\{\phi_r\}_{r=1}^R3. Immediately after the final decoder layer, multigroup attention pooling is applied. Its output {ϕr}r=1R\{\phi_r\}_{r=1}^R4 contains one {ϕr}r=1R\{\phi_r\}_{r=1}^R5-dimensional descriptor per energy group, and these descriptors are then fed into a small 1D convolutional residual “group regressor,” which independently maps each {ϕr}r=1R\{\phi_r\}_{r=1}^R6 to a scalar sensitivity coefficient {ϕr}r=1R\{\phi_r\}_{r=1}^R7. The final predicted profile is {ϕr}r=1R\{\phi_r\}_{r=1}^R8 when {ϕr}r=1R\{\phi_r\}_{r=1}^R9 reactions are modeled in parallel. The learnable attention parameters are ΦRC×H×W\Phi\in\mathbb{R}^{C\times H\times W}0, for a total of ΦRC×H×W\Phi\in\mathbb{R}^{C\times H\times W}1 parameters per reaction, or ΦRC×H×W\Phi\in\mathbb{R}^{C\times H\times W}2 if each reaction has its own attention matrix (Savage et al., 1 Jun 2026).

The reported empirical comparison isolates the pooling operator while holding the rest of the surrogate fixed. Average pooling yields a test-set MAE of ΦRC×H×W\Phi\in\mathbb{R}^{C\times H\times W}3 pcm, max-pooling yields ΦRC×H×W\Phi\in\mathbb{R}^{C\times H\times W}4 pcm, and attention-pooling yields ΦRC×H×W\Phi\in\mathbb{R}^{C\times H\times W}5 pcm. The same study states that multigroup attention pooling achieves better performance than traditional pooling and that Figure 1 shows the attention model converging to the lowest MSE (Savage et al., 1 Jun 2026).

The layer is also used in a differentiable optimization loop for experiment design. The overall methodology combines deep neural network surrogate modeling and nonparametric gradient optimization to maximize the neutronic similarity coefficient ΦRC×H×W\Phi\in\mathbb{R}^{C\times H\times W}6, for which ΦRC×H×W\Phi\in\mathbb{R}^{C\times H\times W}7 is generally needed for sufficient similarity to a target technology. For three configurations of interest in validation of the TN-Americas TN-LC transportation cask with HALEU fuel, the reported optimization procedure produces experiment geometries achieving ΦRC×H×W\Phi\in\mathbb{R}^{C\times H\times W}8 scores of ΦRC×H×W\Phi\in\mathbb{R}^{C\times H\times W}9, R=HWR=H\cdot W0, and R=HWR=H\cdot W1 (Savage et al., 1 Jun 2026).

A notable feature of this formulation is interpretability. The paper visualizes the learned spatial attention for thermal R=HWR=H\cdot W2 and fast R=HWR=H\cdot W3 groups and reports that thermal attention concentrates almost solely on fuel regions, particularly central low-leakage cells, whereas fast attention extends into moderating or structural areas around the fuel. This is presented as evidence that the learned group-specific descriptors are aligned with known neutron mean free paths (Savage et al., 1 Jun 2026).

3. Graph-based antecedents and multilevel variants

Graph representation learning provides two complementary precedents. The first is neighborhood attentive pooling in GAP, which constructs context-sensitive node representations by aligning the neighborhoods of a source node R=HWR=H\cdot W4 and a target node R=HWR=H\cdot W5. Given neighborhood embedding matrices R=HWR=H\cdot W6 and R=HWR=H\cdot W7, GAP computes a bilinear alignment

R=HWR=H\cdot W8

then max-pools R=HWR=H\cdot W9 across rows and columns, applies softmax to obtain attention vectors ϕrRC\phi_r\in\mathbb{R}^C0 and ϕrRC\phi_r\in\mathbb{R}^C1, and finally pools the neighborhood embeddings as ϕrRC\phi_r\in\mathbb{R}^C2 and ϕrRC\phi_r\in\mathbb{R}^C3 (Kefato et al., 2020). In the published model there is exactly one shared bilinear map ϕrRC\phi_r\in\mathbb{R}^C4, hence one attention per node pair; however, the paper explicitly notes that if one wanted multiple context vectors ϕrRC\phi_r\in\mathbb{R}^C5, one could replicate ϕrRC\phi_r\in\mathbb{R}^C6 and then concatenate or linearly combine the resulting ϕrRC\phi_r\in\mathbb{R}^C7. GAP is therefore best understood as a single-group limit of a multigroup design (Kefato et al., 2020).

The second and more directly multigroup graph construction is multi-level attention pooling for graph-level tasks. Here, each message-passing layer ϕrRC\phi_r\in\mathbb{R}^C8 has its own attention-pooling network. For node embeddings ϕrRC\phi_r\in\mathbb{R}^C9, the layer-specific score is

wgRCw_g\in\mathbb{R}^C0

and the corresponding graph representation is

wgRCw_g\in\mathbb{R}^C1

The final graph descriptor is then unified either by wgRCw_g\in\mathbb{R}^C2 or by wgRCw_g\in\mathbb{R}^C3 with learned scalar weights (Itoh et al., 2021).

The motivation is that lower GNN layers capture local structure while higher layers capture broader context, but deeper message passing also induces oversmoothing. By preserving and then unifying layer-wise graph representations before local information is lost, the model uses multiple levels of locality in a single graph descriptor (Itoh et al., 2021).

The experimental pattern is mixed but informative. On the synthetic fractal dataset, the reported error is wgRCw_g\in\mathbb{R}^C4 for a naive baseline, wgRCw_g\in\mathbb{R}^C5 for Jumping Knowledge, and wgRCw_g\in\mathbb{R}^C6 for MLAP, with wgRCw_g\in\mathbb{R}^C7 versus naive and wgRCw_g\in\mathbb{R}^C8 versus JK. On TU-MCF-7, ROC-AUC improves from wgRCw_g\in\mathbb{R}^C9 to gg0, with gg1 versus both baselines. On OGB-MolHIV, MLAP improves over naive but not over JK; on OGB-PPA, the differences are not statistically significant (Itoh et al., 2021). The ablation that trains separate classifiers on each gg2 further shows that different levels emphasize different structures: peripheral-type discrimination peaks at layers gg3, center-type discrimination at gg4, and the unified representation attains nearly perfect classification with error gg5 on the synthetic task (Itoh et al., 2021).

4. Multihead and multigroup pooling for sequences and speech

In sequence modeling, multigroup attention pooling is often instantiated as multi-head pooling over token or frame representations rather than as spatial group maps. In generalized pooling for sentence embedding, a top-layer BiLSTM produces gg6, and each head gg7 has its own attention network: gg8 The final sentence embedding is the concatenation gg9 (Chen et al., 2018). The same work shows that mean pooling, max pooling, and scalar self-attention are special cases of the formulation, and it introduces diversity-promoting penalties on parameter matrices, attention matrices, or final head embeddings. Reported results include sg,r=wgϕr,ag,r=exp(wgϕr)r=1Rexp(wgϕr),zg=r=1Rag,rϕr.s_{g,r}=w_g^\top\phi_r,\qquad a_{g,r}=\frac{\exp(w_g^\top\phi_r)}{\sum_{r'=1}^R\exp(w_g^\top\phi_{r'})},\qquad z_g=\sum_{r=1}^R a_{g,r}\phi_r.0 on SNLI with the parameter-matrix penalty, sg,r=wgϕr,ag,r=exp(wgϕr)r=1Rexp(wgϕr),zg=r=1Rag,rϕr.s_{g,r}=w_g^\top\phi_r,\qquad a_{g,r}=\frac{\exp(w_g^\top\phi_r)}{\sum_{r'=1}^R\exp(w_g^\top\phi_{r'})},\qquad z_g=\sum_{r=1}^R a_{g,r}\phi_r.1 on MultiNLI in-domain/cross-domain, sg,r=wgϕr,ag,r=exp(wgϕr)r=1Rexp(wgϕr),zg=r=1Rag,rϕr.s_{g,r}=w_g^\top\phi_r,\qquad a_{g,r}=\frac{\exp(w_g^\top\phi_r)}{\sum_{r'=1}^R\exp(w_g^\top\phi_{r'})},\qquad z_g=\sum_{r=1}^R a_{g,r}\phi_r.2 on Yelp, and sg,r=wgϕr,ag,r=exp(wgϕr)r=1Rexp(wgϕr),zg=r=1Rag,rϕr.s_{g,r}=w_g^\top\phi_r,\qquad a_{g,r}=\frac{\exp(w_g^\top\phi_r)}{\sum_{r'=1}^R\exp(w_g^\top\phi_{r'})},\qquad z_g=\sum_{r=1}^R a_{g,r}\phi_r.3 on Age; the parameter-matrix penalty is described as the most uniformly beneficial (Chen et al., 2018).

Speaker verification adopts a related temporal pooling pattern. In the unified attention-based pooling framework, frame-level features sg,r=wgϕr,ag,r=exp(wgϕr)r=1Rexp(wgϕr),zg=r=1Rag,rϕr.s_{g,r}=w_g^\top\phi_r,\qquad a_{g,r}=\frac{\exp(w_g^\top\phi_r)}{\sum_{r'=1}^R\exp(w_g^\top\phi_{r'})},\qquad z_g=\sum_{r=1}^R a_{g,r}\phi_r.4 are scored by sg,r=wgϕr,ag,r=exp(wgϕr)r=1Rexp(wgϕr),zg=r=1Rag,rϕr.s_{g,r}=w_g^\top\phi_r,\qquad a_{g,r}=\frac{\exp(w_g^\top\phi_r)}{\sum_{r'=1}^R\exp(w_g^\top\phi_{r'})},\qquad z_g=\sum_{r=1}^R a_{g,r}\phi_r.5, normalized by softmax to obtain sg,r=wgϕr,ag,r=exp(wgϕr)r=1Rexp(wgϕr),zg=r=1Rag,rϕr.s_{g,r}=w_g^\top\phi_r,\qquad a_{g,r}=\frac{\exp(w_g^\top\phi_r)}{\sum_{r'=1}^R\exp(w_g^\top\phi_{r'})},\qquad z_g=\sum_{r=1}^R a_{g,r}\phi_r.6, and pooled as sg,r=wgϕr,ag,r=exp(wgϕr)r=1Rexp(wgϕr),zg=r=1Rag,rϕr.s_{g,r}=w_g^\top\phi_r,\qquad a_{g,r}=\frac{\exp(w_g^\top\phi_r)}{\sum_{r'=1}^R\exp(w_g^\top\phi_{r'})},\qquad z_g=\sum_{r=1}^R a_{g,r}\phi_r.7. The multi-head extension partitions each frame vector into sg,r=wgϕr,ag,r=exp(wgϕr)r=1Rexp(wgϕr),zg=r=1Rag,rϕr.s_{g,r}=w_g^\top\phi_r,\qquad a_{g,r}=\frac{\exp(w_g^\top\phi_r)}{\sum_{r'=1}^R\exp(w_g^\top\phi_{r'})},\qquad z_g=\sum_{r=1}^R a_{g,r}\phi_r.8 non-overlapping sub-vectors sg,r=wgϕr,ag,r=exp(wgϕr)r=1Rexp(wgϕr),zg=r=1Rag,rϕr.s_{g,r}=w_g^\top\phi_r,\qquad a_{g,r}=\frac{\exp(w_g^\top\phi_r)}{\sum_{r'=1}^R\exp(w_g^\top\phi_{r'})},\qquad z_g=\sum_{r=1}^R a_{g,r}\phi_r.9 and computes independent attention weights and pooled subspace representations ZRG×CZ\in\mathbb{R}^{G\times C}0, which are concatenated into the utterance embedding (Liu et al., 2018). The paper further reports that deriving attention weights from lower-layer outputs rather than only the last layer is beneficial. On Fisher, the best result is ZRG×CZ\in\mathbb{R}^{G\times C}1 EER for att-4(500)+MultiHead ZRG×CZ\in\mathbb{R}^{G\times C}2 versus ZRG×CZ\in\mathbb{R}^{G\times C}3 for average pooling; on NIST SRE10, the corresponding EER is ZRG×CZ\in\mathbb{R}^{G\times C}4 versus ZRG×CZ\in\mathbb{R}^{G\times C}5 for the x-vector baseline, with improvements also in minDCF08 and minDCF10 (Liu et al., 2018).

Double Multi-Head Self-Attention pooling extends the same logic in two stages. A CNN front-end produces a sequence ZRG×CZ\in\mathbb{R}^{G\times C}6, each ZRG×CZ\in\mathbb{R}^{G\times C}7 is split into ZRG×CZ\in\mathbb{R}^{G\times C}8 sub-vectors, and standard per-head ZRG×CZ\in\mathbb{R}^{G\times C}9-1×11\times10-1×11\times11 attention is applied to produce head summaries 1×11\times12. A second attention layer is then applied over the set of head summaries to produce the final pooled vector (Costa et al., 2024). Reported performance is task dependent: on VoxCeleb1 protocols, the best DMHSA with 1×11\times13 heads attains EER 1×11\times14 on Vox1-Test, 1×11\times15 on Vox1-E, and 1×11\times16 on Vox1-H; on speaker emotion recognition, the best MHSA at 1×11\times17 heads reaches 1×11\times18 accuracy whereas DMHSA at 1×11\times19 heads reaches {ϕr}r=1R\{\phi_r\}_{r=1}^R00; on speaker sex classification, accuracy is approximately {ϕr}r=1R\{\phi_r\}_{r=1}^R01 with {ϕr}r=1R\{\phi_r\}_{r=1}^R02; and on COVID-19 detection, weighted cross-entropy yields AUC {ϕr}r=1R\{\phi_r\}_{r=1}^R03 versus {ϕr}r=1R\{\phi_r\}_{r=1}^R04 with plain cross-entropy (Costa et al., 2024).

Taken together, these sequence models indicate that multigroup pooling can represent multiple temporal subspaces or token-level views in parallel, but they also show that gains are architecture- and task-specific rather than universal.

5. Vision attention modules with multiple pooling groups

In computer vision, multigroup attention pooling often appears as a combination of several global pooling operators rather than as multiple learned softmax maps over a common item set. The SPEM module is built on the empirical observation that a linear combination of global max-pooling and global min-pooling can match or exceed global average pooling. For an input feature map {ϕr}r=1R\{\phi_r\}_{r=1}^R05, the module computes

{ϕr}r=1R\{\phi_r\}_{r=1}^R06

where

{ϕr}r=1R\{\phi_r\}_{r=1}^R07

It then applies an excitation module and a reweighting module to produce the final channel attention (Zhong et al., 2022). On ResNet164+SE, the reported CIFAR-10/CIFAR-100 accuracies are {ϕr}r=1R\{\phi_r\}_{r=1}^R08 for GAP, {ϕr}r=1R\{\phi_r\}_{r=1}^R09 for pure max, {ϕr}r=1R\{\phi_r\}_{r=1}^R10 for pure min, {ϕr}r=1R\{\phi_r\}_{r=1}^R11 for the best fixed {ϕr}r=1R\{\phi_r\}_{r=1}^R12 mixture, and {ϕr}r=1R\{\phi_r\}_{r=1}^R13 for the self-adaptive mixture. The reweighting ablation on CIFAR-10 gives {ϕr}r=1R\{\phi_r\}_{r=1}^R14 without reweighting and {ϕr}r=1R\{\phi_r\}_{r=1}^R15 with the full two-path shared-reweight design (Zhong et al., 2022).

The Dual-pooling Attention module for UAV vehicle re-identification uses a richer multigroup strategy. Its channel-pooling branch combines four pooled descriptors—average pooling, generalized mean pooling, minimum pooling, and soft pooling—to produce a channel-wise attention map, while its spatial-pooling branch applies the same set of operations after reinterpreting spatial positions as channels. The outputs of the channel and spatial branches are then concatenated and projected by a {ϕr}r=1R\{\phi_r\}_{r=1}^R16 convolution (Guo et al., 2023). The paper attributes the utility of this design to UAV imagery, where top-down viewpoints reduce the visibility of local features and make simultaneous attention to global shape, strong edges, mid-level patterns, and weak cues especially important (Guo et al., 2023).

These vision modules broaden the notion of a “group.” The groups need not be semantic categories such as energy bins, nor multiple attention heads over a shared sequence; they can also be heterogeneous pooled statistics or branch-specific descriptors. This suggests that multigroup attention pooling is as much a design principle for preserving complementary global summaries as it is a specific equation family.

6. Relation to grouped attention in transformers, benefits, and limitations

A related but distinct development appears in grouped-query transformer attention. In Grouped-Query Attention, {ϕr}r=1R\{\phi_r\}_{r=1}^R17 query heads are partitioned into {ϕr}r=1R\{\phi_r\}_{r=1}^R18 disjoint groups of size {ϕr}r=1R\{\phi_r\}_{r=1}^R19, and all queries in group {ϕr}r=1R\{\phi_r\}_{r=1}^R20 share a pooled key and value

{ϕr}r=1R\{\phi_r\}_{r=1}^R21

Weighted Grouped-Query Attention replaces uniform averaging with learned weights,

{ϕr}r=1R\{\phi_r\}_{r=1}^R22

and adds {ϕr}r=1R\{\phi_r\}_{r=1}^R23 new scalar parameters per layer, initialized to {ϕr}r=1R\{\phi_r\}_{r=1}^R24 so that the model starts from the GQA solution (Chinnakonduru et al., 2024). Although this is not a pooling layer in the same sense as graph- or vision-level pooling, it is a grouped weighted-sum mechanism over head-specific representations and therefore belongs to the same broader grouping lineage.

The reported empirical outcome is that WGQA improves over GQA by an average of {ϕr}r=1R\{\phi_r\}_{r=1}^R25 and converges to traditional multi-head attention with no additional overhead during inference. On T5-base, WGQA yields {ϕr}r=1R\{\phi_r\}_{r=1}^R26 on Multi-News R1, {ϕr}r=1R\{\phi_r\}_{r=1}^R27 on CNN/DM R1, and {ϕr}r=1R\{\phi_r\}_{r=1}^R28 on WMT14 De→En BLEU versus {ϕr}r=1R\{\phi_r\}_{r=1}^R29, {ϕr}r=1R\{\phi_r\}_{r=1}^R30, and {ϕr}r=1R\{\phi_r\}_{r=1}^R31 for GQA, with only {ϕr}r=1R\{\phi_r\}_{r=1}^R32 extra parameters {ϕr}r=1R\{\phi_r\}_{r=1}^R33 of model{ϕr}r=1R\{\phi_r\}_{r=1}^R34. On T5-small, however, WGQA matches GQA at {ϕr}r=1R\{\phi_r\}_{r=1}^R35 on CNN/Daily Mail, both trailing MHA at {ϕr}r=1R\{\phi_r\}_{r=1}^R36, which the paper interprets as a scaling-law effect. The learned weights differ from uniform by a mean absolute difference of approximately {ϕr}r=1R\{\phi_r\}_{r=1}^R37 with {ϕr}r=1R\{\phi_r\}_{r=1}^R38, while convergence requires the same number of steps as GQA (Chinnakonduru et al., 2024).

The broader literature indicates three recurrent themes. First, multigroup attention pooling is commonly introduced to preserve heterogeneity that single-vector pooling discards: multiple localities in GNNs, multiple temporal subspaces in speech, or multiple physics-conditioned spatial dependencies in reactor surrogates (Itoh et al., 2021, Liu et al., 2018, Savage et al., 1 Jun 2026). Second, it frequently improves interpretability because the model exposes either explicit groupwise attention maps or separable layer/head contributions; examples include thermal versus fast neutron attention maps, diversified token-attention heads, and layer-wise graph representations with different locality profiles (Savage et al., 1 Jun 2026, Chen et al., 2018, Itoh et al., 2021). Third, the gains are not universal. MLAP is not statistically significant on OGB-PPA, WGQA does not outperform GQA on T5-small CNN/DM, and DMHSA does not beat the best MHSA on the reported emotion-recognition setup (Itoh et al., 2021, Chinnakonduru et al., 2024, Costa et al., 2024).

Within that evidence base, multigroup attention pooling is best understood not as a single standardized layer, but as a recurrent architectural response to the same problem: a one-shot pooled summary is often too coarse when the underlying signal contains distinct scales, contexts, subspaces, or physically meaningful regimes.

Topic to Video (Beta)

No one has generated a video about this topic yet.

Whiteboard

No one has generated a whiteboard explanation for this topic yet.

Follow Topic

Get notified by email when new papers are published related to Multigroup Attention Pooling.