REVIEW 3 major objections 7 minor 46 references
Efficiency Bottlenecks of Convolutional Kolmogorov-Arnold Networks: A Comprehensive Scrutiny with ImageNet, AlexNet, LeNet and Tabular Classification
T0 review · 3 major / 7 minor · reviewed 2026-08-10 · deepseek-v4-flash
Pith's one-line read This paper claims that Convolutional Kolmogorov-Arnold Networks match CNNs on small datasets but fail on ImageNet-1k, with 42.8% Top-1 accuracy versus 56.6% for AlexNet at double the FLOPs and four times the latency.
desk verdict First ImageNet-scale CKAN benchmark with a clean ablation, but the headline accuracy and timing numbers compare against a pretrained baseline and an estimated training time, so the central quantitative claim is not yet supported. 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 central object is the CKAN convolutional layer, which replaces each entry of a CNN kernel with a trainable B-spline function, so the feature map is computed by evaluating splines on pixel windows rather than by multiplying fixed weights. The parameter count grows roughly as the product of input and output dimensions times the number of spline intervals plus polynomial order, making KAN layers about four times heavier per channel than ordinary convolutions; the paper compensates by reducing filter counts in the CKAN variants. The argument runs through three matched model pairs (LeNet, AlexNet, and a 1-D tabular CNN), plus a 24-run ablation sweep on LeNet that varies spline grid size, channel width, ReLU on/off, and 25% structured pruning to isolate which design choice drives the cost.
What would settle it
Train a standard AlexNet from scratch on ImageNet-1k for 100 epochs with the same batch size, optimizer, learning-rate schedule, data pipeline, and GPU hardware used for AlexNet-KAN, and compare Top-1 accuracy and wall-clock training time; if the gap narrows to a few points or the CKAN's 48-day figure is no longer compared with a comparable 100-epoch CNN run, the central efficiency claim would need revision.
Extended reading notes
Core claim
The paper's central claim is that CKANs are not competitive at ImageNet scale: the spline-based convolutional layer does not capture the hierarchical abstractions required for large-scale visual recognition. In their head-to-head comparison, AlexNet-KAN attains 42.8% Top-1 and 67.8% Top-5 accuracy, while standard AlexNet reaches 56.6% and 79.1%, even though the KAN variant uses roughly double the FLOPs and four times the inference latency. On MNIST the same pattern holds in miniature: accuracy parity within 0.1 percentage point, but a seven-fold FLOP increase and 3.28x per-image latency. The authors attribute the bottleneck to the B-spline activation functions and the absence of low-level spline accelerators, and their 24-run ablation on LeNet identifies spline grid size as the primary cost lever: increasing knots from 4 to 8 yields only +0.19 percentage points while raising FLOPs by 77%.
Load-bearing premise
The headline comparison assumes that using a pretrained AlexNet, together with the historical 'at most 3 days' training-time figure, is a fair proxy for a CNN trained from scratch under the same protocol as the CKAN; if AlexNet were retrained with identical epochs, hardware, and data pipeline, the accuracy and training-time gaps could shrink substantially.
Editorial extensions
If this is right
- If CKANs cannot beat a 2012 CNN on ImageNet at higher cost, they are not a practical replacement for deep CNNs in large-scale computer vision without further architectural or kernel-level advances.
- The ablation's Fast-KAN-Lite configuration (4 spline grid, 1.5x width, ReLU on, 25% structured pruning) gives the best accuracy-efficiency trade-off on MNIST and is the recommended default for small-scale tasks.
- Structured 25% pruning is necessary to make CKANs competitive; it cuts latency by roughly 35% and parameters by 13%, but pruned CKANs remain 1.5-2.0x slower than depth-matched CNNs.
- Spline grid resolution is the dominant cost lever: grids above 8 knots degrade accuracy while roughly doubling latency, so deployment should keep the grid at 8 or below.
- The paper reports that its convolutional kernels were implemented without low-level spline accelerators and estimates that kernel-level optimization, quantization, or curriculum grid growth could cut CKAN latency by 30-50%.
Reading between the lines
- Inference: a fairer protocol would compare CKANs against a modern lightweight CNN trained and tuned under the same recipe, which would test whether the gap is specific to spline kernels or to the dated AlexNet backbone.
- Inference: the reported seven-fold FLOP increase on LeNet suggests that even at small scale CKANs' practical cost is in spline evaluation and memory bandwidth, not parameter count; replacing B-splines with faster basis functions or lookup tables is a testable lever the paper mentions only in future work.
- Inference: the authors' suggestion that CKANs are better suited to tabular and scientific tasks is not fully established by their MoA result, since the CKAN still lost on accuracy, recall, and F1; additional benchmarks would be needed to support that positioning.
- Inference: a direct test of the Kolmogorov-Arnold representation theorem's promise, namely interpretability gains from univariate functions, is absent from this paper; whether CKANs offer any scientific interpretability advantage on the MoA dataset remains open.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper reports an empirical comparison of Convolutional Kolmogorov-Arnold Networks (CKANs) against standard CNN baselines on three tasks: ImageNet-1k with an AlexNet-style CKAN, MNIST with a LeNet-style CKAN, and the MoA tabular dataset with a 1D CNN. The authors report accuracy, precision, recall, F1, FLOPs, inference time, training time, and parameter counts, and add a 24-run ablation on LeNet/MNIST over spline grid size, width multiplier, ReLU use, and pruning ratio. The main conclusion is that CKANs are competitive on small datasets but fail to scale to ImageNet, attaining 42.8% Top-1 accuracy versus 56.6% for AlexNet while taking longer to train and infer.
Significance. If the comparisons were properly controlled, the paper would provide a useful negative result on CKAN scalability and a rare large-scale CKAN training data point. The ablation study is systematic, the code is released, and the authors are transparent about the lack of low-level spline accelerators. However, the central ImageNet claim rests on an uncontrolled baseline: the CNN accuracy comes from a pretrained PyTorch AlexNet, and the CNN training time is a historical hand estimate, not a same-protocol measurement. As a result, the headline 14-16 percentage-point gap cannot currently be attributed to the CKAN architecture.
major comments (3)
- [III-A2, IV-D, Table III] The primary evidence for the paper's central claim is the comparison between CKAN and AlexNet on ImageNet. Section III-A2 states that 'We use PyTorch's pretrained AlexNet for CNN's part as it is the industry standard,' which means the 56.6% / 79.1% Top-1 / Top-5 numbers are not produced under the same training protocol as the CKAN model. The pretrained checkpoint was trained with different augmentations, schedule, optimizer settings, batch size, and hardware. A from-scratch AlexNet trained with the CKAN's recipe (100 epochs, batch size 16, 4xK80, normalization only) would likely score lower, potentially narrowing the gap substantially. To support the claim that CKANs 'do not scale gracefully,' the authors must train the CNN baseline from scratch under the identical data pipeline, optimizer, epoch budget, and hardware, and report those numbers.
- [IV-A] The claim of a 16x training-time increase ('48 days' vs 'at most 3 days') is not a measured comparison. Section IV-A describes the AlexNet baseline time as 'by hand calculation of the original report,' i.e., a historical estimate from Krizhevsky et al. on 2012-era hardware, whereas the CKAN run was measured on 4x Tesla K80 GPUs with a modern software stack. Different hardware, libraries, and data pipelines make this ratio meaningless as an efficiency comparison. The authors should either measure both models on the same cluster or clearly label the historical number as context and exclude it from the efficiency conclusions.
- [Table III, IV-D] The headline ImageNet results are single runs with no error bars or seed repetitions, so the 14-16 pp gap cannot be separated from run-to-run and training-recipe variance. Additionally, the comparison is not parameter-matched: AlexNet KAN has 39,756,776 parameters versus 61,100,840 for AlexNet, so the accuracy gap may partly reflect capacity differences. At minimum, the authors should report mean and standard deviation over multiple seeds and include a matched-parameter or matched-capacity variant of the baseline before attributing the gap to the spline-based representation.
minor comments (7)
- [Table III] The FLOPS cell for Tabular CKAN is malformed: '798,61,586' appears to be '79,861,586'; please correct and verify all numeric formatting.
- [IV-C] The text reports LeNet-KAN F1 as 97.79 while Table III reports 98.79; these numbers should agree.
- [Throughout] The paper uses 'FLOPS' interchangeably for a count of operations; FLOPs (count) and FLOPS (rate) should be distinguished.
- [Eq. (7)-(10)] Equation (7) has index errors: the feature-map formula uses 'a_{i-x,i-y}' but the kernel indices are inconsistent with Equations (8)-(9); please rewrite the convolution definition cleanly.
- [V.B] The MNIST-based conclusion that 'we therefore set an upper bound of g=8 for any CKAN deployed in resource-constrained environments' is overgeneralized; please qualify this recommendation to the tested setting.
- [VI-D] Section VI-D mentions 'ImageNet-100 pilot runs' that are not described anywhere in the results; either document the pilot or remove the reference.
- [III-C, Table III] The precision, recall, and F1 definitions for the multi-class ImageNet task do not specify whether macro, micro, or weighted averaging is used; please state the averaging scheme.
Circularity Check
No significant circularity found: the paper's results are measured benchmarks, not derivations that reduce to their own inputs.
full rationale
The paper's central claims—CKAN accuracy, FLOPs, latency, parameter counts, and training time—are measured outcomes from explicit experimental runs. No equation or argument defines one reported quantity in terms of another predicted quantity, and no fitted parameter is later renamed as a prediction. The use of PyTorch's pretrained AlexNet as the CNN baseline (Section III-A2) is a training-recipe asymmetry that affects experimental fairness, but it is not circular: the 56.6%/79.1% baseline numbers are external checkpoint measurements, not values derived from the CKAN results or from the paper's own fitting procedure. Hyperparameter choices such as spline grid size, width multiplier, and pruning ratio in the Section III-D ablation study are standard experimental design; they are tuned to the task and reported transparently, rather than used to manufacture a conclusion equivalent to the tuning itself. The paper contains no load-bearing self-citations and invokes no uniqueness theorem. The ablation study is self-contained, and its conclusions are contingent empirical observations. Accordingly, any concern about the pretrained-versus-from-scratch comparison belongs under correctness risk, not circularity.
Assumptions & free parameters
free parameters (4)
- Spline grid size G for main experiments =
not reported; ablation uses 4, 8, and 16
- Spline polynomial order K =
not reported (likely default)
- Filter count adjustments for CKAN variants =
one-fourth reduction or rounding to match CNN parameter counts
- Pruning ratio p (ablation) =
0% or 25%
assumptions (5)
- standard math Kolmogorov-Arnold representation theorem justifies replacing learned activations with B-splines.
- domain assumption The B-spline convolution layer from Bodner et al. is correctly implemented in PyTorch for all benchmarks.
- ad hoc to paper The pretrained PyTorch AlexNet is an acceptable stand-in for a CNN trained from scratch under the same data and budget.
- ad hoc to paper Historical training time of AlexNet (at most 3 days) is comparable to the measured CKAN training time on modern GPUs.
- domain assumption FLOPs and MACs measured by THOP reflect the computational cost of both models consistently.
Cite this review
Pith. "Pith review of Efficiency Bottlenecks of Convolutional Kolmogorov-Arnold Networks: A Comprehensive Scrutiny with ImageNet, AlexNet, LeNet and Tabular Classification." pith.science (2026). https://pith.science/paper/HJ5FSV3K
@misc{pith2026250115757,
author = {Pith},
title = {Pith review of: Efficiency Bottlenecks of Convolutional Kolmogorov-Arnold Networks: A Comprehensive Scrutiny with ImageNet, AlexNet, LeNet and Tabular Classification},
year = {2026},
howpublished = {\url{https://pith.science/paper/HJ5FSV3K}},
note = {Machine review of arXiv:2501.15757}
}
read the original abstract
Algorithmic level developments like Convolutional Neural Networks, transformers, attention mechanism, Retrieval Augmented Generation and so on have changed Artificial Intelligence. Recent such development was observed by Kolmogorov-Arnold Networks that suggested to challenge the fundamental concept of a Neural Network, thus change Multilayer Perceptron, and Convolutional Neural Networks. They received a good reception in terms of scientific modeling, yet had some drawbacks in terms of efficiency. In this paper, we train Convolutional Kolmogorov Arnold Networks (CKANs) with the ImageNet-1k dataset with 1.3 million images, MNIST dataset with 60k images and a tabular biological science related MoA dataset and test the promise of CKANs in terms of FLOPS, Inference Time, number of trainable parameters and training time against the accuracy, precision, recall and f-1 score they produce against the standard industry practice on CNN models. We show that the CKANs perform fair yet slower than CNNs in small size dataset like MoA and MNIST but are not nearly comparable as the dataset gets larger and more complex like the ImageNet. The code implementation of this paper can be found on the link: https://github.com/ashimdahal/Study-of-Convolutional-Kolmogorov-Arnold-networks
Figures
Figures from the paper (2 more)
Reference graph
Works this paper leans on
-
[1]
T. J. Sejnowski, The deep learning revolution . MIT Press, 2018
work page 2018
-
[2]
The unreasonable effectiveness of deep learning in artificial intelligence,
——, “The unreasonable effectiveness of deep learning in artificial intelligence,” Proceedings of the National Academy of Sciences , vol. 117, no. 48, pp. 30 033–30 038, 2020
work page 2020
-
[3]
Denoising diffusion probabilistic models,
J. Ho, A. Jain, and P. Abbeel, “Denoising diffusion probabilistic models,” Advances in Neural Information Processing Systems , vol. 33, pp. 6840– 6851, 2020
2020
-
[4]
Handwritten digit recognition with a back-propagation network,
Y . LeCun, B. E. Boser, J. S. Denker, D. Henderson, R. E. Howard, W. E. Hubbard, and L. D. Jackel, “Handwritten digit recognition with a back-propagation network,” in NIPS, 1989
work page 1989
-
[5]
Long Short-Term Memory,
S. Hochreiter and J. Schmidhuber, “Long Short-Term Memory,” Neural Computation, vol. 9, no. 8, pp. 1735–1780, 1997
1997
-
[6]
Retrieval-Augmented Generation for Knowledge-Intensive NLP Tasks,
P. Lewis, E. Perez, A. Piktus, F. Petroni, V . Karpukhin, N. Goyal, H. Küt- tler, M. Lewis, W.-t. Yih, T. Rocktäschel et al. , “Retrieval-Augmented Generation for Knowledge-Intensive NLP Tasks,” in Advances in Neural Information Processing Systems , vol. 33, 2020, pp. 9459–9474
work page 2020
-
[7]
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,” in Advances in Neural Information Processing Systems , vol. 30, 2017
2017
-
[8]
KAN: Kolmogorov-Arnold networks,
Z. Liu, Y . Wang, S. Vaidya, F. Ruehle, J. Halverson, M. Solja ˇci´c, T. Y . Hou, and M. Tegmark, “KAN: Kolmogorov-Arnold networks,” arXiv, 2024, [Online]. Available: https://doi.org/10.48550/arXiv.2404.19756
Show all 46 references
-
[9]
Kan 2.0: Kolmogorov-arnold networks meet science,
Z. Liu, P. Ma, Y . Wang, W. Matusik, and M. Tegmark, “Kan 2.0: Kolmogorov-arnold networks meet science,” arXiv preprint arXiv:2408.10205, 2024
2024 arXiv
-
[10]
Kolmogorov-arnold networks in low-data regimes: A comparative study with multilayer perceptrons,
F. Pourkamali-Anaraki, “Kolmogorov-arnold networks in low-data regimes: A comparative study with multilayer perceptrons,” arXiv preprint arXiv:2409.10463, 2024
2024 arXiv
-
[11]
A sur- vey on kolmogorov-arnold network,
S. Somvanshi, S. A. Javed, M. M. Islam, D. Pandit, and S. Das, “A sur- vey on kolmogorov-arnold network,” arXiv preprint arXiv:2411.06078 , 2024
2024 arXiv
-
[12]
Reduced effectiveness of kolmogorov-arnold networks on functions with noise,
H. Shen, C. Zeng, J. Wang, and Q. Wang, “Reduced effectiveness of kolmogorov-arnold networks on functions with noise,” arXiv preprint arXiv:2407.14882, 2024
2024 arXiv
-
[13]
A benchmarking study of kolmogorov-arnold networks on tabular data,
E. Poeta, F. Giobergia, E. Pastor, T. Cerquitelli, and E. Baralis, “A benchmarking study of kolmogorov-arnold networks on tabular data,” arXiv preprint arXiv:2406.14529 , 2024
2024 arXiv
-
[14]
Convolu- tional Kolmogorov-Arnold networks,
A. D. Bodner, A. S. Tepsich, J. N. Spolski, and S. Pourteau, “Convolu- tional Kolmogorov-Arnold networks,” arXiv, 2024, [Online]. Available: https://arxiv.org/abs/2406.13155
2024 arXiv
-
[15]
Imagenet classification with deep convolutional neural networks,
A. Krizhevsky, I. Sutskever, and G. E. Hinton, “Imagenet classification with deep convolutional neural networks,” in Advances in Neural Information Processing Systems , F. Pereira, C. Burges, L. Bottou, and K. Weinberger, Eds., vol. 25. Curran Associates, Inc.,
-
[16]
Kaggle MoA 2nd place solution,
B. Guo, “Kaggle MoA 2nd place solution,” https://github.com/ baosenguo/Kaggle-MoA-2nd-Place-Solution/blob/main/2nd%20Place% 20Solution.pdf, 2020
2020
-
[17]
ImageNet: A large-scale hierarchical image database,
J. Deng, W. Dong, R. Socher, L.-J. Li, K. Li, and L. Fei-Fei, “ImageNet: A large-scale hierarchical image database,” in 2009 IEEE Conference on Computer Vision and Pattern Recognition . IEEE, 2009, pp. 248–255
2009
-
[18]
The MNIST database of handwritten digits,
Y . LeCun, “The MNIST database of handwritten digits,” 1998, [Online]. Available: http://yann.lecun.com/exdb/mnist/
1998
-
[19]
Mechanisms of action (MoA) prediction,
J. Paik, M. Maggie, S. Randazzo, and T. Natoli, “Mechanisms of action (MoA) prediction,” https://kaggle.com/competitions/lish-moa, 2020
2020
-
[20]
Theoretical issues in deep networks,
T. Poggio, A. Banburski, and Q. Liao, “Theoretical issues in deep networks,” Proceedings of the National Academy of Sciences , vol. 117, no. 48, pp. 30 039–30 045, 2020
2020
-
[21]
Representation properties of networks: Kol- mogorov’s theorem is irrelevant,
F. Girosi and T. Poggio, “Representation properties of networks: Kol- mogorov’s theorem is irrelevant,” Neural Computation, vol. 1, no. 4, pp. 465–469, 1989
1989
-
[22]
B-spline basics,
C. De Boor, “B-spline basics,” 1986
1986
-
[23]
KAN or MLP: A fairer comparison,
R. Yu, W. Yu, and X. Wang, “KAN or MLP: A fairer comparison,” arXiv, 2024, [Online]. Available: https://arxiv.org/abs/2407.16674
2024 arXiv
-
[24]
EMNIST: an extension of MNIST to handwritten letters,
G. Cohen, S. Afshar, J. Tapson, and A. van Schaik, “EMNIST: an extension of MNIST to handwritten letters,” arXiv, 2017, [Online]. Available: https://arxiv.org/abs/1702.05373
2017 arXiv
-
[25]
Fashion-MNIST: a novel image dataset for benchmarking machine learning algorithms,
H. Xiao, K. Rasul, and R. V ollgraf, “Fashion-MNIST: a novel image dataset for benchmarking machine learning algorithms,” arXiv, 2017, [Online]. Available: https://arxiv.org/abs/1708.07747
2017 arXiv
-
[26]
Deep learning for classical Japanese literature,
T. Clanuwat, M. Bober-Irizar, A. Kitamoto, A. Lamb, K. Yamamoto, and D. Ha, “Deep learning for classical Japanese literature,” arXiv, 2018, [Online]. Available: https://arxiv.org/abs/1812.01718
2018 arXiv
-
[27]
Learning multiple layers of features from tiny im- ages,
A. Krizhevsky, “Learning multiple layers of features from tiny im- ages,” University of Toronto, Tech. Rep., 2009, [Online]. Available: http://www.cs.toronto.edu/~kriz/learning-features-2009-TR.pdf
2009
-
[28]
Reading digits in natural images with unsupervised feature learning,
Y . Netzer, T. Wang, A. Coates, A. Bissacco, B. Wu, and A. Y . Ng, “Reading digits in natural images with unsupervised feature learning,” in NIPS Workshop on Deep Learning and Unsupervised Feature Learning , 2011
2011
-
[29]
Can kan work? exploring the potential of kolmogorov-arnold networks in computer vision,
Y . Cang, Y . hang liu, and L. Shi, “Can kan work? exploring the potential of kolmogorov-arnold networks in computer vision,” 2024. [Online]. Available: https://arxiv.org/abs/2411.06727
2024 arXiv
-
[30]
A preliminary study on continual learning in computer vision using kolmogorov-arnold networks,
A. Cacciatore, V . Morelli, F. Paganica, E. Frontoni, L. Migliorelli, and D. Berardini, “A preliminary study on continual learning in computer vision using kolmogorov-arnold networks,” 2024. [Online]. Available: https://arxiv.org/abs/2409.13550
2024 arXiv
-
[31]
How to learn more? exploring kolmogorov–arnold networks for hyperspectral image classification,
A. Jamali, S. K. Roy, D. Hong, B. Lu, and P. Ghamisi, “How to learn more? exploring kolmogorov–arnold networks for hyperspectral image classification,” Remote Sensing, 2024
2024
-
[32]
Kolmogorov-Arnold Networks: Key Developments and Uses,
B. Hadj Kilani, “Kolmogorov-Arnold Networks: Key Developments and Uses,” Qeios, Jun. 2024. [Online]. Available: https://hal.science/ hal-04663521
2024
-
[33]
Demonstrating the efficacy of kolmogorov-arnold networks in vision tasks,
M. Cheon, “Demonstrating the efficacy of kolmogorov-arnold networks in vision tasks,” arXiv preprint arXiv:2406.14916 , 2024
2024 arXiv
-
[34]
Kan see your face,
D. Han, Y . Li, and J. Denzler, “Kan see your face,” ArXiv, vol. abs/2411.18165, 2024. [Online]. Available: https://api.semanticscholar. org/CorpusID:274306367
2024 arXiv
-
[35]
Kans for computer vision: An experimental study,
K. Mohan, H. Wang, and X. Zhu, “Kans for computer vision: An experimental study,” arXiv preprint arXiv:2411.18224 , 2024
2024 arXiv
-
[36]
Exploring kolmogorov- arnold networks for realistic image sharpness assessment,
S. Yu, Z. Chen, Z. Yang, J. Gu, and B. Feng, “Exploring kolmogorov- arnold networks for realistic image sharpness assessment,” ArXiv, vol. abs/2409.07762, 2024. [Online]. Available: https://api.semanticscholar. org/CorpusID:272600394
2024 arXiv
-
[37]
Can kan work? exploring the potential of kolmogorov-arnold networks in computer vision,
Y . Cang, Y . hang liu, and L. Shi, “Can kan work? exploring the potential of kolmogorov-arnold networks in computer vision,” in arXiv,
-
[38]
Ckan: Convolutional kolmogorov–arnold networks model for intrusion detection in iot envi- ronment,
M. Elsayed Abd Elaziz, I. Fares, and A. Aseeri, “Ckan: Convolutional kolmogorov–arnold networks model for intrusion detection in iot envi- ronment,” IEEE Access, vol. PP, pp. 1–1, 01 2024
2024
-
[39]
C-kan: A new approach for integrating convolutional layers with kolmogorov–arnold networks for time-series forecasting,
I. E. Livieris, “C-kan: A new approach for integrating convolutional layers with kolmogorov–arnold networks for time-series forecasting,” Mathematics, vol. 12, no. 19, 2024. [Online]. Available: https: //www.mdpi.com/2227-7390/12/19/3022
2024
-
[40]
Kolmogorov-arnold network for satellite image classifica- tion in remote sensing,
M. Cheon, “Kolmogorov-arnold network for satellite image classifica- tion in remote sensing,” arXiv preprint arXiv:2406.00600 , 2024
2024 arXiv
-
[41]
Kanice: Kolmogorov-arnold networks with interactive convolutional elements,
M. Ferdaus, M. Abdelguerfi, E. Ioup, D. Dobson, K. N. Niles, K. Pathak, and S. Sloan, “Kanice: Kolmogorov-arnold networks with interactive convolutional elements,” Proceedings of the 4th International Conference on AI-ML Systems , 2024. [Online]. Available: https://api.semanti...
2024
-
[42]
Adam: A method for stochastic optimization,
D. P. Kingma and J. Ba, “Adam: A method for stochastic optimization,” arXiv preprint arXiv:1412.6980, 2014, [Online]. Available: https://arxiv. org/abs/1412.6980
2014 arXiv
-
[43]
Categories multilabel,
University of Waterloo, “Categories multilabel,” https://wiki.math. uwaterloo.ca/statwiki/index.php?title=File:Categories_Multilabel.png, 2024
2024
-
[44]
Learning both weights and con- nections for efficient neural network,
S. Han, J. Pool, J. Tran, and W. Dally, “Learning both weights and con- nections for efficient neural network,” in Advances in neural information processing systems, vol. 28, 2015
2015
-
[2012]
Available: https://proceedings.neurips.cc/paper_files/ paper/2012/file/c399862d3b9d6b76c8436e924a68c45b-Paper.pdf
[Online]. Available: https://proceedings.neurips.cc/paper_files/ paper/2012/file/c399862d3b9d6b76c8436e924a68c45b-Paper.pdf
2012
-
[2024]
Available: https://api.semanticscholar.org/CorpusID: 275279924
[Online]. Available: https://api.semanticscholar.org/CorpusID: 275279924
Reviewed August 10, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.