REVIEW 3 major objections 5 minor 41 references
V-EfficientNets: Vector-Valued Efficiently Scaled Convolutional Neural Network Models
T0 review · 3 major / 5 minor · reviewed 2026-08-15 · deepseek-v4-flash
Pith's one-line read Vector-valued EfficientNets claim 99.46% accuracy on leukemia images with about 70% fewer parameters.
desk verdict Useful vector-valued depthwise-convolution construction and a sensible vectorization factor, but the headline accuracy claim rests on a confounded RGB-versus-HSV comparison and needs one control experiment before it is citable. 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 representation of vector-valued operations by real-valued tensor operations, centered on the multiplication-table tensor P whose entries define the product of basis elements in a non-associative algebra. Any vector product can be evaluated through a matrix-vector product built from P, which lets vector-valued dense, convolutional, and the newly introduced vector-valued depthwise convolutional layers be implemented with existing real-valued operations. A bank of vector-valued filters is assembled by summing Kronecker products of real filter banks with slices of P, so one vector-valued filter reuses related parameters across d channels. The architecture vectorization factor then controls whether each vector packs d real features, giving a parameter reduction by 1/d, or each real feature becomes a vector, upscaling by d, with the 1/4 setting used in the experiments. This construction is what turns the scalar EfficientNetV2-B0 into V-EfficientNet while preserving the MBConv and Fused-MBConv block structure.
What would settle it
Retrain the real-valued EfficientNetV2-B0 on HSV-encoded images with the same 50/50 split, augmentation, and 10-run protocol; if its mean accuracy reaches or exceeds the 99.46% reported for the hyperbolic-quaternion model, the vector-valued architecture's advantage is explained by color encoding rather than by the algebraic mechanism.
Extended reading notes
Core claim
The central claim is that vector-valued EfficientNets, meaning EfficientNetV2-B0 with its scalar arithmetic replaced by multiplication in a four-dimensional hypercomplex algebra, can outperform both the real-valued baseline and prior specialized models on ALL-IDB2 while using roughly 70% fewer parameters. The winning model, based on hyperbolic quaternions and trained on HSV-encoded images, achieves 99.46% average accuracy over 10 runs, whereas the real-valued RGB baseline scores 98.23%. The paper further claims this is the highest mean accuracy reported for ALL-IDB2 to date, and presents these numbers as evidence that vector-valued networks exploit inter-channel relationships that real-valued networks must learn, with the choice of algebra acting as a meaningful design decision.
Load-bearing premise
The central claim assumes that the 1.2-point accuracy gap between the winning vector-valued model and the real baseline comes from the vector-valued algebra, not from the fact that the winning model was trained on HSV images while the baseline used RGB.
Editorial extensions
If this is right
- Replacing real-valued depthwise and regular convolutions with vector-valued counterparts in EfficientNetV2-B0 reduces trainable parameters by approximately 70% at the 1/4 vectorization factor, while classification accuracy on ALL-IDB2 rises from 98.23% to 99.46% for the hyperbolic-quaternion model.
- The same vectorization recipe extends to other EfficientNet variants and scales, since it only swaps the underlying arithmetic and keeps the block-level architecture intact.
- The experiments isolate the choice of hypercomplex algebra as a performance lever: quaternions, coquaternions, tessarines, and hyperbolic quaternions deliver different accuracies on the same task, with hyperbolic quaternions performing best.
- Vector-valued depthwise convolution, introduced here, is what allows the MBConv blocks of EfficientNet to be vectorized, so the method is not limited to dense or regular convolutional layers.
Reading between the lines
- If the real-valued baseline were retrained on HSV input under the same augmentation and split, the reported gap might shrink: the winning model uses HSV while the baseline uses RGB, so the current comparison does not fully isolate the algebraic contribution.
- The vector-valued depthwise convolution is a general primitive that could be dropped into other depthwise-heavy architectures, such as MobileNet-style backbones, not just EfficientNet.
- With only 260 images and 10 runs, the separation between the best and second-best models may not be statistically significant; confidence intervals or a significance test over more seeds would settle it.
- The algebraic structure of hyperbolic quaternions, which are non-associative and non-commutative, appears to matter for accuracy, so algebra selection could potentially be guided by geometric or group-theoretic properties of the data rather than brute force.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper introduces V-EfficientNets, an adaptation of EfficientNetV2 to vector-valued non-associative algebras. The authors formalize vector-valued depthwise convolution via a real-valued implementation based on Kronecker products, introduce an architecture vectorization factor lambda in [1/d, 1], and evaluate the resulting models on the ALL-IDB2 acute lymphoblastic leukemia image classification task. They report an average accuracy of 99.46% for a hyperbolic-quaternion HSV model with about 70% fewer trainable parameters than the real-valued EfficientNetV2-B0 baseline, claiming state-of-the-art performance. The full text includes the algebraic framework, layer implementations, experimental details, and a link to source code.
Significance. If the claims are established, the paper makes a useful contribution: a general vector-valued depthwise convolution construction, a parameter-efficient vectorized EfficientNet variant, and a strong accuracy result on a medical benchmark with code provided. The algebraic derivation of the real-valued filter bank is internally consistent, and the vectorization factor is a clean design choice with no fitted constants. The reported parameter reduction is structurally plausible. However, the empirical superiority claim is not yet supported because the main comparison confounds architecture with color encoding, and the depthwise-convolution derivation is insufficiently specified.
major comments (3)
- [Section V, Table II] The reported advantage of the best vector-valued model over the baseline is confounded with color encoding. The real-valued EfficientNetV2-B0 baseline is reported only with RGB input (98.23 ± 1.09), while the two models that exceed it, quaternion HSV and hyperbolic quaternion HSV, both use HSV encoding. No real-valued HSV baseline is given, so the 1.23-percentage-point gap could be entirely due to HSV preprocessing rather than the vector-valued algebra. The abstract's claim that V-EfficientNets 'outperform state-of-the-art models, including the original EfficientNet' therefore needs an additional control experiment: a real-valued EfficientNetV2-B0 trained on HSV input under the same protocol.
- [Section V, Table II and following paragraph] No significance testing is reported for the 10 repeated runs, despite the text using the words 'significantly outperformed' and 'solid margin.' The standard deviations overlap substantially (e.g., quaternion HSV 99.23 ± 0.91, hyperbolic quaternion HSV 99.46 ± 0.60, coquaternion HSV 98.08 ± 2.07), so the observed differences may not be statistically reliable. Paired comparisons across the 10 runs (e.g., Wilcoxon signed-rank test or a paired bootstrap) should be reported for each pair of models, especially for hyperbolic quaternion HSV versus real-valued RGB and versus quaternion HSV.
- [Section III-B, Eqs. (9)-(12) and Figures 3-4] The conversion of the augmented real-valued depthwise output J(a) to the desired real representation J(R) is not specified precisely. The text says to sum channels 'row-wise in the Fig. 3' and then 'permutating appropriately' the channels of the resulting image, but no explicit index map or linear transformation is given. For a general non-associative algebra, a simple summation over one index followed by a permutation does not generally produce the components of the algebra product: for example, with quaternions the real component of the product requires the signed combination I0*F0 - I1*F1 - I2*F2 - I3*F3, which cannot be obtained by adding the four augmented channels that contain the positive products I1*F1, I2*F2, I3*F3. The paper should provide the explicit linear combination or permutation rule in terms of the structure constants πijk, or otherwise verify that the described operation is correct. Since the vector-valued depthwise convolution is the paper's main architectural novelty and is used in all experiments, this omission is load-bearing for the reproducibility and correctness of the method.
minor comments (5)
- [Section V, Table II caption and text] The table caption lists 'Color encoding' but the rows for vector models include the algebra and the encoding; consider adding a column for the algebra or a clearer separation of the two factors.
- [Abstract and Section V] The word 'significantly' is used to describe accuracy differences without statistical support; please reserve it for significance tests or rephrase.
- [Section III-B, around Eq. (10)-(12)] The notation J(a) and the tilde variant J~(R) are not formally defined before use; a short definition or a labeled equation would improve readability.
- [Section IV-B, lambda definition] The range of λ is stated as [1/d, 1], but the description of the two extremes (λ=1/d and λ=1) could be clarified by giving the explicit number of filters in a layer for each case; a small table or example would help.
- [Section V, cross-paper comparison] The comparison to previously reported accuracies (e.g., ALLNet at 98.46%) assumes that the evaluation protocols are equivalent, yet the manuscript uses a particular 50/50 split, 128×128 resizing, and augmentation. A sentence acknowledging this limitation or providing a comparison under a shared protocol would strengthen the state-of-the-art claim.
Circularity Check
No circularity: derivations are algebraic and exact, accuracy is externally measured.
full rationale
The paper's derivation chain is self-contained: vector multiplication is fixed by a multiplication table (Table I), and the vector-valued dense, convolutional, and depthwise convolutional layers are implemented through exact linear-algebra identities (Eqs. 7 and 12) plus explicit channel permutations (Figs 2-4). No fitted constants or parameters are back-solved from the reported accuracy values. The parameter reduction follows from the explicitly defined vectorization factor λ=1/4, so the roughly 70% parameter decrease is a constructional arithmetic consequence, not an empirical prediction; it is a design specification rather than a derived physical law. The accuracy numbers in Table II are measured on a fixed 50/50 split over 10 runs, and the claimed 99.46% is compared against external published results, making the central performance claim an independently measurable empirical benchmark. Although the paper cites the authors' prior works for motivation and experimental protocol (refs 9, 28, 35), the load-bearing derivation of the vector-valued depthwise convolution is performed in-place, and the empirical claims do not reduce to those citations. No circular step exhibiting Eq. X = Eq. Y by construction, or a fitted parameter renamed as a prediction, was found.
Assumptions & free parameters
free parameters (1)
- architecture vectorization factor lambda =
1/4
assumptions (3)
- standard math A non-associative algebra product is fully determined by the structure constants pi_ijk and can be computed as a matrix-vector product using ML(x) in Eq. (6).
- domain assumption Real-valued depthwise convolution with a Kronecker-built filter bank F^(R) in Eq. (12) correctly emulates the vector-valued depthwise convolution defined in Eq. (9).
- domain assumption Vector-valued neural networks generalize better on small datasets because they assume inter-channel correlations and reuse parameters.
Cite this review
Pith. "Pith review of V-EfficientNets: Vector-Valued Efficiently Scaled Convolutional Neural Network Models." pith.science (2026). https://pith.science/paper/4Q5NTVPT
@misc{pith2026250505659,
author = {Pith},
title = {Pith review of: V-EfficientNets: Vector-Valued Efficiently Scaled Convolutional Neural Network Models},
year = {2026},
howpublished = {\url{https://pith.science/paper/4Q5NTVPT}},
note = {Machine review of arXiv:2505.05659}
}
read the original abstract
EfficientNet models are convolutional neural networks optimized for parameter allocation by jointly balancing network width, depth, and resolution. Renowned for their exceptional accuracy, these models have become a standard for image classification tasks across diverse computer vision benchmarks. While traditional neural networks learn correlations between feature channels during training, vector-valued neural networks inherently treat multidimensional data as coherent entities, taking for granted the inter-channel relationships. This paper introduces vector-valued EfficientNets (V-EfficientNets), a novel extension of EfficientNet designed to process arbitrary vector-valued data. The proposed models are evaluated on a medical image classification task, achieving an average accuracy of 99.46% on the ALL-IDB2 dataset for detecting acute lymphoblastic leukemia. V-EfficientNets demonstrate remarkable efficiency, significantly reducing parameters while outperforming state-of-the-art models, including the original EfficientNet. The source code is available at https://github.com/mevalle/v-nets.
Figures
Reference graph
Works this paper leans on
-
[1]
Y . Lecun, Y . Bengio, and G. Hinton, “Deep learning,” Nature, vol. 521, no. 7553, pp. 436–444, 5 2015
work page 2015
-
[2]
Deep Convolutional Neural Networks [Lecture Notes],
R. C. Gonzalez, “Deep Convolutional Neural Networks [Lecture Notes],” IEEE Signal Processing Magazine , vol. 35, no. 6, pp. 79–87, 11 2018
work page 2018
-
[3]
A survey of convo- lutional neural networks: analysis, applications, and prospects,
Z. Li, F. Liu, W. Yang, S. Peng, and J. Zhou, “A survey of convo- lutional neural networks: analysis, applications, and prospects,” IEEE transactions on neural networks and learning systems , vol. 33, no. 12, pp. 6999–7019, 2021
2021
-
[4]
Deep residual learning for image recognition,
K. He, X. Zhang, S. Ren, and J. Sun, “Deep residual learning for image recognition,” CoRR, vol. abs/1512.03385, 2015. [Online]. Available: http://arxiv.org/abs/1512.03385
arXiv 2015
-
[5]
Squeeze-and-Excitation Networks,
J. Hu, L. Shen, S. Albanie, G. Sun, and E. Wu, “Squeeze-and-Excitation Networks,” 9 2017
work page 2017
-
[6]
EfficientNet: Rethinking model scaling for con- volutional neural networks,
M. Tan and Q. Le, “EfficientNet: Rethinking model scaling for con- volutional neural networks,” in Proceedings of the 36th International Conference on Machine Learning, ser. Proceedings of Machine Learning Research, K. Chaudhuri and R. Salakhutdinov, Eds., vol. 97. PMLR, 09–15 Jun 2019, pp. 6105–6114
work page 2019
-
[7]
Efficientnetv2: Smaller models and faster training,
——, “Efficientnetv2: Smaller models and faster training,” in Proceed- ings of the 38th International Conference on Machine Learning , ser. Proceedings of Machine Learning Research, M. Meila and T. Zhang, Eds., vol. 139. PMLR, 18–24 Jul 2021, pp. 10 096–10 106
work page 2021
-
[8]
Backpropaga- tion with n-d vector-valued neurons using arbitrary bilinear products,
Z.-C. Fan, T.-S. T. Chan, Y .-H. Yang, and J.-S. R. Jang, “Backpropaga- tion with n-d vector-valued neurons using arbitrary bilinear products,” IEEE Transactions on Neural Networks and Learning Systems , vol. 31, no. 7, pp. 2638–2652, 2020
work page 2020
Show all 41 references
-
[9]
M. E. Valle, “Understanding Vector-Valued Neural Networks and Their Relationship With Real and Hypercomplex-Valued Neural Networks: Incorporating intercorrelation between features into neural networks [Hypercomplex Signal and Image Processing],” IEEE Signal Processing Magazine...
2024
-
[10]
Beyond Fully-Connected Layers with Quaternions: Parameterization of Hypercomplex Multiplications with 1/n Parameters,
A. Zhang, Y . Tay, S. Zhang, A. Chan, A. T. Luu, S. C. Hui, and J. Fu, “Beyond Fully-Connected Layers with Quaternions: Parameterization of Hypercomplex Multiplications with 1/n Parameters,” 2 2021. [Online]. Available: https://arxiv.org/abs/2102.08597v1
2021 arXiv
-
[11]
PHNNs: lightweight neural networks via parameterized hypercomplex convolutions,
E. Grassucci, A. Zhang, and D. Comminiello, “PHNNs: lightweight neural networks via parameterized hypercomplex convolutions,” IEEE Transactions on Neural Networks and Learning Systems , vol. 35, no. 6, pp. 8293–8305, 2024
2024
-
[12]
Demysti- fying the Hypercomplex: Inductive biases in hypercomplex deep learning [Hypercomplex Signal and Image Processing],
D. Comminiello, E. Grassucci, D. P. Mandic, and A. Uncini, “Demysti- fying the Hypercomplex: Inductive biases in hypercomplex deep learning [Hypercomplex Signal and Image Processing],” IEEE Signal Processing Magazine, vol. 41, no. 3, pp. 59–71, 2024
2024
-
[13]
I. N. Aizenberg, Complex-Valued Neural Networks with Multi-Valued Neurons, 1st ed., ser. Studies in Computational Intelligence, J. Kacprzyk, Ed. Berlin Heidelberg: Springer, 2011, vol. 353
2011
-
[14]
Complex-valued neural networks,
A. Hirose, “Complex-valued neural networks,” Studies in Computational Intelligence, vol. 400, pp. 1–214, 2012
2012
-
[15]
A survey of quaternion neural networks,
T. Parcollet, M. Morchid, and G. Linar `es, “A survey of quaternion neural networks,” Artificial Intelligence Review, vol. 53, no. 4, pp. 2957–2982, 4 2020
2020
-
[16]
Quaternion Neural Networks: A physics- incorporated intelligence framework [Hypercomplex Signal and Image Processing],
A. Hirose, F. Shang, Y . Otsuka, R. Natsuaki, Y . Matsumoto, N. Usami, Y . Song, and H. Chen, “Quaternion Neural Networks: A physics- incorporated intelligence framework [Hypercomplex Signal and Image Processing],” IEEE Signal Processing Magazine , vol. 41, no. 3, pp. 88– 100, 2024
2024
-
[17]
A Comprehensive Analy- sis of Quaternion Deep Neural Networks: Architectures, Applications, Challenges, and Future Scope,
S. Singh, S. Kumar, and B. K. Tripathi, “A Comprehensive Analy- sis of Quaternion Deep Neural Networks: Architectures, Applications, Challenges, and Future Scope,” Archives of Computational Methods in Engineering, 12 2024
2024
-
[18]
Robust symbol detection based on quaternion neural networks in wireless polarization-shift-keying communications,
H. Chen, R. Natsuaki, and A. Hirose, “Robust symbol detection based on quaternion neural networks in wireless polarization-shift-keying communications,” IEEE Transactions on Neural Networks and Learning Systems, vol. 35, no. 11, pp. 16 064–16 075, 2024
2024
-
[19]
Dual Quater- nion Rotational and Translational Equivariance in 3D Rigid Motion Modelling,
G. Vieira, E. Grassucci, M. E. Valle, and D. Comminiello, “Dual Quater- nion Rotational and Translational Equivariance in 3D Rigid Motion Modelling,” in 2023 IEEE 33rd International Workshop on Machine Learning for Signal Processing (MLSP) . IEEE, 9 2023, pp. 1–6
2023
-
[20]
Schafer, An Introduction to Nonassociative Algebras
R. Schafer, An Introduction to Nonassociative Algebras . Project Gutenberg, 1961. [Online]. Available: https://www.gutenberg.org/eboo ks/25156
1961
-
[21]
I. L. Kantor and A. S. Solodovnikov, Hypercomplex Numbers: An Elementary Introduction to Algebras . Springer New York, 1989
1989
-
[22]
Catoni, D
F. Catoni, D. Boccaletti, R. Cannata, V . Catoni, E. Nichelatti, and P. Zampetti, The Mathematics of Minkowski Space-Time . Birkh ¨auser Basel, 2008
2008
-
[23]
Extending the Universal Approximation Theorem for a Broad Class of Hypercomplex-Valued Neural Networks,
W. L. Vital, G. Vieira, and M. E. Valle, “Extending the Universal Approximation Theorem for a Broad Class of Hypercomplex-Valued Neural Networks,” Lecture Notes in Computer Science (including sub- series Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformat...
2022
-
[24]
Universal approximation theorem for vector- and hypercomplex-valued neural networks,
M. E. Valle, W. L. Vital, and G. Vieira, “Universal approximation theorem for vector- and hypercomplex-valued neural networks,” Neural Networks, vol. 180, p. 106632, 12 2024
2024
-
[25]
G ´eron, Hands–On Machine Learning with Scikit–Learn and Ten- sorFlow: Concepts, Tools, and Techniques to Build Intelligent Systems , 2nd ed
A. G ´eron, Hands–On Machine Learning with Scikit–Learn and Ten- sorFlow: Concepts, Tools, and Techniques to Build Intelligent Systems , 2nd ed. Sebastopol, California, USA.: O Reilly, 10 2019
2019
-
[26]
Mobilenetv2: Inverted residuals and linear bottlenecks,
M. Sandler, A. Howard, M. Zhu, A. Zhmoginov, and L.-C. Chen, “Mobilenetv2: Inverted residuals and linear bottlenecks,” in Proceedings of the IEEE conference on computer vision and pattern recognition , 2018, pp. 4510–4520
2018
-
[27]
EfficientNet-EdgeTPU: Creating Accelerator-Optimized Neural Networks with AutoML,
“EfficientNet-EdgeTPU: Creating Accelerator-Optimized Neural Networks with AutoML,” Acessed on January 20 2025. [Online]. Available: https://research.google/blog/efficientnet-edgetpu-creating-acc elerator-optimized-neural-networks-with-automl/
2025
-
[28]
Clifford Convolutional Neural Networks for Lymphoblast Image Classification,
G. Vieira, M. E. Valle, and W. Lopes, “Clifford Convolutional Neural Networks for Lymphoblast Image Classification,” inAdvanced Computa- tional Applications of Geometric Algebra. ICACGA 2022. Lecture Notes in Computer Science , 1st ed., D. Silva, E. Hitzer, and D. Hildenbrand,...
2022
-
[29]
A review of deep learning in medical imaging: Imaging traits, technol- ogy trends, case studies with progress highlights, and future promises,
S. K. Zhou, H. Greenspan, C. Davatzikos, J. S. Duncan, B. Van Gin- neken, A. Madabhushi, J. L. Prince, D. Rueckert, and R. M. Summers, “A review of deep learning in medical imaging: Imaging traits, technol- ogy trends, case studies with progress highlights, and future promises...
2021
-
[30]
Deep learning for medical image segmentation: State-of-the- art advancements and challenges,
M. E. Rayed, S. M. Islam, S. I. Niha, J. R. Jim, M. M. Kabir, and M. F. Mridha, “Deep learning for medical image segmentation: State-of-the- art advancements and challenges,” Informatics in Medicine Unlocked , vol. 47, p. 101504, 1 2024
2024
-
[31]
Deep learning- based detection and classification of acute lymphoblastic leukemia with explainable AI techniques,
D. Muduli, S. Parija, S. Kumari, A. Hassan, H. S. Jangwan, A. T. Zamani, S. M. Gouse, B. Majhi, and N. Parveen, “Deep learning- based detection and classification of acute lymphoblastic leukemia with explainable AI techniques,” Array, vol. 26, p. 100397, 7 2025
2025
-
[32]
ALL diagnosis: can efficiency and transparency coexist? an explainble deep learning approach,
D. Muhammad, M. Salman, A. Keles, and M. Bendechache, “ALL diagnosis: can efficiency and transparency coexist? an explainble deep learning approach,” Scientific Reports, vol. 15, no. 1, pp. 1–20, 12 2025
2025
-
[33]
Ensemble of CNNs for Enhanced Leukocyte Classification in Acute Myeloid Leukemia Diagnosis,
L. P. Sousa, R. R. Silva, M. L. Claro, F. H. Ara ´ujo, R. N. Borges, V . P. Machado, and R. M. Veras, “Ensemble of CNNs for Enhanced Leukocyte Classification in Acute Myeloid Leukemia Diagnosis,” Lec- ture Notes in Computer Science (including subseries Lecture Notes in Artific...
2025
-
[34]
Novel computational workflows for natural and biomedical image processing based on hypercomplex algebras,
N. A. Valous, E. Hitzer, D. Dus ¸e, R. R. Moraleda, F. Popp, M. Suarez-Carmona, A. Berthel, I. Papageorgiou, C. Fremd, A. R ¨olle, C. C. Westhoff, B. Lenoir, N. Halama, I. Z ¨ornig, and D. J ¨ager, “Novel computational workflows for natural and biomedical image processing base...
2025
-
[35]
Acute Lymphoblastic Leukemia Detection Using Hypercomplex-Valued Convolutional Neural Networks,
G. Vieira and M. E. Valle, “Acute Lymphoblastic Leukemia Detection Using Hypercomplex-Valued Convolutional Neural Networks,” in 2022 International Joint Conference on Neural Networks (IJCNN) . IEEE, 7 2022, pp. 1–8
2022
-
[36]
{All-IDB:} The acute lymphoblas- tic leukemia image database for image processing,
R. D. Labati, V . Piuri, and F. Scotti, “{All-IDB:} The acute lymphoblas- tic leukemia image database for image processing,” in Proceedings - International Conference on Image Processing, ICIP , 2011, pp. 2045– 2048
2011
-
[37]
Integrating custom gan segmentation with advanced deep learning classifiers for enhanced acute lymphoblastic detection,
G. Naveen Prashanth, M. Lalith Kumar, S. Abinaya, and S. Alagu, “Integrating custom gan segmentation with advanced deep learning classifiers for enhanced acute lymphoblastic detection,” in 2024 Tenth International Conference on Bio Signals, Images, and Instrumentation (ICBSII)...
2024
-
[38]
DL4ALL: Multi- task cross-dataset transfer learning for acute lymphoblastic leukemia detection,
A. Genovese, V . Piuri, K. N. Plataniotis, and F. Scotti, “DL4ALL: Multi- task cross-dataset transfer learning for acute lymphoblastic leukemia detection,” IEEE Access, vol. 11, pp. 65 222–65 237, 2023
2023
-
[39]
ALLNet: acute lymphoblastic leukemia detection using lightweight convolutional networks,
A. Genovese, “ALLNet: acute lymphoblastic leukemia detection using lightweight convolutional networks,” in 2022 IEEE 9th International Conference on Computational Intelligence and Virtual Environments for Measurement Systems and Applications (CIVEMSA) , 2022, pp. 1–6
2022
-
[40]
Comparison of high-dimensional neural networks using hypercomplex numbers in a robot manipulator control,
K. Takahashi, “Comparison of high-dimensional neural networks using hypercomplex numbers in a robot manipulator control,” Artificial Life and Robotics, vol. 26, no. 3, pp. 367–377, 8 2021
2021
-
[41]
Histopathological transfer learning for acute lymphoblastic leukemia detection,
A. Genovese, M. S. Hosseini, V . Piuri, K. N. Plataniotis, and F. Scotti, “Histopathological transfer learning for acute lymphoblastic leukemia detection,” CIVEMSA 2021 - IEEE International Conference on Compu- tational Intelligence and Virtual Environments for Measurement Sys...
2021
Reviewed August 15, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.