Pith. sign in

REVIEW 4 major objections 5 minor 1 cited by

RAN Cortex: Memory-Augmented Intelligence for Context-Aware Decision-Making in AI-Native Networks

T0 review · 4 major / 5 minor · reviewed 2026-08-15 · deepseek-v4-flash

Pith's one-line read RAN Cortex proposes a retrieval-augmented memory layer that lets stateless RAN control agents condition decisions on semantically similar past network states without retraining.

desk verdict A cleanly written design sketch for retrieval-augmented RAN control, but the benefit claims are asserted, not demonstrated—treat it as a roadmap, not a result. read the letter →

arxiv 2505.07842 v1 pith:X3Q2ROUC submitted 2025-05-06 cs.AI

classification cs.AI
keywords RANCortexretrieval-augmenteddecision-makingepisodicmemoryO-RANxAppsrAI-nativenetworkscontext-awarecontrol
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 proposes RAN Cortex, a memory layer for radio access networks that lets previously stateless control agents—the xApps and rApps running in O-RAN intelligent controllers—query past network episodes and condition their decisions on the retrieved context. The central claim is that adding this retrieval-augmented decision loop gives RAN agents episodic memory, so they can recognize recurring situations such as stadium congestion or drone-corridor mobility and act on what worked last time, without retraining or end-to-end differentiable models. A sympathetic reader would care because this introduces a missing architectural primitive: memory as a first-class service in the RAN control pipeline, compatible with existing interfaces and with a fallback to ordinary stateless inference if recall fails. The paper formalizes the retrieval-augmented policy in three equations and analyzes deployment in non-real-time and near-real-time controller domains, though it does not yet report measurements from a public testbed.

What carries the argument

The load-bearing mechanism is the retrieval-augmented policy defined by equations (1)–(3): a context encoder $f_{\mathrm{enc}}$ that maps RAN state $x_t$ to a fixed-dimensional embedding $z_t$; a vector memory store $\mathcal{M}$ of past embeddings annotated with the control action taken and the outcome observed; a recall engine $R$ that returns the top-$k$ nearest stored episodes under cosine or dot-product similarity; and a policy interface that feeds the retrieved set to the agent as an auxiliary input. The mechanism carries the argument by turning episodic memory into an external, inference-agnostic service: any xApp or rApp can consume recall without architectural rewrites, and the same retrieval step works for rule-based, supervised, or reinforcement-learning policies. The paper argues that approximate nearest-neighbor search can keep the extra latency within the sub-10 ms budget of near-real-time control loops.

What would settle it

Run a memory-augmented and a stateless admission-control or mobility xApp on the same recorded RAN traces with repeated congestion or handover-failure events; if the retrieval-augmented agent does not beat the stateless baseline on throughput, handover success, or SLA violations, the central benefit claim fails. A sharper test is to check directly whether the top-$k$ nearest neighbours of a query state are episodes in which the recorded best action coincides with the action the policy should take.

Watch

Extended reading notes

Core claim

The paper's discovery is a formalization of retrieval-augmented decision-making for RAN control. In current xApps and rApps the decision is a stateless mapping $a_t = \pi(x_t)$. RAN Cortex replaces this with $z_t = f_{\mathrm{enc}}(x_t)$, $\{z_k, a_k, y_k\}_{k=1}^K = R(z_t)$, and $a_t = \pi(x_t, R(z_t))$: an encoder maps the observed RAN state to an embedding, a recall engine returns the top-$k$ past episodes whose embeddings are most similar, and the policy conditions on both the live state and the recalled context. The claim is that this simple augmentation supplies the three benefits missing from stateless agents—sample efficiency, contextual generalization, and decision consistency—and does so without retraining the policy, without modifying RAN fronthaul interfaces, and with graceful degradation to the original stateless path on recall failure.

Load-bearing premise

The architecture works only if network states that land close together in the learned embedding space are also situations that call for the same or similar control decisions, and the paper does not show how that encoder is learned or that this semantic transfer holds across cells, time, and topologies.

Editorial extensions

If this is right

  • Existing stateless xApps and rApps can be upgraded to context-aware decision-making by adding a memory query, with no retraining of the policy and no changes to the RAN fronthaul interfaces.
  • Recurring network episodes—such as stadium traffic surges, repeated handover failures at cell boundaries, or drone-corridor mobility patterns—would no longer be treated as novel on each occurrence, because the recalled episodes provide the historical action and outcome.
  • Near-real-time control loops remain feasible if approximate nearest-neighbor recall stays in the sub-10 ms range, while non-real-time rApps can query the same memory asynchronously for retrospective analysis and policy refinement.
  • Because recall is advisory and read-only, a recall-engine failure or timeout falls back to the original stateless policy, preserving operational safety and determinism.
  • The same memory store can serve multiple decision domains—mobility, admission control, beamforming, anomaly detection—making memory a reusable primitive across the RIC stack.

Reading between the lines

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

  • Beyond the paper, the same retrieval primitive could extend beyond RAN control to other domains where stateless agents face recurring contexts—such as edge computing, transport slicing, or core-network function placement—wherever an embedding of the operational state can be defined.
  • A concrete testable extension would be to learn the encoder $f_{\mathrm{enc}}$ from recorded RAN telemetry and then measure whether top-$k$ retrieval by embedding distance actually selects episodes whose recorded actions led to better outcomes; this would directly probe the paper's core assumption about semantic similarity.
  • If the memory store is continuously written with outcomes, RAN Cortex becomes an episodic control loop that can improve behavior online without gradient updates, an implication the paper gestures at but does not develop; a natural benchmark is to compare this against a periodically retrained baseline on the same trace.
  • The paper's latency projections depend on the scale of the vector index; an implicit test is to measure recall latency and retrieval quality as the memory store grows over months of network operation, since degradation there would undermine the near-real-time claim.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

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

Referee Report

4 major / 5 minor

Summary. This paper proposes RAN Cortex, a retrieval-augmented memory layer for AI-native RAN decision agents. The authors define a stateless policy baseline π(x_t), then augment it with a context encoder f_enc, a vector memory store, a recall engine R, and a policy interface, so that a_t = π(x_t, R(f_enc(x_t))) (Eqs. 1–3, §3.4). The paper describes deployment in O-RAN Non-RT/Near-RT RIC domains, analyzes interface compatibility, presents illustrative use cases such as stadium congestion and drone-corridor mobility, and claims improvements in adaptability, continuity, sample efficiency, and generalization without retraining. The manuscript states explicitly that RAN Cortex has not been instantiated in a public testbed (§4) and that validation is a roadmap item (§4.5).

Significance. If the claimed benefits were demonstrated, the contribution would be a useful architectural primitive: standardizing episodic recall as an inference-time service for xApps/rApps has plausible value, and the O-RAN compatibility discussion is careful. The formalization in Eqs. (1)–(3), however, is a standard definition of a top-k retrieval-augmented policy and does not by itself establish improvement. The paper is best read as a position/architecture proposal. Its strengths are a clear decomposition of the memory subsystem, a sensible fallback-to-stateless design, and a structured list of validation steps; it contains no machine-checked proofs, reproducible code, or parameter-free derivations. The central empirical claims are currently unsupported, which limits the significance until an actual implementation or at least a controlled simulation is provided.

major comments (4)
  1. [§4; §3.4] The central claim that RAN Cortex improves adaptability, continuity, sample efficiency, and generalization is not supported by any experiment, simulation, dataset, or counterfactual analysis. Section 4 opens with the statement that RAN Cortex has not yet been instantiated in a public testbed, and Section 4.5 defers validation to a roadmap; Section 6's use cases are narrative illustrations. The formal core in Eqs. (1)–(3) is a definition of a retrieval-augmented policy and contains no argument that conditioning on R(z_t) improves decisions. Because the claimed benefits are empirical, the absence of evidence is a load-bearing gap, not a presentation issue.
  2. [§2.3; §3.4] All claimed benefits depend on the unstated premise that f_enc maps RAN states into a space where cosine or dot-product similarity corresponds to decision-relevant semantic similarity. The paper calls f_enc a 'learned context encoder' in §2.3 but gives no training procedure, training data, or evaluation of retrieval relevance; §3.2 only lists candidate architectures (TCN, transformer, GNN). Without evidence that top-k retrieved episodes are actually relevant or that their actions and outcomes improve the policy, RAN Cortex could return irrelevant context, and the 'semantic retrieval' objective stated in §2.3 is not established.
  3. [§1.3; §2.3; §3.2] The framing that RAN Cortex provides benefits 'without retraining' is internally inconsistent and conflates retrieval with learning. The downstream policy π need not be retrained, but f_enc itself is a learned model requiring training and, for claims of generalization across cells and topologies, updates; no such procedure is specified. Relatedly, claims of improved 'sample efficiency' in §2.2 are unsupported because the architecture performs retrieval rather than learning from the retrieved samples.
  4. [§4.1; §3.4] The latency-feasibility claim is not measured for the proposed system. Section 4.1 cites FAISS's typical response times of 1–5 ms for k=5 at d=128 [22], but end-to-end latency in RAN Cortex also includes encoding, serialization, API or sidecar overhead, and policy integration; the additional '<1 ms in-process' figure is speculative. Thus the 'sub-10ms response time' design objective in §2.3 remains unverified.
minor comments (5)
  1. [Figure 1] Figure 1: 'NON-RTC RIC' should likely read 'Non-RT RIC'; the figure also contains a duplicated 'O-CU-CP' element and an ambiguous 'NFVi' annotation.
  2. [References] Reference [20] is listed with an '[Author(s)]' placeholder and appears to duplicate reference [7] (same survey title); this should be fixed.
  3. [§2.2] The bullet 'Improved sample efficiency: Learning from prior cases reduces the need for retraining or replay buffers' conflates retrieval with learning; RAN Cortex does not learn from prior cases, it retrieves them, so the phrasing should be revised.
  4. [§3.2] The statement that the vector memory store 'supports efficient top-k lookup in sub-millisecond latency' is not backed by a benchmark or implementation of the proposed store; it should be marked as a design target rather than a measured property.
  5. [Abstract; §1.3] The abstract and §1.3 say the use cases 'demonstrate' improvements, whereas Sections 4 and 6 provide only illustrative scenarios; the wording should be aligned with the actual evidence level.

Circularity Check

0 steps flagged · score 1.0 of 10

No significant circularity; RAN Cortex's benefit claims are asserted without validation, but no equation or fitted parameter reduces to its own input.

full rationale

The formal core of the paper (Section 3.4, Equations 1-3) is a definition of a retrieval-augmented policy a_t = pi(x_t, R(f_enc(x_t))) rather than a derivation of performance. No quantity is fitted to data and then reported as a prediction; the context encoder f_enc is not trained or evaluated in the paper, and the top-k retrieval rule is not claimed to be derived from first principles. The expected benefits in Section 4.4 ('We anticipate performance improvements in...') and the conclusions in Section 7.3 restate the design goals as outcomes, but this is an absence of empirical or analytic support, not circular reasoning. The paper itself acknowledges in Section 4 that 'RAN Cortex has not yet been instantiated in a public testbed.' There is no load-bearing self-citation chain and no uniqueness theorem imported from the authors' prior work. The only notable citation anomaly is reference [20], attributed to '[Author(s)]' with a title duplicating reference [7]; it is cited only in Section 3.2 to suggest possible encoder architectures and does not carry the paper's central claim. Because the strict criterion requires exhibiting a specific reduction of a result to its own inputs, and no such reduction is present, the honest finding is a low circularity score.

Assumptions & free parameters 0 free parameters · 4 assumptions · 1 invented entities

No free parameters are fitted to data; the architecture is proposed without quantitative results. The paper relies on several domain assumptions: statelessness is a meaningful limitation, learned embeddings capture decision-relevant similarity, past retrieved contexts improve future decisions, and ANN retrieval meets RIC latency budgets. None of these are experimentally validated. RAN Cortex itself is an introduced system concept with no independent empirical evidence.

assumptions (4)
  • domain assumption RAN xApp/rApp agents are stateless and this statelessness is a meaningful limitation for episodic network dynamics.
    Section 1.2 and Section 2.1 assert this as motivation without empirical quantification of the performance gap.
  • domain assumption Network states can be embedded into a vector space where semantic similarity corresponds to decision-relevant similarity.
    Section 2.3 defines f_enc and assumes cosine or dot products retrieve useful contexts; no evidence for this representation is given.
  • domain assumption Retrieving past similar states improves policy outcomes across mobility, admission control, and beamforming.
    Section 4.4 lists expected benefits with no simulations or measurements; transfer from language and RL domains is assumed.
  • domain assumption ANN retrieval can meet sub-10ms Near-RT RIC latency in a real O-RAN deployment.
    Section 4.1 cites FAISS's typical 1-5ms for k=5, d=128, but no end-to-end measurement within a RIC pod or via A1 is provided.
invented entities (1)
  • RAN Cortex memory layer (context encoder, vector store, recall engine, policy interface)
    purpose: Augment xApps and rApps with episodic retrieval during decision-making.
    The architecture is proposed but not implemented in a testbed, so there is no falsifiable measurement outside the paper to confirm it works.

how reviews work

0 comments
Cite this review

Pith. "Pith review of RAN Cortex: Memory-Augmented Intelligence for Context-Aware Decision-Making in AI-Native Networks." pith.science (2026). https://pith.science/paper/X3Q2ROUC

@misc{pith2026250507842,
  author       = {Pith},
  title        = {Pith review of: RAN Cortex: Memory-Augmented Intelligence for Context-Aware Decision-Making in AI-Native Networks},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/X3Q2ROUC}},
  note         = {Machine review of arXiv:2505.07842}
}
read the original abstract

As Radio Access Networks (RAN) evolve toward AI-native architectures, intelligent modules such as xApps and rApps are expected to make increasingly autonomous decisions across scheduling, mobility, and resource management domains. However, these agents remain fundamentally stateless, treating each decision as isolated, lacking any persistent memory of prior events or outcomes. This reactive behavior constrains optimization, especially in environments where network dynamics exhibit episodic or recurring patterns. In this work, we propose RAN Cortex, a memory-augmented architecture that enables contextual recall in AI-based RAN decision systems. RAN Cortex introduces a modular layer composed of four elements: a context encoder that transforms network state into high-dimensional embeddings, a vector-based memory store of past network episodes, a recall engine to retrieve semantically similar situations, and a policy interface that supplies historical context to AI agents in real time or near-real time. We formalize the retrieval-augmented decision problem in the RAN, present a system architecture compatible with O-RAN interfaces, and analyze feasible deployments within the Non-RT and Near-RT RIC domains. Through illustrative use cases such as stadium traffic mitigation and mobility management in drone corridors, we demonstrate how contextual memory improves adaptability, continuity, and overall RAN intelligence. This work introduces memory as a missing primitive in AI-native RAN designs and provides a framework to enable "learning agents" without the need for retraining or centralized inference

Figures

Figures reproduced from arXiv: 2505.07842 by the authors.

Figure 1
Figure 1. Integration of RAN Cortex into the standard O-RAN architecture. [PITH_FULL_IMAGE:figures/full_fig_p010_1.png] view at source ↗

Discussion (0). Continue with ORCID to comment.

Forward citations

Cited by 1 Pith paper

Reviewed papers in the Pith corpus that reference this work. Sorted by Pith novelty score. Full citation record

  1. Bridging the Cognitive Gap: A Unified Memory Paradigm for 6G Agentic AI-RAN

    cs.NI 2026-05 unverdicted novelty 6.0 of 10

    Proposal to replace message-passing interfaces in AI-RAN with zero-copy CXL shared memory, organized as reflexive, contextual, and evolutionary cognitive loops.

Reference graph

Works this paper leans on

37 extracted references · 29 canonical work pages · cited by 1 Pith paper

  1. [22]

    Billion-scale similarity search with GPUs,

    J. Johnson, M. Douze, and H. J´ egou, “Billion-scale similarity search with GPUs,” arXiv preprint arXiv:1702.08734 , 2017. Available: https: //arxiv.org/abs/1702.08734

  2. [1]

    O-RAN Architecture Description,

    O-RAN Working Group 1, “O-RAN Architecture Description,” O- RAN.WG1, O-RAN Alliance, v06.00, 2023

  3. [2]

    SMO enabling intelligent RAN operations,

    Ericsson, “SMO enabling intelligent RAN operations,” Ericsson White Paper, 2022. Available: https://www.ericsson.com/en/reports-and -papers/white-papers/smo-enabling-intelligent-ran-operation s

  4. [3]

    O-RAN Use Cases and Deployment Scenarios,

    O-RAN Alliance, “O-RAN Use Cases and Deployment Scenarios,” O- RAN.WG1-USE-CASE, v06.00, 2023. 23

  5. [4]

    O-RAN Security Focus,

    O-RAN Working Group 11, “O-RAN Security Focus,” O-RAN.WG11, O-RAN Alliance, v04.00, 2023. Available: https://www.o-ran.org/s pecifications

  6. [5]

    The Road to Open RAN Productization,

    Telecom Infra Project (TIP), OpenRAN Project Group and ABI Re- search, “The Road to Open RAN Productization,” White Paper, Sept

  7. [6]

    Technology Innovations for 6G System Architecture,

    Nokia Bell Labs, “Technology Innovations for 6G System Architecture,” White Paper, 2022. Available: https://d1p0gxnqcu0lvz.cloudfront. net/documents/Nokia_Bell_Labs_Technology_innovations_for_6 G_system_architecture_whitepaper.pdf

  8. [7]

    O-RAN xApps: Survey and Research Challenges,

    A. Elyasi, M. R. Palattella, T. Mahmoodi, and S. S. Kanhere, “O-RAN xApps: Survey and Research Challenges,” in IEEE Communications Standards Magazine, vol. 7, no. 4, pp. 40–47, Dec. 2023. doi: 10.1109/ MCOMSTD.2023.3320800

Show all 37 references
  1. [8]

    Digital Network Twins for Next- generation Wireless: Creation, Optimization, and Challenges,

    Y. Liu, X. Wang, D. Niyato, et al., “Digital Network Twins for Next- generation Wireless: Creation, Optimization, and Challenges,” in IEEE Communications Surveys & Tutorials , vol. 26, no. 1, pp. 38–72, 2024. doi: 10.1109/COMST.2023.3334971

  2. [9]

    Applications of Deep Reinforcement Learning in Communications and Networking: A Survey,

    N. C. Luong, D. T. Hoang, S. Gong, D. Niyato, P. Wang, Y. Liang, and D. I. Kim, “Applications of Deep Reinforcement Learning in Communications and Networking: A Survey,” in IEEE Communica- tions Surveys & Tutorials , vol. 21, no. 4, pp. 3133–3174, 2019. doi: 10.1109/COMST.2019.2916583

  3. [10]

    How best to apply AI in the Intelligent RAN Automation,

    Ericsson, “How best to apply AI in the Intelligent RAN Automation,” Ericsson Blog, Mar. 2022. Available: https://www.ericsson.com/e n/blog/2022/3/applying-ai-in-the-intelligent-ran-automatio n-for-innovation

  4. [11]

    AI in the 5G-A Era: Scenarios, Key Technologies, and Evolution Trends,

    Huawei Technologies, “AI in the 5G-A Era: Scenarios, Key Technologies, and Evolution Trends,” White Paper, 2023. Available: https://www.hu 24 awei.com/en/huaweitech/future-technologies/5ga-scenarios-k ey-technologies-evolution-trends

  5. [12]

    Unsupervised GAN-Based Intrusion Detection System Using Temporal Convolutional Networks and Self- Attention Mechanism,

    R. Zhang, A. Aral, and I. Brandic, “Unsupervised GAN-Based Intrusion Detection System Using Temporal Convolutional Networks and Self- Attention Mechanism,” in IEEE Transactions on Network and Service Management, vol. 20, no. 1, pp. 170–183, March 2023. doi: 10.1109/TN SM.2023.3241723

  6. [13]

    CLPREM: A real-time traffic prediction method for 5G mobile network,

    X. Wu and C. Wu, “CLPREM: A real-time traffic prediction method for 5G mobile network,” PLOS ONE , vol. 19, no. 4, Apr. 2024. doi: 10.1371/journal.pone.0288296

  7. [14]

    Deep learning based prediction of traffic peaks in mobile networks,

    D. Antoniades et al., “Deep learning based prediction of traffic peaks in mobile networks,” Computer Networks, vol. 232, 2023. doi: 10.1016/j. comnet.2023.110000

  8. [15]

    Model-Free Episodic Control,

    C. Blundell, B. Uria, A. Pritzel, Y. Li, A. Ruderman, J. Z. Leibo, J. Rae, D. Wierstra, and D. Hassabis, “Model-Free Episodic Control,” arXiv preprint arXiv:1606.04460, 2016. Available: https://arxiv.org/abs/ 1606.04460

  9. [16]

    Retrieval- Augmented Generation for Knowledge-Intensive NLP Tasks,

    P. Lewis, E. Perez, A. Piktus, F. Petroni, V. Karpukhin, N. Goyal, H. K¨ uttler, M. Lewis, W. Oguz, S. Riedel, and F. B. Xiang, “Retrieval- Augmented Generation for Knowledge-Intensive NLP Tasks,” inAdvances in Neural Information Processing Systems (NeurIPS) , vol. 33, pp. 945...

  10. [17]

    MANTRA: Memory Augmented Networks for Multiple Tra- jectory Prediction,

    F. Marchetti, F. Caba Heilbron, L. Minciullo, L. Baraldi, and R. Cuc- chiara, “MANTRA: Memory Augmented Networks for Multiple Tra- jectory Prediction,” in Proc. IEEE/CVF Conf. Comput. Vis. Pattern Recognit. (CVPR), 2020, pp. 7143–7152. Available: https://openacce ss.thecvf.com...

  11. [18]

    Billion-scale similarity search with GPUs,

    J. Johnson, M. Douze, and H. J´ egou, “Billion-scale similarity search with GPUs,” in IEEE Transactions on Big Data , vol. 7, no. 3, pp. 535–547, 2021. 25

  12. [19]

    O-RAN A1 Interface: Application Protocol Specifica- tion,

    O-RAN Alliance, “O-RAN A1 Interface: Application Protocol Specifica- tion,” O-RAN.WG2.A1AP-v4.04, 2024. Available: https://www.o-ran .org/specifications

  13. [20]

    O-RAN xApps: Survey and Research Challenges,

    [Author(s)], “O-RAN xApps: Survey and Research Challenges,” SSRN,

  14. [21]

    Applications of Deep Reinforcement Learning in Communications and Networking: A Survey,

    N. C. Luong, D. T. Hoang, S. Gong, D. Niyato, P. Wang, Y.-C. Liang, and D. I. Kim, “Applications of Deep Reinforcement Learning in Communications and Networking: A Survey,” IEEE Communications Surveys & Tutorials , vol. 21, no. 4, pp. 3133–3174, 2019. Available: https://ieeexp...

  15. [23]

    Cisco Multicloud Defense White Paper,

    Cisco, “Cisco Multicloud Defense White Paper,” 2024. Available: https: //www.cisco.com/c/en/us/products/collateral/security/multi cloud-defense/multicloud-defense-wp.html

  16. [24]

    Improving Language Models by Retrieving from Trillions of Tokens,

    S. Borgeaud, A. Mensch, J. Hoffmann, T. Cai, E. Rutherford, K. Millican, G. van den Driessche, J.-B. Lespiau, B. Damoc, A. Clark, D. de Las Casas, A. Guy, J. Menick, R. Ring, T. Hennigan, S. Huang, L. Maggiore, C. Jones, A. Cassirer, A. Brock, M. Paganini, G. Irving, O. Vinyal...

  17. [25]

    Minimal Near-RT RIC for AI Bench- marking,

    Colosseum Near-Real-Time RIC, “Minimal Near-RT RIC for AI Bench- marking,” GitHub repository, 2023. Available: https://github.com/w ineslab/colosseum-near-rt-ric

  18. [26]

    AI-Driven 5G Network Opti- mization: A Comprehensive Review of Resource Allocation, Traffic Management, and Dynamic Network Slicing,

    D. C. Bikkasani and M. R. Yerabolu, “AI-Driven 5G Network Opti- mization: A Comprehensive Review of Resource Allocation, Traffic Management, and Dynamic Network Slicing,” American Journal of Ar- tificial Intelligence , vol. 8, no. 2, pp. 55–62, 2024. Available: https: 26 //www...

  19. [27]

    ViterbiNet: A Deep Learning Based Viterbi Algorithm for Symbol Detection,

    N. Shlezinger, N. Farsad, Y. C. Eldar, and A. J. Goldsmith, “ViterbiNet: A Deep Learning Based Viterbi Algorithm for Symbol Detection,” IEEE Transactions on Wireless Communications, vol. 19, no. 5, pp. 3319–3331,

  20. [28]

    Communication and Computation O-RAN Resource Slicing for URLLC Services Using Deep Reinforcement Learning,

    A. Filali, B. Nour, S. Cherkaoui, and A. Kobbane, “Communication and Computation O-RAN Resource Slicing for URLLC Services Using Deep Reinforcement Learning,” ResearchGate, 2022. Available: https: //www.researchgate.net/publication/358603402_Communication _and_Computation_O-RA...

  21. [29]

    Leveraging Passage Retrieval with Generative Models for Open Domain Question Answering,

    G. Izacard and E. Grave, “Leveraging Passage Retrieval with Generative Models for Open Domain Question Answering,” in Proceedings of the 16th Conference of the European Chapter of the Association for Computational Linguistics: Main Volume , Online, 2021, pp. 874–880. Available...

  22. [30]

    Taking 5G RAN Analytics and Control to a New Level,

    X. Foukas, B. Radunovic, M. Balkwill, and Z. Lai, “Taking 5G RAN Analytics and Control to a New Level,” in Proceedings of the 29th Annual International Conference on Mobile Computing and Networking (ACM MobiCom), 2023. Available: https://dl.acm.org/doi/10.1145/357 0361.3613282

  23. [31]

    DTRAN: A Special Use Case of RAN Optimization using Digital Twin,

    C. Tunc, K. Duran, B. Bilgin, G. Kalem, and B. Canberk, “DTRAN: A Special Use Case of RAN Optimization using Digital Twin,” arXiv preprint arXiv:2409.01136, 2024. Available: https://arxiv.org/abs/ 2409.01136

  24. [32]

    Neural Episodic Control,

    A. Pritzel, B. Uria, S. Srinivasan, A. Puigdom` enech Badia, O. Vinyals, D. Hassabis, D. Wierstra, and C. Blundell, “Neural Episodic Control,” in Proc. 34th Int. Conf. on Machine Learning (ICML) , vol. 70, pp. 2827– 2836, 2017. Available: https://proceedings.mlr.press/v70/prit...

  25. [33]

    Hybrid computing using a neural network with dy- namic external memory,

    A. Graves, G. Wayne, M. Reynolds, T. Harley, I. Danihelka, A. Grabska- Barwi´ nska, S. G´ omez Colmenarejo, E. Grefenstette, T. Ramalho, J. Agapiou, A. Puigdom` enech Badia, K. M. Hermann, Y. Zwols, G. Ostro- vski, A. Cain, H. King, C. Summerfield, P. Blunsom, K. Kavukcuoglu, ...

  26. [34]

    End-To-End Mem- ory Networks,

    S. Sukhbaatar, A. Szlam, J. Weston, and R. Fergus, “End-To-End Mem- ory Networks,” in Advances in Neural Information Processing Systems 28 (NeurIPS), 2015. Available: https://proceedings.neurips.cc/p aper/5846-end-to-end-memory-networks 28

  27. [2020]

    Available: https://ieeexplore.ieee.org/document/8999605

  28. [2021]

    Available: https://cdn.mediavalet.com/usva/telecominfra project/KpZ-khbkhEmv_T-PQUecXQ/Ii8V48AQ-0mo7SKLPSIqXg/Origi nal/The_Road_to_Open_RAN_Productization_ABI_Research_Sept_ 2021.pdf

  29. [2023]

    Available: https://papers.ssrn.com/sol3/Delivery.cfm/14 02458b-0f50-495e-a725-8e5cf18b1cf0-MECA.pdf?abstractid=523 6117&mirid=1&type=2

Pith tools

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