REVIEW 5 major objections 6 minor 42 references
Hybrid Dense-UNet201 Optimization for Pap Smear Image Segmentation Using Spider Monkey Optimization
T0 review · 5 major / 6 minor · reviewed 2026-08-16 · deepseek-v4-flash
Pith's one-line read A DenseNet201-encoded U-Net tuned by spider monkey optimization reaches 96.16% accuracy and 91.63% IoU on Pap smear segmentation.
desk verdict A plain encoder-swap plus metaheuristic tuning, but the headline accuracy gain is unsupported because the comparison lacks a controlled baseline and a defined validation protocol. 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 mechanism is Dense-UNet201 plus a modified spider monkey optimizer. DenseNet201's dense blocks concatenate features from all preceding layers in the encoder, which the paper argues improves gradient flow and feature reuse, while the U-Net decoder restores spatial detail through transpose convolutions aligned with encoder skip connections and a bottleneck that stays at 16×16×1024. The SMO component encodes each candidate solution as a triple of learning rate, batch size, and epoch count; continuous updates act on the learning rate, discrete updates round the epoch count to stay in [10,100], and categorical updates move an index mapped to the batch-size set. The swarm objective is the segmentation loss, and the optimizer's search is what the paper credits for the final performance gain.
What would settle it
Train Dense-UNet201 without SMO using exactly the learning rate, batch size, and epoch count that SMO selected, on the same SMO-PMD-CLAHE enhanced data and the same train/validation/test split; if it also reaches roughly 96% accuracy and 91% IoU, the SMO-specific claim is falsified. A supporting check is to confirm the SMO hyperparameters were chosen on a validation set and to report results from multiple random seeds.
Extended reading notes
Core claim
On the SIPaKMeD cervical cytology dataset, the paper claims that a segmentation network built by replacing the U-Net encoder with an ImageNet-pretrained DenseNet201, trained on images enhanced by an SMO-tuned hybrid Perona-Malik diffusion and CLAHE filter, and with learning rate, batch size, and epoch count selected by a modified spider monkey optimization algorithm, reaches 96.16% accuracy, 91.63% IoU, and 95.63% Dice coefficient. The SMO modifications round discrete epoch values and map categorical batch sizes to indices so the swarm search can handle mixed-variable hyperparameters. The paper further claims that these scores exceed those of standard U-Net, Res-UNet50, and Efficient-UNetB0 under the same preprocessing, and that the SMO step raises Dense-UNet201 from 92.02% accuracy, 80.76% IoU, and 88.18% Dice to the final numbers while reducing loss from 13.28% to 5.03%.
Load-bearing premise
The comparison assumes that the non-SMO Dense-UNet201 baseline was trained with reasonable, comparable hyperparameters, so the large gain in the third scenario is caused by SMO rather than by starting from a poorly tuned baseline.
Editorial extensions
If this is right
- If the reported numbers reproduce, Dense-UNet201 becomes a strong baseline for cervical cell segmentation on SIPaKMeD, with a pretrained encoder adding roughly 22 percentage points of IoU over standard U-Net in the raw-data scenario.
- The mixed-variable SMO encoding gives a template for applying swarm optimizers to deep learning hyperparameters that include categorical choices like batch size, not just continuous learning rates.
- The SMO-tuned PMD-CLAHE preprocessing step improves every compared architecture, so the paper positions image enhancement and segmentation as jointly optimizable components.
- The SMO tuning step is claimed to be responsible for the largest single gain, raising IoU by 10.87 percentage points and Dice by 7.45 percentage points over the preprocessed but untuned model.
Reading between the lines
- A natural extension is to use the SMO-selected hyperparameters as a fixed configuration and retrain Dense-UNet201 without the swarm loop, which would isolate how much of the gain comes from the search itself versus from the discovered hyperparameter values.
- The same mixed-variable encoding could be applied to other architectural choices, such as decoder depth, loss weights, or augmentation settings, turning SMO into a general network-configuration search rather than a three-parameter tuner.
- Because the preprocessing step improves all compared models, a promising follow-up is to test whether SMO-tuned PMD-CLAHE also helps other cervical cytology datasets and other stain-normalization pipelines.
- The reported single-trial improvements would be more convincing with multiple seeds and confidence intervals, since deep learning runs can vary by several IoU points across seeds.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes Dense-UNet201, a U-Net variant with a pretrained DenseNet201 encoder, for semantic segmentation of Pap smear images from the SIPaKMeD dataset. The authors combine this architecture with spider monkey optimization (SMO) for hyperparameter tuning and with an SMO-optimized PMD-CLAHE preprocessing step. Three scenarios are compared: no preprocessing, preprocessing only, and preprocessing plus SMO optimization of Dense-UNet201. The central claim is that SMO raises Dense-UNet201 from 92.02% accuracy, 80.76% IoU, and 88.18% Dice in the second scenario to 96.16% accuracy, 91.63% IoU, and 95.63% Dice in the third scenario, and that this improvement is attributable to SMO.
Significance. If the central claim were established, the paper would provide a useful case study of metaheuristic hyperparameter optimization for medical image segmentation and a systematic comparison of pretrained encoders in U-Net. The manuscript has strengths: it uses a public benchmark dataset, reports standard segmentation metrics, compares four architectures under the same preprocessing, and gives a reasonably detailed description of the SMO modifications for categorical and discrete variables. However, the main causal claim that SMO is responsible for the large performance gains is not supported by the experimental design as reported. The lack of a defined data split, the absence of baseline hyperparameters, and the single-run evaluation mean that the reported improvement could plausibly be due to selection bias, undertrained baselines, or random variation.
major comments (5)
- [§2.6–2.7, §3.3] The manuscript never defines a training/validation/test split for the SIPaKMeD images, even though §2.7 states that metrics are reported on both validation and test data. Without a specified split and a rule that SMO hyperparameter selection uses only the validation set, the third-scenario results may have been selected directly on the test set, which would inflate the reported accuracy (96.16%), IoU (91.63%), and Dice (95.63%). Please specify the split, the number of SMO fitness evaluations, and which data were used at each stage of the optimization.
- [§3.2 vs. §3.3] The comparison that supports the central claim is uncontrolled. For the Scenario-2 baseline Dense-UNet201, the paper does not report the learning rate, batch size, or number of epochs; §2.2 only states that Adamax is used for all models. If the baseline was trained with different or poorly chosen hyperparameters, the SMO improvement reported in Figure 7 could reflect under-training rather than the optimization algorithm. The baseline and SMO-tuned runs must use the same data split, training budget, initialization, and evaluation protocol.
- [Figure 7, §3.3] All results are single-run point estimates without error bars, confidence intervals, or significance tests. Given the large reported jumps in IoU and Dice, repeated runs with different random seeds are needed to establish that the differences are not due to random variation. At minimum, the authors should report the number of runs and the variance across runs.
- [§2.2] The learning-rate search range is stated inconsistently within the same section: the text first says the range is 1e-5 to 1e-2 and later says 10^-5 to 10^-1. This factor-of-ten discrepancy changes the search space and prevents reproduction of the SMO optimization. Please correct the inconsistency and state the exact range used.
- [§2.5, Eq. (9)] The probability update for categorical parameters in Eq. (9) is not clearly defined: the numerator uses fitness(LL_k) while the denominator sums fitness over all monkeys, and the relationship between the index update in Eq. (8) and this probability is unexplained. This makes the modified SMO difficult to reproduce and should be clarified.
minor comments (6)
- [Figures] Figure numbering is inconsistent: §2.3 says 'Fig. 3 illustrates the adjusted DenseNet-201 architecture' but Figure 3 is the U-Net diagram, and §2.6 also refers to Figure 2 for the simulation scenario, duplicating an earlier Figure 2. All figures should be renumbered and cross-checked.
- [§2.4] The U-Net description gives an input size of 572×572×1, whereas the experimental protocol in §2.1 resizes all images to 256×256. Please clarify which input size was actually used.
- [§2.7, Eqs. (11)–(12)] The notation in Eqs. (11) and (12) defines P as the ground-truth object and G as the predicted object, which is the reverse of the conventional assignment; please align the notation with the text or with standard usage.
- [References] Reference [35] is cited as the source of the SMO-optimized PMD-CLAHE preprocessing but appears to be a preprint by the same authors; please provide a persistent identifier and enough detail in this paper to make the preprocessing reproducible without relying on that reference.
- [Throughout] There are several typographical errors, including 'bith size' in §2.5, 'DenseNe201' in §1, and inconsistent notation for powers of ten (10^-5 vs. 1e-5); these should be corrected in a final pass.
- [§2.7, Eq. (13)] The dice-loss expression in Eq. (13) appears to contain a typo: the second summation uses C_c where G_c is expected. Please verify the formula against the cited source.
Circularity Check
No significant circularity: the reported SMO Dense-UNet201 results are empirical evaluations on the public SIPaKMeD dataset, and the claimed SMO benefit is not an input renamed as a prediction.
full rationale
The paper's central claim is an empirical segmentation result: SMO Dense-UNet201 reaches 96.16% accuracy, 91.63% IoU, and 95.63% Dice on SIPaKMeD. This is not a derivation from an input but a measured outcome on a public dataset with ground-truth masks, so it is externally falsifiable and not equivalent to any fitted parameter by construction. Scenario 2 versus Scenario 3 compares Dense-UNet201 with and without SMO hyperparameter tuning under the same SMO PMD-CLAHE preprocessing, so the claimed improvement is not logically entailed by the self-cited preprocessing work [35]. The self-citation [35] supplies the preprocessing recipe, but the paper itself observes the preprocessing benefit empirically in Section 3.2, and the central SMO-versus-baseline comparison holds preprocessing fixed, so the self-citation is not load-bearing in the strong sense that would constitute circularity. The manuscript omits train/validation/test split details and baseline hyperparameters (Section 2.7 says metrics are reported 'on validation and test data' without defining the split; Section 2.2 gives only Adamax as the optimizer), and the SMO fitness function is not defined (Eq. 3 uses 'fitness_i' without specifying it), so whether the final metrics were selection criteria rather than independent test-set numbers cannot be verified from the text. These are methodological transparency and correctness-risk concerns, not circularity: no equation in the paper defines the reported metric as the SMO objective, and no fitted value is renamed as a prediction. The learning-rate range inconsistency (1e-5 to 1e-2 in Section 2.2 versus 10^-5 to 10^-1 later) is likewise an internal inconsistency, not a circular step.
Assumptions & free parameters
free parameters (4)
- SMO swarm size
- SMO iteration count and leader limits
- Final optimized hyperparameters (learning rate, batch size, epochs)
- PMD-CLAHE filter parameters
assumptions (4)
- domain assumption SIPaKMeD ground-truth masks are accurate.
- domain assumption ImageNet pretraining transfers to Pap smear cell segmentation.
- ad hoc to paper SMO converges to a good hyperparameter set.
- domain assumption Adamax is a valid fixed optimizer for all baseline models.
Cite this review
Pith. "Pith review of Hybrid Dense-UNet201 Optimization for Pap Smear Image Segmentation Using Spider Monkey Optimization." pith.science (2026). https://pith.science/paper/VK7KOFSE
@misc{pith2026250412807,
author = {Pith},
title = {Pith review of: Hybrid Dense-UNet201 Optimization for Pap Smear Image Segmentation Using Spider Monkey Optimization},
year = {2026},
howpublished = {\url{https://pith.science/paper/VK7KOFSE}},
note = {Machine review of arXiv:2504.12807}
}
read the original abstract
Pap smear image segmentation is crucial for cervical cancer diagnosis. However, traditional segmentation models often struggle with complex cellular structures and variations in pap smear images. This study proposes a hybrid Dense-UNet201 optimization approach that integrates a pretrained DenseNet201 as the encoder for the U-Net architecture and optimizes it using the spider monkey optimization (SMO) algorithm. The Dense-UNet201 model excelled at feature extraction. The SMO was modified to handle categorical and discrete parameters. The SIPaKMeD dataset was used in this study and evaluated using key performance metrics, including loss, accuracy, Intersection over Union (IoU), and Dice coefficient. The experimental results showed that Dense-UNet201 outperformed U-Net, Res-UNet50, and Efficient-UNetB0. SMO Dense-UNet201 achieved a segmentation accuracy of 96.16%, an IoU of 91.63%, and a Dice coefficient score of 95.63%. These findings underscore the effectiveness of image preprocessing, pretrained models, and metaheuristic optimization in improving medical image analysis and provide new insights into cervical cell segmentation methods.
Reference graph
Works this paper leans on
-
[1]
Cervical cancer is a major health concern for women worldwide
INTRODUCTION Cancer is the second leading cause of death worldwide, after heart disease [1]. Cervical cancer is a major health concern for women worldwide. Cervical cancer cells can spread to other organs [2]. The Global Cancer Observatory (GCO) reported 570,000 new cases and 311,000 deaths due to cervical cancer in 2018 [3]. In Indonesia, it is the secon...
work page 2018
-
[2]
MATERIALS AND METHODS 2.1. Pap Smear Images, Preprocessing, and Annotation Process The SIPaKMeD dataset was used to evaluate SMO Dense-UNet201. The SIPaKMeD dataset is well- structured for cervical cell analysis, including medical image classification and semantic image segmentation. It contains 4,049 isolated cervical cell images categorized into five di...
work page 2017
-
[3]
Simulations were conducted using the SIPaKMeD dataset
RESULTS AND DISCUSSION This study evaluated the Hybrid Dense-UNet201 method in three scenarios to assess its performance in multi-class semantic segmentation. Simulations were conducted using the SIPaKMeD dataset. The performance of the Hybrid Dense -UNet201 model was compared with that of three semantic segmentation models: U-Net, Res-UNet50, and Efficie...
-
[4]
CONCLUSION This study evaluated the Hybrid Dense -UNet201 model in three scenarios for multi -class semantic segmentation of Pap smear images. Results showed that Hybrid Dense-UNet201 consistently outperformed U- Net, Res-UNet50, and Efficient -UNetB0 in accuracy, IoU, a nd Dice coefficient. In the first scenario, Hybrid Dense-UNet201 achieved an accuracy...
-
[5]
D. A. Jia, B. Zhengyi Li, and C. Chuanwang Zhang, ‘Detection of cervical cancer cells based on strong feature CNN- SVM network’, Neurocomputing, vol. 411, pp. 112–127, Oct. 2020, doi: 10.1016/j.neucom.2020.06.006
-
[6]
G. Curigliano et al., ‘Management of cardiac disease in cancer patients throughout oncological treatment: ESMO consensus recommendations’, Annals of Oncology , vol. 31, no. 2, pp. 171 –190, 2020, doi: https://doi.org/10.1016/j.annonc.2019.10.023
-
[7]
R. Kavitha et al., ‘Ant colony optimization -enabled CNN deep learning technique for accurate detection of cervical cancer’, Biomed Res Int, vol. 2023, 2023, doi: 10.1155/2023/1742891
-
[8]
D. Sambyal and A. Sarwar, ‘Recent developments in cervical cancer diagnosis using deep learning on whole slide images: An Overview of models, techniques, challenges and future directions’, Micron, vol. 173, no. April, pp. 1–25, Oct. 2023, doi: 10.1016/j.micron.2023.103520
arXiv 2023
Show all 42 references
-
[9]
A. F. Rahmadini, M. Kusmiati, and S. Sunarti, ‘Faktor -faktor yang berhubungan dengan perilaku remaja terhadap pencegahan kanker serviks melalui vaksinasi HPV’, Jurnal Formil (Forum Ilmiah) Kesmas Respati , vol. 7, no. 3, p. 317, 2022, doi: 10.35842/formil.v7i3.458
2022 doi
-
[10]
Zhang, A
C. Zhang, A. Achuthan, and G. M. S. Himel, ‘State -of-the-Art and Challenges in Pancreatic CT Segmentation: A Systematic Review of U -Net and Its Variants’, IEEE Access , vol. 12, pp. 78726 –78742, 2024, doi: 10.1109/ACCESS.2024.3392595
2024
-
[11]
Allahqoli et al., ‘Diagnosis of cervical cancer and pre -cancerous lesions by artificial intelligence: A systematic review’, Diagnostics, vol
L. Allahqoli et al., ‘Diagnosis of cervical cancer and pre -cancerous lesions by artificial intelligence: A systematic review’, Diagnostics, vol. 12, no. 11, p. 2771, Nov. 2022, doi: 10.3390/diagnostics12112771
2022 doi
-
[12]
Chitra and S
B. Chitra and S. S. Kumar, ‘Recent advancement in cervical cancer diagnosis for automated screening: a detailed review’, J Ambient Intell Humaniz Comput, vol. 13, no. 1, pp. 251–269, Jan. 2022, doi: 10.1007/s12652-021-02899- 2
2022 doi
-
[13]
William, A
W. William, A. Ware, A. H. Basaza -Ejiri, and J. Obungoloch, ‘A review of image analysis and machine learning techniques for automated cervical cancer screening from pap-smear images’, Comput Methods Programs Biomed, vol. 164, pp. 15–22, 2018, doi: 10.1016/j.cmpb.2018.05.034
2018 doi
-
[14]
M. Fang, B. Liao, X. Lei, and F.-X. Wu, ‘A systematic review on deep learning based methods for cervical cell image analysis’, Neurocomputing, vol. 610, p. 128630, Dec. 2024, doi: 10.1016/j.neucom.2024.128630
2024
-
[15]
N. P. Bindu and P. N. Sastry, ‘RETRACTED ARTICLE: Automated brain tumor detection and segmentation using modified UNet and ResNet model’, Soft comput, vol. 27, no. 13, pp. 9179–9189, Jul. 2023, doi: 10.1007/s00500-023- 08420-5
2023 doi
-
[16]
Ronneberger, P
O. Ronneberger, P. Fischer, and T. Brox, ‘U -net: Convolutional networks for biomedical image segmentation’, in Medical image computing and computer-assisted intervention–MICCAI 2015: 18th international conference, Munich, Germany, October 5-9, 2015, proceedings, part III 18, ...
2015
-
[17]
Ghaznavi, R
A. Ghaznavi, R. Rychtáriková, P. Císař, M. M. Ziaei, and D. Štys, ‘Symmetry Breaking in the U -Net: Hybrid Deep- Learning Multi-Class Segmentation of HeLa Cells in Reflected Light Microscopy Images’, Symmetry (Basel), vol. 16, no. 2, p. 227, Feb. 2024, doi: 10.3390/sym16020227
2024 doi
-
[18]
Azad et al., ‘Medical Image Segmentation Review: The Success of U-Net’, IEEE Trans Pattern Anal Mach Intell, vol
R. Azad et al., ‘Medical Image Segmentation Review: The Success of U-Net’, IEEE Trans Pattern Anal Mach Intell, vol. 46, no. 12, pp. 10076–10095, Dec. 2024, doi: 10.1109/TPAMI.2024.3435571
2024
-
[19]
Kora et al., ‘Transfer learning techniques for medical image analysis: A review’, Biocybern Biomed Eng, vol
P. Kora et al., ‘Transfer learning techniques for medical image analysis: A review’, Biocybern Biomed Eng, vol. 42, no. 1, pp. 79–107, Jan. 2022, doi: 10.1016/j.bbe.2021.11.004
2022 doi
-
[20]
Chamseddine, N
E. Chamseddine, N. Mansouri, M. Soui, and M. Abed, ‘Handling class imbalance in COVID -19 chest X-ray images classification: Using SMOTE and weighted loss’, Appl Soft Comput , vol. 129, p. 109588, Nov. 2022, doi: 10.1016/j.asoc.2022.109588
2022
-
[21]
Ghosh, A
S. Ghosh, A. Chaki, and K. Santosh, ‘Improved U-Net architecture with VGG-16 for brain tumor segmentation’, Phys Eng Sci Med, vol. 44, no. 3, pp. 703–712, Sep. 2021, doi: 10.1007/s13246-021-01019-w
2021 doi
-
[22]
Praneeth, N
D. Praneeth, N. S. Kumar, and V. Nagaraju, ‘Enhanced Detection and Segmentation of Retinal Exudates in Diabetic Retinopathy using a Feature Pyramid Network with EfficientNet -B0 Encoder’, Indian J Sci Technol, vol. 17, no. 32, pp. 3377–3387, Aug. 2024, doi: 10.17485/IJST/v17i3...
2024 doi
-
[23]
H. K and V. Vetriselvi, ‘Deep Learning based Classification of Cervical Cancer using Transfer Learning’, in 2022 International Conference on Electronic Systems and Intelligent Computing (ICESIC), IEEE, Apr. 2022, pp. 134–139. doi: 10.1109/ICESIC53714.2022.9783560
2022
-
[24]
S. L. Tan, G. Selvachandran, W. Ding, R. Paramesran, and K. Kotecha, ‘Cervical cancer classification from pap smear images using deep convolutional neural network models’, Interdiscip Sci, vol. 16, no. 1, pp. 16 –38, Mar. 2024, doi: 10.1007/s12539-023-00589-5
2024 doi
-
[25]
H. Zhu, Y. Wang, Z. Ma, and X. Li, ‘A Comparative study of swarm intelligence algorithms for UCAV path-planning problems’, Mathematics, vol. 9, no. 2, pp. 1–31, Jan. 2021, doi: 10.3390/math9020171
2021 doi
-
[26]
Sachdeva, A
A. Sachdeva, A. Dhar, and A. Agarwal, ‘A Novel Framework for Classification of MRI Images to Diagnose Brain Tumors using DenseNet 201’, in 2023 IEEE 11th Region 10 Humanitarian Technology Conference (R10-HTC), IEEE, Oct. 2023, pp. 428–432. doi: 10.1109/R10-HTC57504.2023.10461821
2023
-
[27]
Sharma and R
A. Sharma and R. Parvathi, ‘Enhancing Cervical Cancer Classification: Through a Hybrid Deep Learning Approach Integrating DenseNet201 and InceptionV3’, IEEE Access , vol. 13, pp. 9868 –9878, 2025, doi: 10.1109/ACCESS.2025.3527677
2025
-
[28]
J. C. Bansal, H. Sharma, S. S. Jadon, and M. Clerc, ‘Spider Monkey Optimization algorithm for numerical optimization’, Memet Comput, vol. 6, no. 1, pp. 31–47, Mar. 2014, doi: 10.1007/s12293-013-0128-0
2014 doi
-
[29]
‘Enhancing the Performance of an Intrusion Detection System Using Spider Monkey Optimization in IoT’, International Journal of Intelligent Engineering and Systems , vol. 14, no. 6, pp. 30 –39, Dec. 2021, doi: 10.22266/ijies2021.1231.04
2021
-
[30]
Kamalaveni, R
V. Kamalaveni, R. A. Rajalakshmi, and K. A. Narayanankutty, ‘Image denoising using variations of Perona -Malik model with different edge stopping functions’, Procedia Comput Sci , vol. 58, pp. 673 –682, 2015, doi: 10.1016/j.procs.2015.08.087
2015 doi
-
[31]
Kumari, A
D. Kumari, A. Sinha, S. Dutta, and P. Pranav, ‘Optimizing neural networks using spider monkey optimization algorithm for intrusion detection system’, Sci Rep, vol. 14, no. 1, p. 17196, Jul. 2024, doi: 10.1038/s41598-024-68342- 6
2024 doi
-
[32]
Khare et al., ‘SMO-DNN: Spider Monkey Optimization and Deep Neural Network Hybrid Classifier Model for Intrusion Detection’, Electronics (Basel), vol
N. Khare et al., ‘SMO-DNN: Spider Monkey Optimization and Deep Neural Network Hybrid Classifier Model for Intrusion Detection’, Electronics (Basel), vol. 9, no. 4, p. 692, Apr. 2020, doi: 10.3390/electronics9040692
2020 doi
-
[33]
M. E. Plissiti, P. Dimitrakopoulos, G. Sfikas, C. Nikou, O. Krikoni, and A. Charchanti, ‘Sipakmed: A New Dataset for Feature and Image Based Classification of Normal and Pathological Cervical Cells in Pap Smear Images’, in 2018 25th IEEE International Conference on Image Proce...
2018
-
[34]
Kiran, J
A. Kiran, J. V. N. Ramesh, I. S. Rahat, M. A. U. Khan, A. Hossain, and R. Uddin, ‘Advancing breast ultrasound diagnostics through hybrid deep learning models’, Comput Biol Med , vol. 180, p. 108962, Sep. 2024, doi: 10.1016/j.compbiomed.2024.108962
2024
-
[35]
Khozaimi, I
A. Khozaimi, I. Darti, S. Anam, and W. M. Kusumawinahyu, ‘Optimized Pap Smear Image Enhancement: Hybrid PMD Filter-CLAHE Using Spider Monkey Optimization’, Feb. 2025
2025
-
[36]
Hayati et al., ‘Impact of CLAHE -based image enhancement for diabetic retinopathy classification through deep learning’, in Procedia Computer Science, Elsevier B.V., 2022, pp
M. Hayati et al., ‘Impact of CLAHE -based image enhancement for diabetic retinopathy classification through deep learning’, in Procedia Computer Science, Elsevier B.V., 2022, pp. 57–66. doi: 10.1016/j.procs.2022.12.111
2022 doi
-
[37]
Khozaimi and W
A. Khozaimi and W. Firdaus Mahmudy, ‘New insight in cervical cancer diagnosis using convolution neural network architecture’, IAES International Journal of Artificial Intelligence (IJ -AI), vol. 13, no. 3, p. 3092, Sep. 2024, doi: 10.11591/ijai.v13.i3.pp3092-3100
2024 doi
-
[38]
Huang, Z
G. Huang, Z. Liu, L. Van Der Maaten, and K. Q. Weinberger, ‘Densely Connected Convolutional Networks’, in 2017 IEEE Conference on Computer Vision and Pattern Recognition (CVPR) , IEEE, Jul. 2017, pp. 2261 –2269. doi: 10.1109/CVPR.2017.243
2017 doi
-
[39]
Agrawal, D
A. Agrawal, D. Garg, R. Sethi, and A. K. Shrivastava, ‘Optimum redundancy allocation using spider monkey optimization’, Soft comput, vol. 27, no. 21, pp. 15595–15608, Nov. 2023, doi: 10.1007/s00500-023-08746-0
2023 doi
-
[41]
L. R. Dice, ‘Measures of the Amount of Ecologic Association Between Species’, Ecology, vol. 26, no. 3, pp. 297 – 302, Jul. 1945, doi: 10.2307/1932409
1945 doi
-
[42]
Zhang et al., ‘ME-Net: Multi-encoder net framework for brain tumor segmentation’, Int J Imaging Syst Technol, vol
W. Zhang et al., ‘ME-Net: Multi-encoder net framework for brain tumor segmentation’, Int J Imaging Syst Technol, vol. 31, no. 4, pp. 1834–1848, Dec. 2021, doi: 10.1002/ima.22571
2021 doi
-
[64]
The final layer converts the features into an output segmentation map
Each upsampling stage is followed by a 3 × 3 convolution with ReLU to refine the extracted features. The final layer converts the features into an output segmentation map. With this structure, U-Net is highly effective for medical image segmentation. Fig. 4 shows the U-Net arc...
Reviewed August 16, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.