English static mirror for SEO/GEO · AI-assisted translation · Read Chinese original

Bidirectional Recurrent Gating (BRG): A Unified Architecture for Attention Phenomena

Forum topic · 小凯 · 2026-05-30

Summary

A forum post on zhichai.net reviews a Nature Communications paper by Salehi et al. introducing Bidirectional Recurrent Gating (BRG), a U-Net-based architecture designed to model visual attention and the binding problem in the brain. BRG uses two pathways (a feedforward feature stream and a top-down attention stream) connected by lateral links, with multiplicative gating (Scale(a) = 1.0 + 0.5 * a) applied at each layer across multiple recurrent iterations. A single network trained on seven attention tasks (object recognition, spatial cueing, visual inference, saliency pop-out, top-down search, spatial binding, and inhibition of return) achieves up to 99% accuracy, often with attention maps emerging from classification labels alone. Notably, the untested model spontaneously reproduces the Bregman illusion and border-ownership coding, and its internal representations align with primate neurophysiology: multiplicative gain modulation, attention-invariant tuning, and late-onset attentional effects (~150-200ms). The post contrasts BRG with Transformers, which lack lateral, top-down, and recurrent processing, and discusses limitations including fixed iteration counts, computational cost, and the biological plausibility of backpropagation. Code is available at github.com/ssnio/bio-attention; DOI: 10.1038/s41467-026-72146-9.

Paper: *Modeling attention and binding in the brain through bidirectional recurrent gating* Published: Nature Communications, 2026-05-05 Authors: Saeed Salehi, Jordan Lei, Ari S. Benjamin, Klaus-Robert Müller, Konrad P. Kording DOI: 10.1038/s41467-026-72146-9 Code: ssnio/bio-attention

Key points

  • Goal: Provide a unified computational model of attention that simultaneously explains spatial attention, feature attention, object-based attention, top-down search, inhibition of return (IOR), border ownership, and multiplicative gain modulation — phenomena previously handled only by specialized models.
  • Architecture: BRG builds on a U-Net backbone with two pathways:
  • A feedforward feature pathway (analogous to the ventral stream) that extracts increasingly abstract visual features.
  • A top-down attention pathway that upsamples from the bottleneck and generates attention maps, receiving top-down, lateral, and task-embedding inputs.
  • Multiplicative gating: At iteration t, layer ℓ, feature maps are modulated by Scale(a) = 1.0 + 0.5 * a (with a in (-1,1)), so attention enhances (up to 1.5x), suppresses (down to 0.5x), or leaves features unchanged. The 0.5 coefficient deliberately preserves partial distractor information for future iterations.
  • Iterative processing: The model runs 3–7 recurrent iterations, with attention effects emerging in iterations 3–4 — matching the late onset (~150–200ms) of attentional modulation in ERP/EEG recordings.
  • Multi-task results (single shared network)

    | Task | Supervision | Accuracy | |------|-------------|----------| | Object recognition (occlusion + noise) | labels only | 99% | | Spatial cueing | labels only | 99% | | Visual inference (arrow pointing) | labels only | 99% | | Saliency pop-out | labels only | 99% | | Top-down search | labels + attention maps | 88% | | Spatial binding (moving objects) | labels + attention maps | 99% | | Inhibition of return | labels + attention maps | 96% |

    Notably, the first four tasks were trained with classification labels only — plausible attention maps emerged as task-driven byproducts. IOR is enabled by dense recurrent layers at the bottleneck acting as working memory.

    Emergent perceptual phenomena

  • Bregman illusion: A model trained only on object recognition spontaneously showed better recognition when an occluder was visible than when it was removed — implying learned border-ownership coding, a property of primate V2, without being trained for it.
  • Neurophysiological alignment: The gating matches multiplicative gain modulation recorded in macaque V1/V4/IT; in curve-tracing, unit tuning was attention-invariant (amplitude changed, selectivity did not), consistent with Roelfsema et al.'s V1 findings.
  • Implications for AI

    The post contrasts BRG with Transformers, which "lack the three key elements of attention: lateral, top-down, and recurrent activities." Transformer self-attention is single-step, global, and feedforward. BRG instead shows that architectural constraints can act as inductive priors: on CelebA gender classification, BRG learned to attend to facial geometry and mask hair, avoiding the blonde→female spurious correlation — relevant to shortcut-learning and AI-safety concerns.

    Limitations raised

    1. Simplified natural-image testing: COCO results (~80%) lag far behind MNIST-level (99%) performance. 2. Fixed iteration count: No adaptive or learned stopping mechanism. 3. Qualitative vs. quantitative biological match: No single-neuron PSTH fitting; the exact gating form (1.0 + 0.5·a) is not quantitatively validated against neural data. 4. Compute cost: 3–7× the cost of an equivalent feedforward network. 5. Backpropagation: Its biological implausibility arguably weakens BRG's standing as a brain model.

    Conclusion

    The paper's value lies less in SOTA performance than in demonstrating architecture as theory: each design choice encodes a hypothesis about the brain, validated by emergent phenomena like the Bregman illusion. It offers a productive common ground between neuroscience and machine learning — showing that sufficiently good structural constraints can let simple gradient descent give rise to surprising complexity.

    References

  • Salehi, S., Lei, J., Benjamin, A.S., Müller, K.R. & Kording, K.P. (2026). Modeling attention and binding in the brain through bidirectional recurrent gating. *Nature Communications*. https://doi.org/10.1038/s41467-026-72146-9
  • Preprint: https://doi.org/10.1101/2024.09.09.612033
  • Code: https://github.com/ssnio/bio-attention

Tags

#attention#binding-problem#bidirectional-recurrent-gating#computational-neuroscience#nature-communications#multiplicative-gating#bio-inspired-ai#deep-learning

This page is an English static mirror generated for search and AI citation. It may be a full translation or structured summary of the Chinese original. Canonical interactive discussion lives on the Chinese page: https://zhichai.net/topic/177980559