Pith. sign in

REVIEW 5 major objections 4 minor 6 references

Diagnosis of diabetic retinopathy using machine learning & deep learning technique

T0 review · 5 major / 4 minor · reviewed 2026-08-12 · deepseek-v4-flash

Pith's one-line read A YOLOv8 detector that counts retinal lesions, followed by an SVM classifier, grades diabetic retinopathy severity with 84% accuracy.

desk verdict Sincere student project, not a research contribution: the 84% accuracy is unsupported and the pipeline is a standard combination of existing tools. read the letter →

arxiv 2411.16250 v1 pith:HD5HJBGS submitted 2024-11-25 cs.CV cs.AIcs.CY

classification cs.CVcs.AIcs.CY
keywords diabeticretinopathyfundusimagingYOLOv8objectdetectionsupportvectormachinelesionmedicalimageclassificationdeeplearning
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

The paper argues that diabetic retinopathy can be graded automatically from retinal fundus images with a two-stage pipeline: first, the YOLOv8 object-detection model locates and counts characteristic lesions (microaneurysms, hemorrhages, exudates, cotton-wool spots), then a support-vector-machine classifier converts those counts into a severity grade from 0 (no disease) to 4 (proliferative). The authors report 84% accuracy, 81% F1 score, and 82% precision for the SVM stage, and 78% accuracy for the lesion-detection stage. Their motivation is that early detection prevents vision loss, and an automated method could aid triage in settings without immediate access to eye specialists. The authors themselves note that only online images were used and that clinical testing has not yet been performed.

What carries the argument

The central mechanism is the lesion-count feature vector. YOLOv8, a real-time object-detection network trained on manually drawn bounding boxes around lesions, converts each fundus image into counts of lesion types. Those counts are then scaled and fed to an SVM, whose separating hyperplane assigns one of the five DR severity grades. The machinery transforms high-dimensional image data into a compact, interpretable numerical summary that a classical classifier can separate.

What would settle it

Run the trained YOLO+SVM pipeline on an independent, expertly labeled fundus-image test set with verified severity grades and compare predicted grades to ground truth; if accuracy falls substantially below 84%, or if the detector's lesion counts do not correlate with severity, the reported performance was an artifact of the training annotations or data split.

Watch

Extended reading notes

Core claim

The central claim is that fundus images can be reduced to a small numerical summary—counts of each lesion type—which is enough for a classical classifier to assign diabetic retinopathy severity. In the authors' own words, YOLOv8 locates regions of interest such as the optic disc, optic cup, and lesions, and then SVM classifies these into DR stages based on the presence or absence of pathological signs. Their reported numbers are a training score of 91%, testing score of 84%, accuracy 84%, F1 81%, and precision 82% for the SVM stage, with YOLO achieving 78% accuracy, 74% F1, and 72% precision. The authors conclude that this method can be applied for retinal fundus disease triage, especially in remote areas.

Load-bearing premise

The pipeline's performance rests on the assumption that the manually drawn lesion boxes used to train the detector are accurate and that the public dataset's severity labels are correct; the paper itself states that the dataset contains many poor-quality, incorrectly labelled images, and no cleaning or annotation-validation step is described.

Editorial extensions

If this is right

  • If the 84% accuracy holds on independently cleaned data, the pipeline could serve as a first-pass triage tool in primary-care and telemedicine settings, flagging images that need specialist review.
  • The two-stage design means large end-to-end severity-labeled datasets are not required; only lesion bounding boxes and count-based labels are needed for training.
  • The SVM's decisions are tied to named lesion types, so a clinician could see which pathological signs drove the predicted grade.
  • Because each image is reduced to a short vector of counts, the method is computationally light enough to run on modest hardware, which matters for remote clinics.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • The reported 84% accuracy comes from a test split of the same public dataset used for training, which the paper admits contains poor-quality and incorrectly labelled images; real-world generalization to expertly graded fundus images is likely lower.
  • A natural extension is to test the same lesion-count vector with other classifiers, such as random forests or gradient boosting, which might improve the grading stage without retraining the detector.
  • The detector's 78% lesion accuracy implies some lesions are missed; severity grades relying on lesion counts may be less reliable for mild DR, where a single missed microaneurysm can change the grade.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

5 major / 4 minor

Summary. The manuscript describes a two-stage pipeline for grading diabetic retinopathy (DR) from fundus images: a custom YOLOv8 object detector is trained on bounding-box annotations (made with makesense.ai) to locate lesions, the detected lesions are counted per image to form a numeric feature vector, and a support vector machine (SVM) is trained on those features to predict DR severity on a five-class scale. The authors report 84% test accuracy, 82% precision, and 81% F1 for the SVM, and 78% accuracy, 72% precision, and 74% F1 for the YOLO detector. The paper includes a GUI for image input and prediction, but the experimental description omits dataset size, class distribution, training hyperparameters, validation protocol, leakage prevention, and comparisons with prior work. The conclusion cautiously notes that clinical testing has not yet been performed.

Significance. If the 84% accuracy figure were rigorously established, the proposed integration of YOLOv8 lesion counting with SVM severity classification could be a useful low-cost triage tool, particularly for remote settings. The high-level pipeline is reasonable: lesion types and counts are clinically meaningful features for DR grading, and the GUI demonstrates a practical deployment path. However, the paper contributes no reproducible code, no dataset, no experimental protocol, no statistical uncertainty quantification, and no comparison against existing DR grading methods. The claimed novelty is not substantiated; the contribution is an integration of existing components whose performance is currently supported only by an undocumented empirical number. As a result, the significance is contingent on experimental details that are not present in the manuscript.

major comments (5)
  1. [Dataset Description] The dataset is not described with the numbers needed to interpret the result: no total image count, no number of subjects, no per-class distribution across the five DR grades, and no train/validation/test partition sizes are given. The manuscript itself states that 'Kaggle contains many images with poor quality and incorrect labelling,' yet no cleaning, relabeling, exclusion, or quality-control protocol is described. Without this information, the reported 84% test accuracy cannot be interpreted as a statement about generalization to unseen fundus images.
  2. [Training Work-Flow] The number of images annotated with makesense.ai and used to train YOLOv8 is not stated, nor are the YOLOv8 hyperparameters, number of epochs, input resolution, augmentation scheme, or the set of lesion classes annotated. The procedure then applies the custom detector to 'the whole diabetic retinopathy image dataset' to generate the feature matrix, and the SVM is trained on an 80/20 split of that matrix. If any image used for SVM testing was also seen by YOLO during training or validation, the derived lesion counts could reflect information leakage rather than independent generalization; no mechanism to prevent such overlap is described.
  3. [Result] The Results section reports only four aggregate scalar metrics for the SVM (91% training accuracy, 84% testing accuracy, 81% F1, 82% precision) and three for YOLO (78% accuracy, 74% F1, 72% precision). No confusion matrix, per-class precision/recall, confidence intervals, cross-validation, or external test set is reported. DR grading is typically class-imbalanced, so aggregate accuracy alone can be misleading; the central claim that the model 'can correctly predict the grade of diabetic retinopathy up to 84% of the testing images' requires per-class evidence and an explicit statement of how the test set was constructed.
  4. [Method And Materials / Proposed System] The paper repeatedly calls the method 'novel,' but it provides no comparison with any baseline or prior DR grading system, and the literature survey does not report baseline accuracies from the cited papers. A novelty claim without comparative evaluation is an overclaim; the manuscript needs at least a comparison with a simple classifier on the same features, a standard CNN classifier, and published benchmark results on the same dataset.
  5. [Training Work-Flow] The SVM description is not reproducible: the text says 'we train our SVM model on the training data by finding the optimal hyperparameters,' but it never specifies the kernel type, regularization parameter C, gamma, feature scaling method, feature selection criterion, or dimensionality reduction technique. Similarly, the claimed YOLO metrics are given without the evaluation protocol used to obtain them. These omissions are load-bearing because the 84% accuracy figure cannot be verified or reproduced.
minor comments (4)
  1. [Conclusion] The sentence 'We have test it on our dataset taken from online website yet the clinical test is to be performed' is duplicated verbatim in the conclusion and should be corrected and reduced to one statement.
  2. [Literature Survey] The literature survey contains several incomplete or garbled sentences, for example 'r results, the problem was that it was quite slow' and the reference citations occasionally run into the text; the section needs careful editing and full bibliographic entries for all cited works.
  3. [Throughout] There are minor language and typographical errors, including 'upto 84%' in the Results, 'lessions' in the literature survey, 'loose' for 'lose' in the lesion descriptions, and inconsistent figure references (Figure 10 appears before its caption context). A thorough proofread is needed.
  4. [Dataset Description] The abstract and introduction state the method can be applied 'for retinal fundus disease triage, especially in remote areas,' but no runtime, hardware, or deployment analysis is provided; this claim should either be supported or softened.

Circularity Check

0 steps flagged · score 1.0 of 10

No substantive circularity: the 84% accuracy is an empirical result from a supervised split, not a derivation that reduces to its inputs; the main risk is unreported data leakage, which is a validity concern rather than circularity.

full rationale

The paper's central claim is an SVM testing accuracy (84%) obtained from an 80/20 train/test split of a numerical dataset whose features are lesion counts produced by a custom YOLOv8 detector. This is an empirical measurement, not a self-referential derivation: the SVM is not defined in terms of the reported accuracy, and no fitted parameter is renamed as a prediction. There are no load-bearing self-citations, no imported uniqueness theorems, and no ansatz smuggled in via citation. The only nearby concern is methodological leakage: the text says 'we apply object detection on the whole diabetic retinopathy image dataset' after YOLO training, which could mean SVM test images had their features generated by a detector that may have seen those same images during annotation-based training. However, the paper does not specify the overlap, so one cannot exhibit a concrete reduction of the 84% figure to a training input. Under the hard rule requiring quotation and explicit reduction, this is a reproducibility/validity weakness, not demonstrable circularity. The 'novel method' phrasing is an overclaim, not circular reasoning. Hence the appropriate score is 1, reflecting a minor concern about the self-containedness of the test procedure rather than any definitional circularity.

Assumptions & free parameters 2 free parameters · 2 assumptions · 0 invented entities

The central claim depends on the sufficiency of lesion counts derived from YOLO detections as an input representation, and on the reliability of the Kaggle data. Neither is justified in the paper. Hyperparameters are unreported, so the exact fitted configuration is unknown.

free parameters (2)
  • SVM regularization and kernel hyperparameters = not reported
    The paper does not specify the SVM kernel, C value, or gamma, yet the reported accuracy presumably depends on these choices.
  • YOLOv8 training hyperparameters = not reported
    Batch size, learning rate, number of epochs, and image size are not provided, although they affect lesion detection quality.
assumptions (2)
  • domain assumption Lesion type and count are sufficient features to grade DR severity.
    The entire pipeline summarizes each fundus image into lesion counts per type and feeds these to the SVM. No clinical or statistical support is given for this representation.
  • domain assumption Kaggle fundus images, despite acknowledged poor quality and incorrect labels, are adequate for training and testing the models.
    The dataset description states 'Kaggle contains many images with poor quality and incorrect labelling' but the study uses it without describing a cleaning protocol.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Diagnosis of diabetic retinopathy using machine learning & deep learning technique." pith.science (2026). https://pith.science/paper/HD5HJBGS

@misc{pith2026241116250,
  author       = {Pith},
  title        = {Pith review of: Diagnosis of diabetic retinopathy using machine learning & deep learning technique},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/HD5HJBGS}},
  note         = {Machine review of arXiv:2411.16250}
}
read the original abstract

Fundus images are widely used for diagnosing various eye diseases, such as diabetic retinopathy, glaucoma, and age-related macular degeneration. However, manual analysis of fundus images is time-consuming and prone to errors. In this report, we propose a novel method for fundus detection using object detection and machine learning classification techniques. We use a YOLO_V8 to perform object detection on fundus images and locate the regions of interest (ROIs) such as optic disc, optic cup and lesions. We then use machine learning SVM classification algorithms to classify the ROIs into different DR stages based on the presence or absence of pathological signs such as exudates, microaneurysms, and haemorrhages etc. Our method achieves 84% accuracy and efficiency for fundus detection and can be applied for retinal fundus disease triage, especially in remote areas around the world.

Figures

Figures reproduced from arXiv: 2411.16250 by the authors.

Figure 1
Figure 1. Normal & DR Vision Eye Example Why is it important to detect DR? It is important to detect diabetic retinopathy early because early detection and treatment can prevent vision loss and even reverse the damage caused by the condition. Regular eye exams are crucial for catching diabetic retinopathy early, before it progresses to a more advanced stage. Even if you think your diabetes is well controlled, it’s still impor… view at source ↗
Figure 2
Figure 2. Type Lesion in DR Eye [PITH_FULL_IMAGE:figures/full_fig_p001_2.png] view at source ↗
Figure 3
Figure 3. Normal VS Diabetic Retinopathy Eye 5. Intraretinal Microvascular Anomalies (IRMA) Occurring in the mid to late stages of non- proliferative retinopathy, these appear as spidery abnormal vessels that appear within the retina. They are typically contorted in appearance with sharp corners, often crossing over themselves and they normally do not cross over major veins or arteries. It is thought that IRMA physically repr… view at source ↗
Figures from the paper (3 more)
Figure 5
Figure 5. Figure 5: SVM Classification Diagram Type of SVM 1. Linear SVM: Linear SVM is used for linearly separable data, which means if a dataset can be classified into two classes by using a single straight line, then such data is termed as linearly separable data, and classifier is use…
Figure 8
Figure 8. Figure 8: YOLO V8 Process YOLOv8 Architecture: A Deep Dive YOLOv8 does not yet have a published paper, so we lack direct insight into the direct research methodology and ablation studies done during its creation. With that said, we analysed the repository and information availab…
Figure 11
Figure 11. Figure 11: GUI Conclusion Using the object detection model YOLO and machine learning classification algorithms, we have achieved promising results in diagnosing diabetic retinopathy with 84% accuracy. This is vital for preventing vision loss in diabetic patients, as timely diagn…

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

6 extracted references · 6 canonical work pages

  1. [5]

    “Multiclass SVM -Based Automated Diagnosis of Diabetic Retinopathy,

    A. P. a. D. Jeyakumari, ““Multiclass SVM -Based Automated Diagnosis of Diabetic Retinopathy,” in Int. Conf. on Comm.& Signal Proc., India, April 3 to 5 2013

  2. [1]

    A systematic literature review of predicting diabetic retinopathy, nephropathy and neuropathy in patients with type 1 diabetes using machine learning

    L. W. S. S. S. Qingqing Xu1, “A systematic literature review of predicting diabetic retinopathy, nephropathy and neuropathy in patients with type 1 diabetes using machine learning”

  3. [2]

    Segmentation of retinal blood vessels using artificial neural networks for early detection of diabetic retinopathy,

    K. S. Mann and S. Kaur, “Segmentation of retinal blood vessels using artificial neural networks for early detection of diabetic retinopathy,” 27 january 2017. [Online]. Available: https://pubs.aip.org/aip/acp/article/1836/1/020026/586205/Segmentation- of-retinal-blood-vessels- using

  4. [3]

    Retinal blood vessel segmentation employing image processing and data mining techniques for computerized retinal image analysis. Retinal blood vessel segmentation in fundus images,

    L. B. S. R. GeethaRamani, “Retinal blood vessel segmentation employing image processing and data mining techniques for computerized retinal image analysis. Retinal blood vessel segmentation in fundus images,” Jour. of Biocybernetics & Biomed.Engg, 2016

  5. [4]

    Automated detection of,

    J. G. N. L. H. L.-A. A. S. E. M. Larsen, “Automated detection of,” Investigative Ophthalmology &d Vision Sci, vol. 44, 2003

  6. [6]

    Model based method for retinal blood vessel detection,

    F. V. H. L. A. V. K.A. Vermeer, “Model based method for retinal blood vessel detection,” Comps. in Bio.& Med, vol. 34, p. No.3, 2004

Pith tools

Reviewed August 12, 2026 · model on record in the stance chip above.