REVIEW 4 major objections 6 minor 43 references
Noise-Aware Ensemble Learning for Efficient Radar Modulation Recognition
T0 review · 4 major / 6 minor · reviewed 2026-08-12 · deepseek-v4-flash
Pith's one-line read The paper claims that a noise-aware ensemble framework, which inspects the gradient map of a lightweight recognizer and activates a deeper recognizer only when noise is judged to dominate, achieves the highest radar modulation recognition…
desk verdict A genuinely new gradient-map gating idea with real measured USRP data, but the noise-aware gate itself is under-specified and unvalidated, so the headline gain is not yet tied to the mechanism. 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 the noise gate built from the PRN's gradient map. The importance weight of each feature-map channel is $w_c(k) = \frac{1}{H W} \sum_{t,f} \frac{\partial y_c}{\partial F^k(t,f)}$, and the gradient map is the ReLU-weighted sum $G_c(t,f) = \mathrm{ReLU}\left(\sum_k F^k(t,f) \, w_c(k)\right)$; $f_{\max} = \arg\max_f \sum_t G_c(t,f)$ is the frequency index used to illustrate that correct decisions concentrate activation at center-frequency indices 4 and 5. The NAN takes the whole flattened 8-by-8 map through two fully connected layers (expanding to 256 then 512) and a softmax over two classes, reliable versus unreliable. The PRN and ARN both use FE blocks built from depthwise separable convolutions with channel expansion factor $\alpha$, ReLU6 activations, and skip connections, and the ARN reuses some PRN outputs as inputs; Table IV sets their sizes. The gate converts a fixed architecture into an adaptive one: when the PRN is confident and clean, only the cheap network runs, and when the NAN detects noise-dominated attention, the deeper ARN is called in.
What would settle it
Measure the NAN's hit rate directly on the 1,200 real test signals: compare each reliable/unreliable call with whether the PRN actually got the modulation right. If the NAN is only slightly better than chance, or if its calls do not track the accuracy difference between PRN-only and ARN-refined decisions, the NAEL advantage would be coming from the ARN itself rather than from noise awareness. An ablation that replaces the NAN with an always-on ARN, a never-on ARN, or a random gate, and then compares PCC versus FLOPs, would settle whether adaptive gating is the cause.
Extended reading notes
Core claim
The central discovery the paper argues for is that the spatial distribution of a CNN's gradient map can serve as a learned indicator of whether noise has corrupted a modulation-recognition decision. The PRN classifies a Choi-Williams time-frequency image; the NAN then flattens the 8-by-8 gradient map $G_c(t,f) = \mathrm{ReLU}\left(\sum_k F^k(t,f) \, w_c(k)\right)$, where $w_c(k)$ is the global-average-pooled gradient of the winning class score with respect to channel $k$, and feeds it through fully connected layers to label the PRN output as reliable or unreliable. Correctly classified simulated signals concentrate their highest gradient activation at frequency indices near the center frequency, while misclassified ones disperse it, and the paper uses this contrast to justify the gating rule. When the gate says unreliable, the ARN, built from the same FE blocks with larger channel expansion and reusing PRN feature maps, recomputes the decision. The paper reports that this three-network ensemble beats every fixed-architecture comparison model in accuracy at all three measured SNR levels while keeping average computational cost at or below most of them.
Load-bearing premise
The load-bearing premise is that the spatial distribution of the PRN's gradient map, specifically whether high activations concentrate near the center frequency, reliably indicates whether the PRN's classification is noise-affected, and that a classifier trained on this signal with simulated data transfers to real USRP measurements. The paper never reports the NAN's own classification accuracy against actual PRN correctness, so the core gating mechanism is unvalidated.
Editorial extensions
If this is right
- At high SNR, NAEL's average cost is 402 MFLOPs with 99.1% accuracy because the ARN fires only 20 of 1,200 times, so an ES system can get near-perfect recognition without paying for deep feature extraction.
- At very low SNR, NAEL keeps the best accuracy, 38.3%, by calling the ARN about 57.8% of the time, while averaging 660 MFLOPs, less than every fixed baseline except LPI-Net, which reaches only 23.6% accuracy.
- Because the three networks are trained separately on simulated data and then applied to real USRP-collected signals, the paper claims the noise gate transfers from simulation to hardware.
- The ARN is invoked per sample rather than per SNR band, so the model adapts within a scenario to individual signal conditions instead of switching on a fixed noise regime.
Reading between the lines
- The same gate could be lifted onto any base recognizer: any CNN's gradient map could feed a NAN, making the framework a general accuracy-versus-cost dial rather than a single architecture.
- A graded gate would extend the binary reliable/unreliable choice into a confidence score, letting a deployment pick a FLOPs budget and tolerate a specified drop in accuracy.
- A direct test of the mechanism would be to compare NAN decisions against the PRN's true correctness on the real test set; the paper does not report that accuracy, so the gating signal's strength remains an open question.
- Because the USRP SNRs are only estimated, re-evaluating with calibrated noise injection into clean recordings would separate the framework's noise response from hardware distortion and multipath effects.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes a noise-aware ensemble learning (NAEL) framework for radar modulation recognition. The framework consists of a lightweight preliminary recognition network (PRN), a noise-aware network (NAN) that analyzes Grad-CAM-style gradient maps to decide whether the PRN output is noise-affected, and an advanced recognition network (ARN) that is invoked when noise is detected. The authors derive a data-reuse FE-block architecture, train on simulated Choi-Williams distribution images, and evaluate on over-the-air USRP N210 measurements at three approximate SNR levels. They report probability of correct classification (PCC) and FLOPs for NAEL and for eight fixed-architecture baselines, claiming superior accuracy with lower or comparable computational cost.
Significance. The adaptive gating idea is well motivated for real-time electronic warfare support, and evaluating on real USRP measurements rather than only simulated AWGN is a concrete strength. The paper also compares against a broad set of modern lightweight baselines and describes the FE-block architecture in enough detail to be reimplemented. However, the central mechanism is currently not validated: the NAN's training labels are unspecified, its classification accuracy is never reported, and the reported accuracy advantages are small relative to the test set size. If the gating mechanism were validated and the accuracy differences shown to be statistically reliable, the framework would be a useful contribution to low-latency modulation recognition; as it stands, the evidence for the central claim is incomplete.
major comments (4)
- [Section III.C and IV.A] The NAN's training labels are never specified. Section IV.A states that 'each network is trained individually whereas keeping the weights of the other networks constant during training,' but it does not define the binary target ('reliable' vs 'unreliable') used to supervise the NAN, nor how those labels are obtained (e.g., from PRN correctness on simulated data at various SNRs, or from a hand-designed SNR threshold). Since the NAN is the sole component that routes inputs to the ARN, this omission makes the core mechanism unreproducible and prevents the reader from assessing whether the reported PCC/FLOPs results in Tables VI–VIII are causally produced by noise-aware gating. Please specify the label generation procedure and report the NAN's own accuracy, precision, recall, and a confusion matrix on held-out simulated and real data.
- [Section IV.C, Tables VI–VIII] The claimed accuracy advantage over the best fixed-architecture baselines is small: 0.3 percentage points at high SNR (Table VI), 0.9 points at low SNR (Table VII), and 2.4 points at very low SNR (Table VIII). With 1,200 test signals per scenario, the standard error of a proportion is roughly 1.4 percentage points for PCCs near 50%, so the differences in Tables VI and VII are within the range of sampling variation. No confidence intervals, repeated trials with different weight initializations, or significance tests are reported. Given that the abstract and Section I claim 'superior recognition accuracy,' this evidence is not yet sufficient. I request confidence intervals and/or statistical comparisons (e.g., McNemar's test over paired predictions) and, if feasible, results averaged over several training runs.
- [Section IV.C, Tables VII–VIII] The computational-cost claim is not uniformly supported. In the second scenario, NAEL consumes 606 MFLOPs while MobileNetV2 consumes 416 MFLOPs, and LPI-Net consumes 69 MFLOPs; NAEL has higher accuracy than MobileNetV2 (55.4% vs 51.1%) but also higher cost. The statement that NAEL has 'the lowest computational cost among those achieving high recognition accuracy' requires a threshold for what counts as high accuracy, which is never defined. Please either frame the results as a Pareto frontier (accuracy vs. FLOPs), report the accuracy-cost trade-off for each baseline, or refine the claim to avoid giving the impression that NAEL dominates all baselines on both axes.
- [Section III.C, Eq. (9), Fig. 8] The load-bearing premise that gradient-map spatial concentration indicates whether the PRN is noise-affected is motivated only by Fig. 8, which shows fmax distributions for 50 simulated signals per class at -15 dB with no quantitative separation statistic (e.g., the fraction of misclassified samples whose fmax falls outside the center-frequency bins, or a related detection metric). Moreover, the NAN's classification accuracy against the actual correctness of the PRN is never reported, so there is no direct evidence that the gating policy generalizes from simulated training data to the real USRP test data. To substantiate the mechanism, add a quantitative evaluation of the NAN (accuracy, precision, recall, or AUC) on both simulated and real data, and include an ablation comparing NAEL with always-activate-PRN and always-activate-ARN policies to confirm that the learned gating, rather than the two recognition architectures alone, produces the reported Pareto improvement.
minor comments (6)
- [Section III.C, Eq. (9)] The text says fmax is 'the frequency location where the gradient map Gc(t,f) has the highest activation,' but Eq. (9) sums over time before maximizing; clarify the definition and whether the summation is over the time axis of the 8x8 gradient map.
- [Section IV.A] Provide training hyperparameters (learning rate, batch size, data split) and the full architecture of PRN, ARN, and NAN (number of blocks, channel sizes) so that the FLOPs counts can be reproduced.
- [Section IV.B] The approximate SNR estimation method is described in only one sentence; specify how the noise-only recording was obtained and how the signal power was estimated, since the reported SNR values (-4, -15, -17 dB) are used to interpret all results.
- [Fig. 11] The claim that ARN call counts 'do not exhibit a significant bias' is made without any statistical test; report the distribution or a chi-square test.
- [Reference [32]] Reference [32] is labeled as 'An image is worth 16x16 words: Transformers for image recognition at scale' but lists Kolesnikov et al.; the original ViT paper is by Dosovitskiy et al. Verify the citation.
- [Table VI] The Vision Transformer FLOPs count of 5,540 MFLOPs should be clarified; it is not clear whether this is for the same input resolution and whether it includes the patch embedding.
Circularity Check
No significant circularity: the NAEL accuracy and FLOPs claims are benchmarked against external models on held-out USRP data, and the only self-citation is a minor, non-load-bearing reference.
full rationale
The derivation chain is not circular in the sense defined by the review criteria. NAEL is a gating ensemble: the PRN produces a recognition result and a gradient map; the NAN classifies the gradient map as reliable or unreliable; the ARN is conditionally invoked. Each subnetwork is trained individually with the others frozen, and the final reported PCCs and MFLOPs (Tables VI-VIII) are measured on real USRP-collected test data against external baselines such as MobileNet, ShuffleNet, MNasNet, LPI-Net, LWCNN, and Vision Transformer. No fitted constant or training-set statistic is relabeled as a prediction of the headline result. The NAN is self-referential in that it predicts PRN reliability using PRN gradient maps, but this is a legitimate auxiliary gating design rather than a forced equivalence: the feature (gradient-map spatial distribution) and the target (correctness/noise-affectedness) are distinct, and the authors provide an empirical motivation in Fig. 8 without assuming the equivalence as a theorem. The absence of reported NAN classification accuracy is a validation gap, not circularity. The only self-citation is reference [15], used to support the incidental statement that 'phase information is highly susceptible to noise-induced distortions'; it does not justify the NAEL architecture or the performance claims. Thus the paper falls in the 0-2 band: essentially self-contained against external benchmarks, with one minor non-load-bearing self-citation.
Assumptions & free parameters
free parameters (4)
- CWD scaling factor sigma =
not reported
- FE block hyperparameters (alpha, r, Co, s) =
values in Table IV
- NAN hidden layer widths =
256 and 512
- Training SNR range =
U(-15, 5) dB in Table V
assumptions (4)
- domain assumption Wireless signals occupy regions near the center frequency, so gradient map activations far from the center frequency indicate noise-affected recognition.
- domain assumption Gradient maps computed by weighted summation of feature maps (Eqs. 7 and 8) faithfully highlight input regions driving the PRN decision.
- domain assumption A model trained on simulated AWGN-corrupted signals will generalize to real signals with multipath, phase noise, and frequency offset.
- domain assumption The ARN's deeper feature extraction improves accuracy on noise-affected inputs relative to the PRN.
Cite this review
Pith. "Pith review of Noise-Aware Ensemble Learning for Efficient Radar Modulation Recognition." pith.science (2026). https://pith.science/paper/3THT3VFM
@misc{pith2026241115104,
author = {Pith},
title = {Pith review of: Noise-Aware Ensemble Learning for Efficient Radar Modulation Recognition},
year = {2026},
howpublished = {\url{https://pith.science/paper/3THT3VFM}},
note = {Machine review of arXiv:2411.15104}
}
read the original abstract
Electronic warfare support (ES) systems intercept adversary radar signals and estimate various types of signal information, including modulation schemes. The accurate and rapid identification of modulation schemes under conditions of very low signal power remains a significant challenge for ES systems. This paper proposes a recognition model based on a noise-aware ensemble learning (NAEL) framework to efficiently recognize radar modulation schemes in noisy environments. The NAEL framework evaluates the influence of noise on recognition and adaptively selects an appropriate neural network structure, offering significant advantages in terms of computational efficiency and recognition performance. We present the analysis results of the recognition performance of the proposed model based on experimental data. Our recognition model demonstrates superior recognition accuracy with low computational complexity compared to conventional classification models.
Figures
Figures from the paper (8 more)
Reference graph
Works this paper leans on
-
[1]
S. Peng, S. Sun, and Y .-D. Yao, ”A survey of modulation classification using deep learning: Signal representation and data preprocessing,” IEEE Transactions on Neural Networks and Learning Systems , vol. 33, no. 12, pp. 7020-7038, Dec. 2022
work page 2022
-
[2]
T. J. O’Shea, T. Roy, and T. C. Clancy, ”Over-the-air deep learning based radio signal classification,” IEEE Journal of Selected Topics in Signal Processing, vol. 12, no. 1, pp. 168-179, 2018
work page 2018
-
[3]
S. Peng, H. Jiang, H. Wang, H. Alwageed, Y . Zhou, M. M. Sebdani, and Y .-D. Yao, ”Modulation classification based on signal constellation diagrams and deep learning,” IEEE Transactions on Neural Networks and Learning Systems , vol. 30, no. 3, pp. 718-727, 2019
work page 2019
-
[4]
Wiley, ELINT: The interception and analysis of radar signals
R. Wiley, ELINT: The interception and analysis of radar signals . Artech, 2006
work page 2006
-
[5]
P. E. Pace, Detecting and classifying low probability of intercept radar . Artech House, 2009
work page 2009
-
[6]
J. Lunden and V . Koivunen, ”Automatic radar waveform recognition,” IEEE Journal of Selected Topics in Signal Processing , vol. 1, no. 1, pp. 124-136, May 2007
work page 2007
-
[7]
V . Iglesias, J. Grajal, P. Royer, M. A. Sanchez, M. Lopez-Vallejo, and O. A. Yeste-ojeda, ”Real-time low-complexity automatic modulation classifier for pulsed radar signals,” IEEE Transactions on Aerospace and Electronic Systems , vol. 51, no. 1, pp. 108-126, Jan. 2015
work page 2015
-
[8]
G. Lopez-Risueno, J. Grajal, and A. Sanz-Osorio, ”Digital channelized receiver based on time-frequency analysis for signal interception,” IEEE Transactions on Aerospace and Electronic Systems , vol. 41, no. 3, pp. 879-898, Jul. 2005
work page 2005
Show all 43 references
-
[9]
C. Wang, J. Wang, and X. Zhang, ”Automatic radar waveform recog- nition based on time-frequency analysis and convolutional neural net- work,” in Proc. IEEE Int. Conf. Acoustics, Speech and Signal Processing (ICASSP), New Orleans, LA, USA, Mar. 2017, pp. 2437-2441
2017
-
[10]
E. R. Zilberman and P. E. Pace, ”Autonomous time-frequency morpho- logical feature extraction algorithm for LPI radar modulation classifi- cation,” in Proc. Int. Conf. Image Processing , Atlanta, GA, USA, Oct. 2006, pp. 2321-2324
2006
-
[11]
Huynh-The, V .-S
T. Huynh-The, V .-S. Doan, C.-H. Hua, Q.-V . Pham, T.-V . Nguyen, and D.-S. Kim, ”Accurate LPI radar waveform recognition with CWD- TFA for deep convolutional network,” IEEE Wireless Communications Letters, vol. 10, no. 8, pp. 1638-1642, Aug. 2021
2021
-
[12]
Zhang, L
M. Zhang, L. Liu, and M. Diao, ”LPI radar waveform recognition based on time-frequency distribution,” Sensors, vol. 16, no. 10, Article No. 1682, Oct. 2016
2016
-
[13]
Zhang, M
M. Zhang, M. Diao, and L. Guo, ”Convolutional neural networks for automatic cognitive radio waveform recognition,” IEEE Access , vol. 5, pp. 11074-11082, Jun. 2017
2017
-
[14]
S.-H. Kong, M. Kim, L. M. Hoang, and E. Kim, ”Automatic LPI radar waveform recognition using CNN,” IEEE Access, vol. 6, pp. 4207-4219, Jan. 2018
2018
-
[15]
Park, J.-H
D.-H. Park, J.-H. Bang, J.-H. Park, and H.-N. Kim, ”A fast and accurate convolutional neural network for LPI radar waveform recognition,” in Proc. 19th European Radar Conference (EuRAD) , Milan, Italy, Sep. 2022, pp. 89-92
2022
-
[16]
E. E. Azzouz and A. K. Nandi, ”Procedure for automatic recognition of analogue and digital modulations,” IEE Proceedings-Communications , vol. 143, no. 5, pp. 259-266, Oct. 1996
1996
-
[17]
Park and D
C.-S. Park and D. Y . Kim, ”A novel robust feature of modulation classification for reconfigurable software radio,” IEEE Transactions on Consumer Electronics, vol. 52, no. 4, pp. 1193-1200, Nov. 2006
2006
-
[18]
T. S. Tabatabaei, S. Krishnan, and A. Anpalagan, ”SVM-based classifi- cation of digital modulation signals,” in Proc. IEEE Int. Conf. Systems, Man, and Cybernetics , Istanbul, Turkey, Oct. 2010, pp. 277-280
2010
-
[19]
M. D. Zeiler and R. Fergus, ”Visualizing and understanding convolu- tional networks,” in Proc. European Conf. Computer Vision (ECCV) , Zurich, Switzerland, Sep. 2014, pp. 818-833
2014
-
[20]
A. G. Howard, M. Zhu, B. Chen, D. Kalenichenko, W. Wang, T. Weyand, M. Andreetto, and H. Adam, ”MobileNets: Efficient convo- lutional neural networks for mobile vision applications,” arXiv preprint arXiv:1704.04861, 2017. [Online]. Available: https://arxiv.org/abs/1704. 04861
2017 arXiv
-
[21]
Sandler, A
M. Sandler, A. Howard, M. Zhu, A. Zhmoginov, and L.-C. Chen, ”MobileNetV2: Inverted residuals and linear bottlenecks,” in Proc. IEEE/CVF Conf. Computer Vision and Pattern Recognition (CVPR) , Salt Lake City, UT, USA, Jun. 2018, pp. 4510-4520
2018
-
[22]
C. Xiao, S. Yang, and Z. Feng, ”Complex-valued depthwise separable convolutional neural network for automatic modulation classification,” IEEE Transactions on Instrumentation and Measurement , vol. 72, pp. 1-10, 2023
2023
-
[23]
G. B. Tunze, T. Huynh-The, J.-M. Lee, and D.-S. Kim, ”Sparsely connected CNN for efficient automatic modulation recognition,” IEEE Transactions on V ehicular Technology, vol. 69, no. 12, pp. 15557-15568, 2020
2020
-
[24]
B. Zoph, V . Vasudevan, J. Shlens, and Q. V . Le, ”Learning transferable architectures for scalable image recognition,” in Proc. IEEE/CVF Conf. Computer Vision and Pattern Recognition (CVPR) , Salt Lake City, UT, USA, Jun. 2018, pp. 8697-8710
2018
-
[25]
M. Tan, B. Chen, R. Pang, V . Vasudevan, M. Sandler, A. Howard, and Q. V . Le, ”MnasNet: Platform-aware neural architecture search for mobile,” in Proc. IEEE/CVF Conf. Computer Vision and Pattern Recognition (CVPR), Long Beach, CA, USA, Jun. 2019, pp. 2815-2823
2019
-
[26]
Zhang, H
X. Zhang, H. Zhao, H. Zhu, B. Adebisi, G. Gui, H. Gacanin, and F. Adachi, ”NAS-AMR: Neural architecture search-based automatic mod- ulation recognition for integrated sensing and communication systems,” IEEE Transactions on Cognitive Communications and Networking , vol. 8, no....
2022
-
[27]
M. Du, X. He, X. Cai, and D. Bi, ”Balanced neural architecture search and its application in specific emitter identification,” IEEE Transactions on Signal Processing , vol. 69, pp. 5051-5065, 2021
2021
-
[28]
Zhang, X
X. Zhang, X. Zhou, M. Lin, and J. Sun, ”ShuffleNet: An extremely efficient convolutional neural network for mobile devices,” in Proc. IEEE/CVF Conf. Computer Vision and Pattern Recognition (CVPR) , Los Alamitos, CA, USA, Jun. 2018, pp. 6848-6856
2018
-
[29]
N. Ma, X. Zhang, H.-T. Zheng, and J. Sun, ”ShuffleNet V2: Practical guidelines for efficient CNN architecture design,” in Proc. European Conf. Computer Vision (ECCV) , Munich, Germany, Sep. 2018, pp. 116- 131
2018
-
[30]
J. Yin, L. Guo, W. Jiang, S. Hong, and J. Yang, ”ShuffleNet-inspired lightweight neural network design for automatic modulation classifi- cation methods in ubiquitous IoT cyber–physical systems,” Computer Communications, vol. 176, pp. 249-257, 2021
2021
-
[31]
Semisupervised radar intrapulse signal modulation classification with virtual adversarial training,
J. Cai, M. He, X. Cao, and F. Gan, “Semisupervised radar intrapulse signal modulation classification with virtual adversarial training,” IEEE Internet Things J. , vol. 11, no. 6, pp. 9929–9940, Mar. 2024
2024
-
[32]
Automatic LPI radar waveform recognition using vision transformer,
J. Kim, S. Cho, S. Hwang, and Y . Choi, “Automatic LPI radar waveform recognition using vision transformer,” in Proc. IEEE Int. Radar Conf. (RADAR), 2023, pp. 1–6
2023
-
[33]
Choi and W
H.-I. Choi and W. J. Williams, ”Improved time-frequency representation of multicomponent signals using exponential kernels,” IEEE Transac- tions on Acoustics, Speech, and Signal Processing , vol. 37, no. 6, pp. 862-871, Jun. 1989
1989
-
[34]
Sifre, ”Rigid-motion scattering for image classification,” Ph.D
L. Sifre, ”Rigid-motion scattering for image classification,” Ph.D. dis- sertation, Ecole Polytechnique, CMAP, Oct. 2014
2014
-
[35]
Ioffe and C
S. Ioffe and C. Szegedy, ”Batch normalization: Accelerating deep network training by reducing internal covariate shift,” in Proc. 32nd Int. Conf. Machine Learning (ICML) , Lille, France, Jul. 2015, pp. 448–456
2015
-
[36]
Nair and G
V . Nair and G. E. Hinton, ”Rectified linear units improve restricted Boltzmann machines,” in Proc. 27th ICML , Haifa, Israel, Jun. 2010, pp. 807-814
2010
-
[37]
K. He, X. Zhang, S. Ren, and J. Sun, ”Deep residual learning for image recognition,” in Proc. IEEE Conf. Computer Vision and Pattern Recognition (CVPR) , Las Vegas, NV , USA, Jun. 2016, pp. 770-778
2016
-
[38]
R. R. Selvaraju, M. Cogswell, A. Das, R. Vedantam, D. Parikh, and D. Batra, ”Grad-CAM: Visual explanations from deep networks via gradient-based localization,” in Proc. IEEE Int. Conf. Computer Vision (ICCV), Venice, Italy, Oct. 2017, pp. 618-626. JOURNAL OF LATEX CLASS FILES xiii
2017
-
[39]
Removing adversarial noise in class activation feature space,
D. Zhou et al., “Removing adversarial noise in class activation feature space,” in Proc. IEEE/CVF Int. Conf. Comput. Vis. (ICCV) , 2021, pp. 7858–7867
2021
-
[40]
D. P. Kingma and J. Ba, ”Adam: A method for stochastic optimization,” in Proc. 3rd Int. Conf. Learning Representations (ICLR) , San Diego, CA, USA, May 2015
2015
-
[41]
Ettus Research, Mountain View, CA, USA, 2012
USRP N200/N210 Networked Series . Ettus Research, Mountain View, CA, USA, 2012. [Online]. Available: https://www.ettus.com/wp-content/ uploads/2019/01/07495 Ettus N200-210 DS Flyer HR 1.pdf
2012
-
[42]
An image is worth 16x16 words: Transformers for image recognition at scale,
A. Kolesnikov et al., “An image is worth 16x16 words: Transformers for image recognition at scale,” in Proc. 9th Int. Conf. Learn. Represent. (ICLR), 2021, pp. 1–21
2021
-
[43]
Bridging the gap between vision transformers and convolutional neural networks on small datasets,
Z. Lu, H. Xie, C. Liu, and Y . Zhang, “Bridging the gap between vision transformers and convolutional neural networks on small datasets,” in Proc. 36th Conf. Neural Inf. Process. Syst. (NeurIPS) , 2022, pp. 1–15
2022
Reviewed August 12, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.