REVIEW 4 major objections 5 minor 24 cited by
Large Wireless Model (LWM): A Foundation Model for Wireless Channels
T0 review · 4 major / 5 minor · reviewed 2026-08-12 · deepseek-v4-flash
Pith's one-line read Transformer channel embeddings beat raw channels at half the data
desk verdict A reasonable first cut at a wireless channel foundation model, but the headline comparison isn't controlled enough to support the data-efficiency claim. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing mechanism is Masked Channel Modeling (MCM) inside a transformer encoder. Each complex channel matrix is split into real and imaginary patches; roughly 15% of the patches are masked, with 80% replaced by a uniform mask vector, 10% by random vectors, and 10% left unchanged, and the model is trained with mean squared error to reconstruct the original patch values from surrounding context. A learnable CLS patch is prepended to the sequence so the encoder produces a global channel summary in addition to per-patch embeddings. At inference the pretrained encoder is frozen or lightly fine-tuned, and its embeddings replace the raw channel as input to a small downstream model.
What would settle it
Run the same downstream architectures and training-set sizes on measured MIMO channel data with known beam labels and LoS/NLoS labels; if raw channels match or beat the LWM embeddings on those curves, the central transfer claim is falsified.
Extended reading notes
Core claim
The central discovery is that masked channel modeling, a self-supervised objective borrowed from language modeling but applied to continuous-valued channel data, produces embeddings that carry more task-relevant structure than the raw channel entries themselves. LWM is pretrained on over a million synthetic channel matrices spanning many simulated environments, then frozen and used as a feature extractor. In the downstream evaluation, the full channel embeddings outperform raw channels for sub-6 GHz to mmWave beam prediction across codebooks of 16 to 256 beams, and the compact CLS embedding outperforms raw channels for LoS/NLoS classification while being 32 times smaller. The embeddings also remain effective when the input channels are corrupted by complex Gaussian noise at 5 dB SNR, and fine-tuning only the last three encoder layers yields near-perfect classification with minimal labels.
Load-bearing premise
The argument stands on synthetic ray-traced channels being representative of real wireless propagation; if simulated channel statistics differ from measured ones, the embedding gains may not appear in deployed systems.
Editorial extensions
If this is right
- Downstream wireless models can reach the same performance with roughly half the labeled training data when LWM embeddings replace raw channel matrices.
- A single frozen pretrained channel encoder serves multiple tasks, including beam prediction and LoS/NLoS classification, without per-task retraining of the feature extractor.
- The 32-times-smaller CLS embedding retains enough information for classification, pointing toward low-overhead channel state information feedback.
- Fine-tuning only the last three encoder layers preserves coarse propagation structure while adapting to task-specific details, enabling strong performance with as few as six labeled samples.
- Attention maps across channel patches provide a way to see which subcarriers and antennas drive a downstream prediction.
Reading between the lines
- A direct comparison against a same-size autoencoder or contrastive learner on the same downstream tasks would show whether the gains come from the masked objective, the transformer, or simply from large-scale pretraining on wireless channels.
- The same masked-channel recipe could be applied to other physical-layer quantities, such as delay-Doppler profiles, interference maps, or radar returns, extending the foundation-model approach beyond channel matrices.
- The model has only 600K parameters; if the scaling behavior seen in language and vision transfers to wireless, a larger model trained on more scenarios could widen the reported data-efficiency margins.
- The strongest test the paper does not run is measured-channel evaluation; if the transfer holds outdoors, the pretraining corpus could be extended with real measurements to close the simulator-to-deployment gap.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper presents LWM, a transformer-based foundation model that is pre-trained with a masked channel modeling objective on roughly one million DeepMIMO channel matrices and then used to produce CLS and channel embeddings for downstream wireless tasks. The authors evaluate the embeddings on sub-6 GHz to mmWave beam prediction and on LoS/NLoS classification, reporting that LWM embeddings outperform raw channel representations, especially in low-data regimes, and that they are robust to input noise. The model, scripts, datasets, and a Hugging Face demo are said to be publicly available. The main claim is that self-supervised pre-training on synthetic wireless channels yields transferable feature representations for held-out channel scenarios.
Significance. If the central comparison were properly controlled, this would be a useful contribution to the emerging area of wireless foundation models: it proposes a concrete self-supervised pretext task, releases an open model and dataset artifacts, evaluates on two practical downstream tasks, and provides attention-map and t-SNE visualizations as interpretability evidence. The paper is clearly written and the public release of resources is a strength. However, the current experiments do not isolate the effect of the pre-training objective from input size and model capacity, and the evaluation remains entirely within the DeepMIMO simulator ecosystem, so the strength of the empirical evidence is currently below the standard needed for the paper's headline claims.
major comments (4)
- [Sections VII and VIII.A, Fig. 3] The central LWM-versus-raw comparison is not controlled. The LWM channel embeddings E are 8192-dimensional (Section VII states they are four times larger than the input), whereas the raw-channel baseline uses 2048 features, and the 600K-parameter pre-trained encoder of Table I is not counted in the 500K downstream-model budget. Because no equally sized randomly initialized transformer encoder and no autoencoder-derived features are compared, the F1 improvements in Fig. 3 conflate at least three factors: larger input dimensionality, additional learned capacity, and the masked channel modeling pre-training objective. I ask for ablations with matched parameter counts and matched input dimensionality, together with multiple seeds and error bars, before the headline claim can be accepted.
- [Section VIII.B, Fig. 4] The fine-tuned CLS embedding evaluation updates the last three LWM layers jointly with the downstream classifier, giving that variant additional trainable parameters that are not available to the raw-channel baseline. The reported gains in the few-sample regime, including perfect class differentiation with fine-tuning, are therefore not attributable solely to the pre-trained frozen embeddings. Please report a matched-parameter baseline, a frozen-embedding baseline with a comparably sized trainable projection, and multiple-seed statistics for all five input types.
- [Sections VI.A and VIII] Pre-training and all downstream evaluations use DeepMIMO ray-tracing channels generated within the same simulator ecosystem. The held-out scenarios are new city configurations but they are not new physical environments, and no measured channel data are used anywhere in the paper. The Abstract's claim of 'consistent improvements' and the broader generalization statements are therefore only established for synthetic channels. I recommend either validating on a measured channel dataset or substantially qualifying the generalization claims to in-simulator transfer.
- [Section VIII, Figs. 3 and 4] No error bars, confidence intervals, or multiple-seed results are reported for any downstream experiment. Given that some comparisons are made in extreme low-data regimes (e.g., six training samples) and that the reported differences can be large, it is not possible to assess whether the observed margins are statistically stable or merely due to initialization and training variability.
minor comments (5)
- [Sections IV.A and VI.B, Table I] The notation for M and N is inconsistent: Section IV.A defines H in C^{M x N} and gives an example with M=32 and N=32, while Section VI.B states that N is the number of subcarriers and M the number of antennas, and Table I labels the dimensions in the opposite order. Please align the definitions throughout.
- [Equation (19)] Equation (19) writes the reconstruction objective as a squared expression without specifying the norm; it should be written as a squared Euclidean norm (or Frobenius norm) over the masked patches.
- [Section IV.D and Table I] The masking description says 'only 15% of patches masked' while Section VI.B states that 9 out of 64 real-part patches are masked, which is approximately 14% rather than 15%; the 80/10/10 split should be stated consistently for both the real and imaginary parts.
- [Abstract and Introduction] The claim of being 'the world's first foundation model for wireless channels' is not substantiated by a systematic comparison with prior or concurrent wireless foundation-model work; please either add such a comparison or soften the claim.
- [Section VIII.A] There is a grammar error in the sentence 'For LWM embeddings, the raw channels are first to generate LWM embeddings,' which should be reworded.
Circularity Check
No significant circularity: LWM's downstream gains are measured on held-out DeepMIMO scenarios, not derived from fitted inputs or self-citations.
full rationale
The paper's central claim is empirical: pretrained LWM embeddings yield higher downstream F1 than raw channels. The supporting experiments are not circular: LWM is pretrained with an unsupervised masked-reconstruction loss (Eqs. 4 and 19) on unlabeled DeepMIMO channels, and downstream models are trained and evaluated on separate labels in held-out DeepMIMO cities (Section VIII). No downstream label or test sample is used to fit the pretraining objective, and no fitted parameter is renamed as a prediction. The comparisons are methodologically imperfect (channel embeddings are 4x larger than raw inputs, and the pretrained encoder's parameters are not included in the baseline budget), but those are confounds in the experimental design, not cases where an output reduces by construction to an input. Citations to the authors' own DeepMIMO dataset and prior LWM paper are numerous but not load-bearing: the transformer architecture is attributed to Vaswani et al. [2] and the masking strategy to BERT [13], and DeepMIMO is a public, externally used dataset. The pretraining-and-evaluation-inside-the-same-simulator issue is a real generalization limitation, but it is not a circular derivation in the paper's own equations. Therefore no circular step is identified.
Assumptions & free parameters
free parameters (9)
- Masking ratio p with 80/10/10 split =
15% (80% fully masked, 10% random, 10% unchanged)
- Patch length L =
16
- Embedding dimension D =
64
- Encoder layers E =
12
- Attention heads H =
12 with head dimension 5
- FFN hidden size =
256
- Mask token value m =
1
- Downstream CNN capacity =
500K parameters
- Fine-tuning depth =
last 3 layers
assumptions (5)
- domain assumption DeepMIMO synthetic ray-tracing channels represent real wireless propagation well enough for transfer.
- domain assumption Masked reconstruction of channel patches learns features useful for downstream tasks.
- domain assumption Multi-head self-attention can capture relevant spatial-spectral structure from linearly embedded patches.
- domain assumption Beam labels computed via DeepMIMO ray tracing and codebook search are reliable ground truth.
- standard math Standard transformer equations from [2] apply as given.
Cite this review
Pith. "Pith review of Large Wireless Model (LWM): A Foundation Model for Wireless Channels." pith.science (2026). https://pith.science/paper/URURTD65
@misc{pith2026241108872,
author = {Pith},
title = {Pith review of: Large Wireless Model (LWM): A Foundation Model for Wireless Channels},
year = {2026},
howpublished = {\url{https://pith.science/paper/URURTD65}},
note = {Machine review of arXiv:2411.08872}
}
read the original abstract
This paper presents Large Wireless Model (LWM) -- the world's first foundation model for wireless channels. Designed as a task-agnostic model, LWM generates universal, rich, contextualized channel embeddings (features) that potentially enhance performance across a wide range of downstream tasks in wireless communication and sensing systems. Towards this objective, LWM, which has a transformer-based architecture, was pre-trained in a self-supervised manner on large-scale wireless channel datasets. Our results show consistent improvements in downstream tasks when using the LWM embeddings compared to raw channel representations, especially in scenarios with high-complexity machine learning tasks and limited training datasets. This LWM's ability to learn from large-scale wireless data opens a promising direction for intelligent systems that can efficiently adapt to diverse tasks with limited data, paving the way for addressing key challenges in wireless communication and sensing systems.
Figures
Figures from the paper (3 more)
Forward citations
Cited by 24 Pith papers
-
WiFo-INR: A Wireless Foundation Model Based on Implicit Neural Representations
WiFo-INR encodes partial CSI into compact modulation tokens that adapt a SIREN decoder, improving channel reconstruction and CSI feedback while cutting inference latency.
-
MultiPathFormer: Towards a Foundation Model for Multipath Wireless Propagation
Pretraining a transformer on ordered multipath sequences transfers to downstream wireless tasks like beam prediction and localization in simulated environments.
-
CENTILE: A Telemetry Foundation Model Evaluated by the Decisions It Drives
One pretrained telemetry model, CENTILE, improves both HPC backfilling and ISP capacity provisioning decisions under replay, with zero-shot transfer across months and domains.
-
Cross-System Neural Precoder: Exploiting Structural Consistency for Fast Adaptation
AO subproblems for digital, analog, and RIS variables share reusable update structure, so a lightweight unfolded network adapts across precoding systems with far less data than a GNN baseline.
-
PERA: A Perceive-Reason-Act Interface Bridging Sensing, Cognitive Reasoning, and Trustworthy Agentic Response for 6G
A three-layer architecture (encoder, learned projector, LLM) enables zero-shot link-state classification and beam prediction with human-readable rationales, outperforming discriminative baselines on the DeepMIMO dataset.
-
Hierarchical Wireless Foundation Model for Multi-Task Optimization
A hierarchical wireless foundation model with a shared channel encoder and prompt-conditioned decoder solves beamforming, scheduling, channel estimation, and beam selection with competitive performance and large laten...
-
Topological sum rule for geometric phases of quantum gates
Geometric phases of a two-qubit gate over a complete basis sum to a multiple of the Hamiltonian winding number, so topology is necessary for entanglement generation.
-
WiFo-2: a generalist foundation model unifies heterogeneous wireless system design
WiFo-2 is a space-time-frequency foundation model pretrained on heterogeneous CSI data that delivers strong zero-shot and few-shot performance across wireless communications and sensing tasks.
-
WiFo-CF: Wireless Foundation Model for CSI Feedback
WiFo-CF is a pretrained wireless foundation model that handles heterogeneous CSI feedback configurations and transfers to localization tasks.
-
LVM4CSI: Enabling Direct Application of Pre-Trained Large Vision Models for Wireless Channel Tasks
A frozen pre-trained vision model can extract wireless channel paths and features, beating conventional estimators in channel estimation and matching specialized networks in sensing with far fewer trainable parameters.
-
CSI2Vec: Towards a Universal CSI Feature Representation for Positioning and Channel Charting
A self-supervised neural network, CSI2Vec, maps wireless channel measurements from different environments and hardware into compact spatial codes that support positioning and channel charting.
-
Large Wireless Localization Model (LWLM): A Foundation Model for Positioning in 6G Networks
LWLM, a transformer pretrained with masked reconstruction, angle-delay domain invariance, and position-invariant contrastive learning, outperforms non-pretrained and model-based baselines on simulated ToA, AoA, and si...
-
Prompt-Enabled Large AI Models for CSI Feedback
A transformer-based large model, conditioned on the average channel magnitude of a scenario, improves CSI feedback accuracy and generalization across many simulated wireless environments.
-
WiFo: Wireless Foundation Model for Channel Prediction
WiFo, a masked-autoencoder-based wireless model, zero-shot predicts time and frequency channels across unseen configurations, outperforming full-shot baselines in simulation.
-
Digital Twin Assisted Beamforming Design for Integrated Sensing and Communication Systems
A digital twin plus ray tracing selects the dominant NLoS sensing path direction, and beamforming on that direction achieves near-optimal sensing SNR under a communication SINR constraint in simulation.
-
From Passive Mirrors to Active Agents: Holonic Digital Twins for Physical AI over Networks
HDT-Nets provides a conceptual architecture for 6G networks to coordinate physical AI through holonic digital twins, cognitive value-driven communication, and spatiotemporal integrated information.
-
M3F-UAV: A Missing-Modality Multimodal Foundation Model for Low-Altitude Wireless Sensing
A missing-modality multimodal foundation model fuses RGB, depth, LiDAR, and CSI to support UAV localization, beam prediction, and CSI prediction with graceful degradation when a sensor is missing.
-
A Dataset Similarity Evaluation Framework for Wireless Communications and Sensing
UMAP-based dataset distances correlate above 0.85 with autoencoder performance drops on a CSI compression task, but without statistical validation.
-
Towards channel foundation models (CFMs): Motivations, methodologies and opportunities
A survey and position paper proposing channel foundation models, with experiments on two pretrained CSI models showing gains over a vanilla ViT baseline.
-
Foundation Model-Aided Deep Reinforcement Learning for RIS-Assisted Wireless Communication
A fine-tuned wireless foundation model provides channel embeddings that feed a DDPG agent, which reportedly improves spectral efficiency over DRL with raw CSI and over beam sweeping in DeepMIMO simulation.
-
Foundation Model Empowered Synesthesia of Machines (SoM): AI-native Intelligent Multi-Modal Sensing-Communication Integration
The paper proposes a systematic classification and two roadmaps for using foundation models (LLMs and wireless foundation models) to design Synesthesia of Machines systems for 6G, with preliminary case-study evidence ...
-
WirelessGPT: A Generative Pre-trained Multi-task Learning Framework for Wireless Communication
A pretrained wireless-channel Transformer improves small downstream models for channel estimation, prediction, and activity recognition, and is claimed to support environment reconstruction.
-
Empowering Large Language Models in Wireless Communication: A Novel Dataset and Fine-Tuning Framework
An LLM-generated wireless dataset and a Pointwise V-Information difficulty-ordering method are proposed, with reported fine-tuning gains of about 1 to 2 percent and a 0.209 absolute ROUGE-L improvement on a 200-docume...
-
BERT4MIMO: A Foundation Model using BERT Architecture for Massive MIMO Channel State Information Prediction
A BERT-inspired transformer is trained to reconstruct masked synthetic massive MIMO channel state information, with reported MSE far below simple linear and MLP baselines.
Reference graph
Works this paper leans on
-
[1]
LWM: A Pre-trained Wireless Foundation Model for Universal Feature Extraction,
S. Alikhani, G. Charan, and A. Alkhateeb, “LWM: A Pre-trained Wireless Foundation Model for Universal Feature Extraction,” in IEEE International Conference on Machine Learning for Communication and Networking, IEEE, 2025
work page 2025
-
[2]
Attention is all you need,
A. Vaswani, N. Shazeer, N. Parmar, J. Uszkoreit, L. Jones, A. N. Gomez, L. Kaiser, and I. Polosukhin, “Attention is all you need,” 2023
2023
-
[3]
T. S. Rappaport, Y . Xing, O. Kanhere, S. Ju, A. Madanayake, S. Mandal, A. Alkhateeb, and G. C. Trichopoulos, “Wireless communications and applications above 100 GHz: Opportunities and challenges for 6G and beyond,” IEEE access, vol. 7, pp. 78729–78757, 2019
work page 2019
-
[4]
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 Journal of the Communications Society, vol. 2, pp. 334–366, 2021
2021
-
[5]
An introduction to deep learning for the physical layer,
T. O’Shea and J. Hoydis, “An introduction to deep learning for the physical layer,” IEEE Transactions on Cognitive Communications and Networking, vol. 3, no. 4, pp. 563–575, 2017
2017
-
[6]
Role of deep learning in wireless communications,
W. Yu, F. Sohrabi, and T. Jiang, “Role of deep learning in wireless communications,” IEEE BITS the Information Theory Magazine , vol. 2, no. 2, pp. 56–72, 2022
work page 2022
-
[7]
Deep learning for mmWave beam and blockage prediction using sub-6 GHz channels,
M. Alrabeiah and A. Alkhateeb, “Deep learning for mmWave beam and blockage prediction using sub-6 GHz channels,” IEEE Transactions on Communications, vol. 68, no. 9, pp. 5504–5518, 2020
2020
-
[8]
Deep learning for TDD and FDD massive MIMO: Mapping channels in space and frequency,
M. Alrabeiah and A. Alkhateeb, “Deep learning for TDD and FDD massive MIMO: Mapping channels in space and frequency,” in 2019 53rd asilomar conference on signals, systems, and computers, pp. 1465– 1470, IEEE, 2019
work page 2019
Show all 29 references
-
[9]
Redefining wireless com- munication for 6G: Signal processing meets deep learning with deep unfolding,
A. Jagannath, J. Jagannath, and T. Melodia, “Redefining wireless com- munication for 6G: Signal processing meets deep learning with deep unfolding,” IEEE Transactions on Artificial Intelligence , vol. 2, no. 6, pp. 528–536, 2021
2021
-
[10]
Temporal 3D convnets: New architecture and transfer learning for video classification,
A. Diba, M. Fayyaz, V . Sharma, A. H. Karami, M. M. Arzani, R. Yousefzadeh, and L. Van Gool, “Temporal 3D convnets: New architecture and transfer learning for video classification,” arXiv preprint arXiv:1711.08200, 2017
2017 arXiv
-
[11]
Long-term recurrent convolutional networks for visual recognition and description,
J. Donahue, L. Anne Hendricks, S. Guadarrama, M. Rohrbach, S. Venu- gopalan, K. Saenko, and T. Darrell, “Long-term recurrent convolutional networks for visual recognition and description,” in Proceedings of the IEEE conference on computer vision and pattern recognition , pp. 2...
2015
-
[12]
Neural machine translation by jointly learning to align and translate,
D. Bahdanau, “Neural machine translation by jointly learning to align and translate,” arXiv preprint arXiv:1409.0473 , 2014
2014 arXiv
-
[13]
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,” 2019
2019
-
[14]
Mistral 7B,
A. Q. Jiang, A. Sablayrolles, A. Mensch, C. Bamford, D. S. Chaplot, D. d. l. Casas, F. Bressand, G. Lengyel, G. Lample, L. Saulnier, et al., “Mistral 7B,” arXiv preprint arXiv:2310.06825 , 2023
2023 arXiv
-
[15]
Llama 2: Open foundation and fine-tuned chat models,
H. Touvron, L. Martin, K. Stone, P. Albert, A. Almahairi, Y . Babaei, N. Bashlykov, S. Batra, P. Bhargava, S. Bhosale, et al. , “Llama 2: Open foundation and fine-tuned chat models,” arXiv preprint arXiv:2307.09288, 2023
2023 arXiv
-
[16]
GPT-4 technical report,
J. Achiam, S. Adler, S. Agarwal, L. Ahmad, I. Akkaya, F. L. Aleman, D. Almeida, J. Altenschmidt, S. Altman, S. Anadkat, et al. , “GPT-4 technical report,” arXiv preprint arXiv:2303.08774 , 2023
2023 arXiv
-
[17]
wav2vec 2.0: A framework for self-supervised learning of speech representations,
A. Baevski, Y . Zhou, A. Mohamed, and M. Auli, “wav2vec 2.0: A framework for self-supervised learning of speech representations,” Advances in neural information processing systems , vol. 33, pp. 12449– 12460, 2020
2020
-
[18]
Robust speech recognition via large-scale weak super- vision,
A. Radford, J. W. Kim, T. Xu, G. Brockman, C. McLeavey, and I. Sutskever, “Robust speech recognition via large-scale weak super- vision,” in International conference on machine learning , pp. 28492– 28518, PMLR, 2023
2023
-
[19]
Hubert: Self-supervised speech representation learning by masked prediction of hidden units,
W.-N. Hsu, B. Bolte, Y .-H. H. Tsai, K. Lakhotia, R. Salakhutdinov, and A. Mohamed, “Hubert: Self-supervised speech representation learning by masked prediction of hidden units,” IEEE/ACM transactions on audio, speech, and language processing , vol. 29, pp. 3451–3460, 2021
2021
-
[20]
An image is worth 16x16 words: Transformers for image recognition at scale,
A. Dosovitskiy, L. Beyer, A. Kolesnikov, D. Weissenborn, X. Zhai, T. Unterthiner, M. Dehghani, M. Minderer, G. Heigold, S. Gelly, J. Uszkoreit, and N. Houlsby, “An image is worth 16x16 words: Transformers for image recognition at scale,” 2021
2021
-
[21]
Transformers in vision: A survey,
S. Khan, M. Naseer, M. Hayat, S. W. Zamir, F. S. Khan, and M. Shah, “Transformers in vision: A survey,” ACM Computing Surveys , vol. 54, p. 1–41, Jan. 2022
2022
-
[22]
A survey on vision transformer,
K. Han, Y . Wang, H. Chen, X. Chen, J. Guo, Z. Liu, Y . Tang, A. Xiao, C. Xu, Y . Xu,et al., “A survey on vision transformer,”IEEE transactions on pattern analysis and machine intelligence, vol. 45, no. 1, pp. 87–110, 2022
2022
-
[23]
Long short-term memory,
S. Hochreiter and J. Schmidhuber, “Long short-term memory,” Neural Comput., vol. 9, p. 1735–1780, Nov. 1997
1997
-
[24]
Deep residual learning for image recognition,
K. He, X. Zhang, S. Ren, and J. Sun, “Deep residual learning for image recognition,” 2015
2015
-
[25]
CrossViT: Cross-attention multi- scale vision transformer for image classification,
C.-F. Chen, Q. Fan, and R. Panda, “CrossViT: Cross-attention multi- scale vision transformer for image classification,” 2021
2021
-
[26]
[CLS] token is all you need for zero-shot semantic segmentation,
L. Wu, W. Zhang, T. Jiang, W. Yang, X. Jin, and W. Zeng, “[CLS] token is all you need for zero-shot semantic segmentation,” 2023
2023
-
[27]
DeepMIMO: A generic deep learning dataset for mil- limeter wave and massive MIMO applications,
A. Alkhateeb, “DeepMIMO: A generic deep learning dataset for mil- limeter wave and massive MIMO applications,” in Proc. of Information Theory and Applications Workshop (ITA) , (San Diego, CA), pp. 1–8, Feb 2019
2019
-
[28]
What do you learn from context? probing for sentence structure in contextualized word representations,
I. Tenney, P. Xia, B. Chen, A. Wang, A. Poliak, R. T. McCoy, N. Kim, B. V . Durme, S. R. Bowman, D. Das, and E. Pavlick, “What do you learn from context? probing for sentence structure in contextualized word representations,” 2019
2019
-
[29]
Convolutional neural net- work based multiple-rate compressive sensing for massive MIMO CSI feedback: Design, simulation, and analysis,
J. Guo, C.-K. Wen, S. Jin, and G. Y . Li, “Convolutional neural net- work based multiple-rate compressive sensing for massive MIMO CSI feedback: Design, simulation, and analysis,” 2019
2019
Reviewed August 12, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.