Pith. sign in

REVIEW 2 major objections 4 minor 35 references

Cross-Attention Message-Passing Transformers for Code-Agnostic Decoding in 6G Networks

T0 review · 2 major / 4 minor · reviewed 2026-08-06 · deepseek-v4-flash

Pith's one-line read The paper reports that a masked cross-attention transformer can decode several error-correcting code classes with a single trained model, outperforming belief propagation on the tested codes.

desk verdict The CrossMPT architecture is a genuine improvement over ECCT, but the code-agnostic foundation-model claim is untested: every FCrossMPT/FCrossED evaluation code is in the training set. read the letter →

arxiv 2507.01038 v1 pith:JZG6OMXT submitted 2025-06-22 cs.IT cs.LGeess.SPmath.IT

classification cs.ITcs.LGeess.SPmath.IT MSC 94B0594B3568T07
keywords code-agnosticdecodingtransformerdecodercross-attentionmessagepassingerrorcorrectioncodesfoundationmodel6Gnetworksbeliefpropagation
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

The paper sets out to show that one transformer architecture can act as a unified, code-agnostic decoder for channel coding in 6G, replacing code-specific decoders that must be redesigned for each code. Its central architecture, CrossMPT, replaces the standard transformer's dense self-attention with two masked cross-attention blocks that pass messages between magnitude and syndrome representations, using the parity-check matrix and its transpose as attention masks. The paper argues this message-passing-like design is why CrossMPT beats belief propagation and prior neural decoders on the tested BCH, polar, and LDPC codes. On top of that, FCrossMPT and FCrossED replace code-dependent parameters with shared embeddings, so the authors claim a single trained model can decode a broad range of codes without retraining. A sympathetic reader would care because if this holds, a single AI decoder could serve the heterogeneous coding scenarios of 6G with lower latency and higher flexibility than per-code hardware.

What carries the argument

The central object is the masked cross-attention block pair indexed by the code's parity-check matrix $H$, the matrix whose rows define the parity-check equations. In each CrossMPT layer, the first block uses the magnitude embedding as query and the syndrome embedding as key and value with mask $H^\top$; the second uses the syndrome embedding as query and the updated magnitude embedding as key and value with mask $H$. Because the masks restrict attention to entries where $H$ or $H^\top$ has a one, the network only exchanges messages along legitimate variable–check connections, reproducing the information flow of belief propagation. FCrossMPT and FCrossED make this code-agnostic by using one shared embedding vector for all magnitude positions and one for all syndrome positions, and by resizing the syndrome embedding with $H^\top$ before the output layer; CrossED additionally runs $p$ parallel blocks with complementary parity-check masks generated by cyclically shifting the systematic parity-check matrix.

What would settle it

Train FCrossMPT on one set of codes, for example BCH and LDPC codes of lengths 49, 63, and 121, then test it on a held-out polar code or a BCH code of a length not in training; if the held-out BER at a fixed $E_b/N_0$ is close to random guessing or clearly worse than a code-specific decoder trained for that code, the claim of code-agnostic foundation decoding is refuted.

Watch

Extended reading notes

Core claim

CrossMPT's discovery is that decoding can be learned by iteratively alternating two sparse cross-attention operations: magnitude embeddings attend to syndrome embeddings through the mask $H^\top$, and syndrome embeddings attend to magnitude embeddings through $H$. This mirrors sum-product message passing on the Tanner graph, and the paper shows it is enough to outperform the denser ECCT self-attention and belief propagation on the codes tested, with sparser masks yielding lower FLOPs, faster inference, and much lower memory for long codes. The foundation variants carry the claim further: with position-invariant embeddings, a single model trained jointly on several codes achieves BER comparable to separately trained code-specific CrossMPT and to ECCT on all evaluated codes. The ensemble variant CrossED uses several cyclically shifted parity-check matrices in parallel to fix the weak bit positions left by a single systematic parity-check matrix, giving large BER gains on short blocklength codes without extra parameters or latency.

Load-bearing premise

The foundation-model claim rests on the assumption that training on a small fixed set of codes produces a decoder that works for codes, lengths, and rates outside that set; the experiments only evaluate codes that were included in the training data.

Editorial extensions

If this is right

  • If the reported results hold, a single CrossMPT-trained model can replace code-specific decoders across the BCH, polar, and LDPC families tested, cutting the number of decoder implementations in a 6G modem.
  • CrossMPT's sparser attention means ECCT-sized transformers can scale to longer blocklengths, such as the (648,540) LDPC code, where the original ECCT could not fit in the authors' memory budget.
  • CrossED's complementary parity-check masks improve short-blocklength BER by over an order of magnitude at the tested SNR points, with no extra inference latency because the parallel blocks run simultaneously.
  • The foundation variants FCrossMPT and FCrossED imply that one set of weights can be trained jointly on codes of different class, length, and rate, a necessary step toward an AI-native physical layer for 6G.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • The paper's foundation-model evidence is weaker than the 'code-agnostic' wording suggests: every evaluated code appears in the training set, so the current experiments demonstrate multi-code fitting rather than transfer to unseen parameters; a leave-one-code-out test is the missing experiment.
  • If genuine transfer holds, one could pre-train a decoder on a small family of codes and then apply it to new 6G code designs without any retraining or weight adaptation, which would change how new physical-layer codes are deployed; the paper does not yet establish this.
  • The complementary-mask idea is stated for cyclic codes via column shifts; for non-cyclic codes the paper only says partial diagonalization 'as much as possible', leaving a concrete construction and bound on bit coverage as an open extension.
  • Because attention is restricted to edges of the Tanner graph, scaling to very long codes may need low-rank or sparse attention kernels beyond simple masking; that is an implementation question the paper leaves implicit.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

2 major / 4 minor

Summary. The paper proposes CrossMPT, a transformer-based channel decoder that iteratively updates magnitude and syndrome embeddings through two masked cross-attention blocks, using the parity-check matrix and its transpose as attention masks. It then introduces FCrossMPT, a length/rate/class-invariant variant built from shared embeddings, and CrossED, an ensemble of CrossMPT blocks using complementary parity-check matrices, together with a foundation version FCrossED. Experiments compare BER against ECCT and BP-based neural decoders on BCH, polar, and LDPC codes, and report complexity and memory reductions for CrossMPT over ECCT.

Significance. If validated, the code-agnostic foundation-model claim would be a useful step toward flexible decoders for 6G, and CrossMPT's sparse cross-attention is a principled simplification of ECCT. The ablation in Table I gives evidence that magnitude-syndrome interactions alone are sufficient for the tested codes, and the complexity analysis in Section V-D quantifies a concrete advantage in FLOPs, memory, and training time. However, the paper's headline claim of generalization without retraining is not tested: all foundation-model evaluations use codes from the training set, and the performance comparisons lack error bars. The architectural and complexity contributions are credible, but the foundation-model conclusion currently exceeds the evidence.

major comments (2)
  1. [IV-B, IV-D] The abstract and conclusion claim 'code-agnostic' decoding 'without retraining,' but no experiment evaluates a code, length, or rate outside the training set. In Section IV-B, the (121,70) and (121,80) evaluation codes are explicitly stated to be 'included in the training data set'; the mixed-code experiment trains on all four codes shown in Fig. 9; and Section IV-D trains FCrossED on (15,7), (31,16), and (63,30), then reports results only for (31,16) and (63,30), both in the training set. Every reported foundation-model result is therefore in-distribution multi-task fitting, which cannot distinguish memorization of the small set of parity-check matrices from zero-shot generalization. To support the central claim, the authors should add held-out evaluations on codes, lengths, and rates not seen during training, and should separate a weaker 'multi-task decoding' claim from the stronger 'code-agnostic foundation model' claim.
  2. [IV and Table I] No Monte-Carlo trial counts, error bars, confidence intervals, or multiple-seed results are reported for any BER curve or table entry. For example, in Table I the difference between ECCT+Masking and ECCT at parameter 4 for the (63,45) code is 5.53 vs 5.60; without variance information, the claim of 'no significant performance degradation' and the broader state-of-the-art claim are not statistically grounded. The authors should report the number of Monte-Carlo trials and standard errors or confidence intervals for the main BER comparisons and ablations, or otherwise justify that the differences are beyond training noise.
minor comments (4)
  1. [VI] The conclusion contains a duplicated sentence: 'To move toward a code-agnostic foundation model, we developed FCrossMPT by replacing code-dependent parameters with code-invariant embeddings' appears twice in succession.
  2. [II-C] The text refers to a theoretical proof in [25] that preprocessing makes performance invariant to the training codeword, but the theorem is not stated; adding a precise statement would help the reader verify the claim.
  3. [IV-A] The phrase 'CrossMPT and ECCT are obtained with N=6 and d=128' should be 'configured with' or 'set to'; as written it is slightly misleading.
  4. [Abstract and IV-A] The 'state-of-the-art among single neural decoders' claim is based on comparisons with ECCT and two BP-based neural decoders on a limited set of codes; the comparison set should be stated explicitly or the claim should be softened.

Circularity Check

0 steps flagged · score 0.0 of 10

No circular derivation; the foundation-model generalization claim is empirically under-tested but not circular.

full rationale

The paper's contributions are empirical neural-decoder results; there is no first-principles derivation that reduces to its own inputs. CrossMPT's mask design (H and H^T in the cross-attention blocks) is an architectural definition, not a derived prediction. FCrossMPT's shared embeddings are explicitly adopted from FECCT [29], an external prior work, and the output-layer linear-combination motivation is likewise attributed to [29]. The only same-author design ingredient is the complementary-PCM masking from MM-ECCT [28], but CrossED's benefit is independently evaluated in this paper (Sec. V-C, Fig. 13), so the citation is not load-bearing in the sense of substituting for evidence. The main weakness is the 'foundation' claim: Sec. IV-B states the evaluated codes 'are included in the training data set,' and Sec. IV-D trains on all codes it later evaluates, so zero-shot transfer to unseen codes is never tested. That is a gap between claim and evidence, not a circular reduction: the reported BER curves are measured outcomes, not quantities forced by construction from fitted parameters. Accordingly no circular step meets the evidentiary bar of quoting a specific equation or construction that equals its own input.

Assumptions & free parameters 6 free parameters · 6 assumptions · 0 invented entities

The central claims rest mostly on training and evaluation choices rather than derivations: fixed architecture hyperparameters, a fixed SNR training range, the theorem of [25] for all-zero codeword training, and transfer assumptions for shared embeddings and cyclic-shift masks. No new physical entities are introduced.

free parameters (6)
  • Number of decoder layers N = 6 or 10 depending on code
    Set per code family by hand; no ablation is provided to justify the choice.
  • Embedding dimension d = 128, with 32 for BCH(255,223) and WRAN(384,320)
    Chosen to balance memory and performance; not optimized.
  • Ensemble size p = 2 for (63,30) and (127,64) BCH; 3 for (31,21) BCH
    Chosen so the rate is close to 1/p to cover bit positions with identity submatrices; no systematic sweep is reported.
  • Training SNR range = 3 to 7 dB Eb/N0
    Fixed for all experiments following ECCT; BER at other SNRs is extrapolated from this training range.
  • Epoch count = 1000, 3000, 4000, or 5000 depending on experiment
    Increased when training data is mixed; no early stopping or learning-curve analysis is reported.
  • Batch size = 128 or 256
    Changed for foundation-model experiments; the impact of this change is not assessed.
assumptions (6)
  • standard math For any linear code, multiple valid parity-check matrices represent the same code, and the syndrome s(y)=H y_b is a sufficient statistic under the all-zero codeword preprocessing of [25].
    Invoked in Sec. II-A and Sec. III-E to justify training on the all-zero codeword and using arbitrary PCM masks.
  • domain assumption Training on all-zero codewords over an AWGN channel in the 3 to 7 dB Eb/N0 range transfers to all codewords and to the full SNR operating range.
    Sec. III-E adopts the syndrome-based preprocessing of [25]; the practical transfer to all SNRs is assumed rather than demonstrated.
  • domain assumption A single shared magnitude embedding and a single shared syndrome embedding are sufficient to make decoding invariant to code length, rate, and class.
    Sec. III-C replaces positional embeddings with shared W_M and W_S; this is the core generalization assumption of FCrossMPT.
  • domain assumption The syndrome embedding can be resized to magnitude shape by multiplying with H^T and then added to the magnitude embedding in the output layer.
    Sec. III-C adopts the FECCT finding that prediction bits are linear combinations of magnitude and syndrome embeddings; no proof is given for CrossMPT.
  • standard math Cyclic shifts of a systematic PCM produce valid PCMs for cyclic codes, so the shifted matrices can be used as ensemble masks.
    Sec. III-D constructs complementary PCMs through Eq. (5) using the cyclic-code property that a cyclic shift of a codeword remains a valid codeword.
  • domain assumption Complementary PCM masks whose identity positions cover different bit ranges improve ensemble BER because identity-matrix positions have lower BER.
    Sec. III-D and Sec. V-C rely on the observation from MM-ECCT [28] that identity-matrix positions have lower BER; the paper does not independently prove this.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Cross-Attention Message-Passing Transformers for Code-Agnostic Decoding in 6G Networks." pith.science (2026). https://pith.science/paper/JZG6OMXT

@misc{pith2026250701038,
  author       = {Pith},
  title        = {Pith review of: Cross-Attention Message-Passing Transformers for Code-Agnostic Decoding in 6G Networks},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/JZG6OMXT}},
  note         = {Machine review of arXiv:2507.01038}
}
read the original abstract

Channel coding for 6G networks is expected to support a wide range of requirements arising from heterogeneous communication scenarios. These demands challenge traditional code-specific decoders, which lack the flexibility and scalability required for next-generation systems. To tackle this problem, we propose an AI-native foundation model for unified and code-agnostic decoding based on the transformer architecture. We first introduce a cross-attention message-passing transformer (CrossMPT). CrossMPT employs two masked cross-attention blocks that iteratively update two distinct input representations-magnitude and syndrome vectors-allowing the model to effectively learn the decoding problem. Notably, our CrossMPT has achieved state-of-the-art decoding performance among single neural decoders. Building on this, we develop foundation CrossMPT (FCrossMPT) by making the architecture invariant to code length, rate, and class, allowing a single trained model to decode a broad range of codes without retraining. To further enhance decoding performance, particularly for short blocklength codes, we propose CrossMPT ensemble decoder (CrossED), an ensemble decoder composed of multiple parallel CrossMPT blocks employing different parity-check matrices. This architecture can also serve as a foundation model, showing strong generalization across diverse code types. Overall, the proposed AI-native code-agnostic decoder offers flexibility, scalability, and high performance, presenting a promising direction to channel coding for 6G networks.

Figures

Figures reproduced from arXiv: 2507.01038 by the authors.

Figure 1
Figure 1. The PCMs and the mask matrices of ECCT [26] and CrossMPT. [PITH_FULL_IMAGE:figures/full_fig_p003_1.png] view at source ↗
Figure 2
Figure 2. The architectures of (a) CrossMPT and (b) foundation CrossMPT (FCrossMPT). [PITH_FULL_IMAGE:figures/full_fig_p004_2.png] view at source ↗
Figure 3
Figure 3. Conceptual comparison of the sum-product message-passing algorithm [PITH_FULL_IMAGE:figures/full_fig_p005_3.png] view at source ↗
Figures from the paper (11 more)
Figure 4
Figure 4. Figure 4: The architecture of CrossED. 𝐇sys 𝐇c 1 𝐇c 2 [PITH_FULL_IMAGE:figures/full_fig_p006_4.png]
Figure 5
Figure 5. Figure 5: Three PCMs of (31, 21) BCH codes utilized in p = 3 CrossED. the masked positions. Then, we apply the scaled dot-product attention and the resulting output is the updated syndrome embedding S ′ . This updated embedding is subsequently used in the next decoder layer to f…
Figure 6
Figure 6. Figure 6: BER performances of ECCT, CrossMPT, and BP-based neural decoders for (a) [PITH_FULL_IMAGE:figures/full_fig_p008_6.png]
Figure 7
Figure 7. Figure 7: BER performances of BP decoders (iteration 20, 50, and 100) and CrossMPT for (a) [PITH_FULL_IMAGE:figures/full_fig_p008_7.png]
Figure 8
Figure 8. Figure 8: BER performances of CrossMPT, BP decoder (iteration 20, 50), and FCrossMPT for (a) [PITH_FULL_IMAGE:figures/full_fig_p009_8.png]
Figure 9
Figure 9. Figure 9: BER performances of ECCT, CrossMPT, and FCrossMPT for (a) [PITH_FULL_IMAGE:figures/full_fig_p009_9.png]
Figure 10
Figure 10. Figure 10: BER performances of CrossMPT, BP decoder (iteration 20, 50), and CrossED for (a) [PITH_FULL_IMAGE:figures/full_fig_p010_10.png]
Figure 11
Figure 11. Figure 11: BER performances of ECCT, CrossMPT, CrossED, and FCrossED for (a) [PITH_FULL_IMAGE:figures/full_fig_p010_11.png]
Figure 12
Figure 12. Figure 12: (a) Attention scores when a single-bit error occurs at the first bit position; (b) vertical-wise sum of attention scores in (a); (c) attention scores in the [PITH_FULL_IMAGE:figures/full_fig_p011_12.png]
Figure 13
Figure 13. Figure 13: Bitwise BER performance of CrossMPT and CrossED for [PITH_FULL_IMAGE:figures/full_fig_p011_13.png]
Figure 14
Figure 14. Figure 14: Comparison of the mask matrix density between ECCT and CrossMPT. [PITH_FULL_IMAGE:figures/full_fig_p012_14.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

35 extracted references · 32 canonical work pages

  1. [1]

    CrossMPT: Cross-attention message-passing transformer for error correcting codes,

    S.-J. Park, H.-Y . Kwak, S.-H. Kim, Y . Kim, and J.-S. No, “CrossMPT: Cross-attention message-passing transformer for error correcting codes,” inProc. Int. Conf. Learn. Representations (ICLR), Apr. 2025. [Online]. Available: https://openreview.net/forum?id=gFvRRCnQvX

  2. [2]

    A vision of 6G wireless systems: Applications, trends, technologies, and open research problems,

    W. Saad, M. Bennis, and M. Chen, “A vision of 6G wireless systems: Applications, trends, technologies, and open research problems,”IEEE Netw., vol. 21, no. 3, pp. 134–142, 2020

  3. [3]

    The road towards 6G: A comprehensive survey,

    W. Jiang, B. Han, M. A. Habibi, and H. D. Schotten, “The road towards 6G: A comprehensive survey,”IEEE Open J. Commun. Soc., vol. 2, pp. 334–366, 2021

  4. [4]

    Trends in channel coding for 6G,

    S. Miao, C. Kestel, L. Johannsen, M. Geiselhart, L. Schmalen, A. Balatsoukas-Stimming, G. Liva, N. Wehn, and S. ten Brink, “Trends in channel coding for 6G,”Proc. IEEE, vol. 112, no. 7, pp. 653–675, 2024

  5. [5]

    6G: A welcome chance to unify channel coding?

    M. Geiselhart, F. Krieg, J. Clausius, D. Tandler, and S. ten Brink, “6G: A welcome chance to unify channel coding?”IEEE BITS Inf. Theory Mag., vol. 3, no. 1, pp. 67–80, 2023

  6. [6]

    Channel coding for 6g extreme connectivity- requirements, capabilities and fundamental tradeoffs,

    H. Zhang and W. Tong, “Channel coding for 6g extreme connectivity- requirements, capabilities and fundamental tradeoffs,”IEEE BITS Inf. Theory Mag., vol. 3, no. 1, pp. 54–66, 2023

  7. [7]

    BERT: Pre-training of deep bidirectional transformers for language understanding,

    J. Devlin, M.-W. Chang, K. Lee, and K. Toutanova, “BERT: Pre-training of deep bidirectional transformers for language understanding,” inProc. Conf. North Amer. Chapter Assoc. Comput. Linguistics-Hum. Lang. Technol., (NAACL), 2019

  8. [8]

    Deep residual learning for image recognition,

    K. He, X. Zhang, S. Ren, and J. Sun, “Deep residual learning for image recognition,” inProc. IEEE Conf. Comput. Vis. Pattern Recog- nit. (CVPR), 2016

Show all 35 references
  1. [9]

    Rich feature hierarchies for accurate object detection and semantic segmentation,

    R. Girshick, J. Donahue, T. Darrell, and J. Malik, “Rich feature hierarchies for accurate object detection and semantic segmentation,” inProc. IEEE Conf. Comput. Vis. Pattern Recognit. (CVPR), 2014

  2. [10]

    End-to-end object detection with transformers,

    N. Carion, F. Massa, G. Synnaeve, N. Usunier, A. Kirillov, and S. Zagoruyko, “End-to-end object detection with transformers,” inProc. Eur. Conf. Comput. Vis. (ECCV), 2020

  3. [11]

    The capacity of low-density parity check codes under message-passing decoding,

    T. Richardson and R. Urbanke, “The capacity of low-density parity check codes under message-passing decoding,”IEEE Trans. Inf. Theory, vol. 47, no. 2, pp. 599–618, 2001

  4. [12]

    Reduced complexity iterative decoding of low-density parity check codes based on belief propagation,

    M. P. C. Fossorier, M. Mihaljevic, and H. Imai, “Reduced complexity iterative decoding of low-density parity check codes based on belief propagation,”IEEE Trans. on Commun., vol. 47, no. 5, pp. 673–680, 1999

  5. [13]

    Soft-decision decoding of linear block codes based on ordered statistics,

    M. P. C. Fossorier and S. Lin, “Soft-decision decoding of linear block codes based on ordered statistics,”IEEE Trans. Inf. Theory, vol. 41, no. 5, pp. 1379–1396, 1995

  6. [14]

    Capacity-achieving guessing random additive noise decoding,

    K. R. Duffy, J. Li, and M. M ´edard, “Capacity-achieving guessing random additive noise decoding,”IEEE Trans. Inf. Theory, vol. 65, no. 7, pp. 4023–4040, 2019

  7. [15]

    Deep learning methods for improved decoding of linear codes,

    E. Nachmani, E. Marciano, L. Lugosch, W. J. Gross, D. Burshtein, and Y . Beery, “Deep learning methods for improved decoding of linear codes,”IEEE J. Sel. Topics Signal Process., vol. 12, no. 1, pp. 119–131, 2018

  8. [16]

    Learning to decode protograph LDPC codes,

    J. Dai, K. Tan, Z. Si, K. Niu, M. Chen, H. V . Poor, and S. Cui, “Learning to decode protograph LDPC codes,”IEEE J. Sel. Areas Commun., vol. 39, no. 7, pp. 1983–1999, 2021

  9. [17]

    Hyper-graph-network decoders for block codes,

    E. Nachmani and L. Wolf, “Hyper-graph-network decoders for block codes,” inProc. Adv. Neural Inf. Process. Syst. (NeurIPS), 2019, pp. 2326–2336

  10. [18]

    Autoregressive belief propagation for decoding block codes,

    E. Nachmani and L. Wolf, “Autoregressive belief propagation for decoding block codes,” inarxiv preprint arXiv:2103.11780, 2021

  11. [19]

    Boosting learning for LDPC codes to improve the error-floor performance,

    H.-Y . Kwak, D.-Y . Yun, Y . Kim, S.-H. Kim, and J.-S. No, “Boosting learning for LDPC codes to improve the error-floor performance,” in Proc. Adv. Neural Inf. Process. Syst. (NeurIPS), Dec. 2023

  12. [20]

    Neural min-sum decoding for generalized LDPC codes,

    H.-Y . Kwak, J.-W. Kim, Y . Kim, S.-H. Kim, and J.-S. No, “Neural min-sum decoding for generalized LDPC codes,”IEEE Commun. Lett., vol. 26, no. 12, pp. 2841–2845, 2022

  13. [21]

    Boosted neural decoders: Achieving extreme reliability of ldpc codes for 6G networks,

    H.-Y . Kwak, D.-Y . Yun, Y . Kim, S.-H. Kim, and J.-S. No, “Boosted neural decoders: Achieving extreme reliability of ldpc codes for 6G networks,”IEEE J. Sel. Areas Commun., vol. 43, no. 4, pp. 1089–1102, 2025

  14. [22]

    Pruning and quantizing neural belief propagation decoders,

    A. Buchberger, C. Hager, H. D. Pfister, L. Schmalen, and A. G. I. Amat, “Pruning and quantizing neural belief propagation decoders,”IEEE J. Sel. Areas in Commun., vol. 39, no. 7, pp. 1957–1966, 2021

  15. [23]

    On deep learning- based channel decoding,

    T. Gruber, S. Cammerer, J. Hoydis, and T. Brink, “On deep learning- based channel decoding,” inProc. Annu. Conf. Inf. Sci. Syst. (CISS), 2017, pp. 1–6

  16. [24]

    Scaling deep learning-based decoding of polar codes via partitioning,

    S. Cammerer, T. Gruber, J. Hoydis, and S. ten Brink, “Scaling deep learning-based decoding of polar codes via partitioning,” inProc. IEEE Global Commun. Conf. (GLOBECOM), 2017

  17. [25]

    Deep learning for decoding of linear codes - A syndrome-based approach,

    A. Bennatan, Y . Choukroun, and P. Kisilev, “Deep learning for decoding of linear codes - A syndrome-based approach,” inProc. IEEE Int. Symp. Inf. Theory (ISIT), 2018, pp. 1595–1599

  18. [26]

    Error correction code transformer,

    Y . Choukroun and L. Wolf, “Error correction code transformer,” inProc. Adv. Neural Inf. Process. Syst. (NeurIPS), 2022

  19. [27]

    Denoising diffusion error correction codes,

    Y . Choukroun and L. Wolf, “Denoising diffusion error correction codes,” inProc. Int. Conf. Learn. Representations (ICLR), 2023

  20. [28]

    Multiple- masks error correction code transformer for short block codes,

    S.-J. Park, H.-Y . Kwak, S. Kim, S. Kim, Y . Kim, and J.-S. No, “Multiple- masks error correction code transformer for short block codes,”IEEE J. Sel. Areas Commun., 2025, accepted

  21. [29]

    A foundation model for error correction codes,

    Y . Choukroun and L. Wolf, “A foundation model for error correction codes,” inProc. Int. Conf. Learn. Representations (ICLR), 2024

  22. [30]

    Attention is all you need,

    A. Vaswani, N. Shazeer, N. Parmar, J. Uszkoreit, L. Jones, A. N. Gomez, Ł. Kaiser, and I. Polosukhin, “Attention is all you need,” inProc. Adv. Neural Inf. Process. Syst. (NeurIPS), 2017

  23. [31]

    An image is worth16×16words: Transformers for image recognition at scale,

    A. Dosovitskiyet al., “An image is worth16×16words: Transformers for image recognition at scale,” inProc. Int. Conf. Learn. Representa- tions (ICLR), 2021

  24. [32]

    Speech-transformer: A no-recurrence sequence-to-sequence model for speech recognition,

    L. Dong, S. Xu, and B. Xu, “Speech-transformer: A no-recurrence sequence-to-sequence model for speech recognition,” inProc. IEEE Int. Conf. Acoust., Speech, Signal Process. (ICASSP), 2018, pp. 5884–5888

  25. [33]

    Highly accurate protein structure prediction with AlphaFold,

    J. Jumperet al., “Highly accurate protein structure prediction with AlphaFold,”Nature, vol. 596, no. 7873, pp. 583–589, 2021

  26. [34]

    Adam: A method for stochastic optimization,

    D. P. Kingma and J. Ba, “Adam: A method for stochastic optimization,” inarXiv preprint arXiv:1412.6980, 2014

  27. [35]

    Database of channel codes and ML simulation results,

    M. Helmling, S. Scholl, F. Gensheimer, T. Dietz, D. Kraft, S. Ruzika, and N. Wehn, “Database of channel codes and ML simulation results,” https://rptu.de/en/channel-codes, 2019, accessed: 2024-05-01

Pith tools

Reviewed August 6, 2026 · model on record in the stance chip above.