REVIEW 5 major objections 5 minor 1 cited by
A Multi-Layered Large Language Model Framework for Disease Prediction
T0 review · 5 major / 5 minor · reviewed 2026-08-09 · deepseek-v4-flash
Pith's one-line read The paper claims that preprocessing Arabic health posts with LLAMA3-based named entity recognition, then fine-tuning CAMeL-BERT with LoRA, achieves 83% accuracy on disease type and 69% on severity.
desk verdict Useful empirical application with a plausible but unproven NER gain; evaluation lacks the split/variance details needed to trust the headline numbers. 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 key mechanism is a preprocessing pipeline in which LLAMA3 performs three operations on the raw Arabic posts: text refinement, text summarization, and named entity recognition (NER), the last of which extracts medical entities such as symptoms, conditions, and drugs. Each output is concatenated with the original text to create an augmented dataset, which is then used to fine-tune Arabic BERT models with LoRA (low-rank adaptation) under settings of dropout 5%, scale 8, rank 16, batch size 4, and 25 epochs. NER is the variant that carries the improvement, lifting CAMeL-BERT's type accuracy from 79% to 83% and severity from 63% to 69%.
What would settle it
A reproduction in which the test set is held out and unprocessed until after labels are assigned, and the NER augmentation is applied only to training features, would settle whether the 83% figure reflects leakage. A simpler variant: train the model on NER-augmented text but replace the NER output with random entities; if accuracy stays high, the entities themselves are not load-bearing.
Extended reading notes
Core claim
The central claim is that NER-augmented preprocessing with LLAMA3 combined with LoRA fine-tuning of CAMeL-BERT achieves the best accuracy, 83% for disease type and 69% for severity, on Arabic social telehealth posts. The paper states this result in the abstract and supports it with tables comparing normal, refined, summarized, and NER-enhanced text across three Arabic BERT variants. It further claims that non-fine-tuned models perform poorly (13%–20% type, 40%–49% severity), establishing that fine-tuning is required to exploit the benefits of preprocessing.
Load-bearing premise
The observed improvement from NER augmentation is causal and not an artifact of data leakage or random variation: the LLAMA3 preprocessing must not expose label information, and the evaluation split must be independent of the preprocessing step.
Editorial extensions
If this is right
- NER-augmented preprocessing is the most effective of the three tested techniques: it raises CAMeL-BERT type accuracy from 79% to 83% and severity accuracy from 63% to 69%.
- Text refinement gives a smaller gain (type 79% to 81%, severity nearly unchanged), and summarization gives little or no gain, so the choice of preprocessing matters more than the choice of Arabic BERT model.
- Fine-tuning is essential: without it, even NER-enhanced text yields only 15%–20% type accuracy and 40%–42% severity accuracy, so the reported gains come from the combination of preprocessing and fine-tuning.
- The same framework—LLM-based preprocessing followed by parameter-efficient fine-tuning—could be extended to other languages and other clinical classification tasks.
Reading between the lines
- If the NER gain is causal, it may come from canonicalizing symptom mentions, which effectively reduces the input space for the classifier; a cheaper substitute might be entity masking or normalization without full LLAMA3 preprocessing.
- The reported gap between fine-tuned and non-fine-tuned models is unusually large; a replication with random train/test splits and repeated runs would help rule out an artifact of a small or unrepresentative dataset.
- The framework depends on a single LLAMA3 pass for all preprocessing; testing whether a smaller or distilled model yields the same gain would clarify whether the benefit is tied to the specific LLM or to the entity-extraction supervision itself.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes a multi-layered framework for disease type and severity classification from Arabic social telehealth posts. The pipeline uses LLAMA3 for three preprocessing operations (text refinement, summarization, and named entity recognition), augments the original text with these outputs, and then fine-tunes three Arabic BERT variants (CAMeL-BERT, AraBERT, and Asafaya-BERT) with LoRA. The central empirical claim is that NER-augmented text combined with CAMeL-BERT fine-tuning yields the best results, with 83% type classification accuracy and 69% severity assessment accuracy, and that non-fine-tuned models perform much worse (13%-20% type, 40%-49% severity). The paper presents four evaluation tables and concludes that NER is the most effective preprocessing method.
Significance. If the result is robust, the framework offers a practical recipe for combining generative LLM preprocessing with efficient fine-tuning of smaller Arabic models, which is a plausible and potentially useful direction for social telehealth applications. The paper's strength is that the comparison spans three models and four preprocessing conditions, and the NER effect appears directionally consistent across model variants. However, the empirical support is currently too thin for the central claim: the manuscript does not report the dataset size, the train/test split, the number of runs, or any measure of variance, and the best configuration is selected post hoc. The NER gain of 4-6 percentage points could easily be within sampling noise on a small test set. With missing protocol details and no statistical grounding, the paper's main contribution is not yet established.
major comments (5)
- [Section 4.5 and Tables 2-3] The central claim that NER augmentation improves accuracy from 79% to 83% (Type) and from 63% to 69% (Severity) is not statistically supported. The paper never states the dataset size, the train/test split, or the number of independent runs, and Tables 2-3 report only single accuracy values without confidence intervals or significance tests. Section 4.5 says evaluation uses 'accuracy and balanced accuracy,' yet only raw accuracy is reported. Given that the same tables show accuracy ranges of 62%-83% across models and conditions, a 4-6 point difference is within the range one would expect from test-set sampling noise on a small corpus. Please report the split, class counts, run-to-run variance, and the promised balanced accuracy.
- [Section 4.4] The description of the loss function is a confound for the NER comparison. The paper states that 'both balanced and accuracy-weighted custom loss functions have been used' but never maps each loss function to a specific model or preprocessing condition. If different loss functions were used for the NER condition than for the baseline condition, the reported improvement could be due to the loss function rather than to NER augmentation. The authors must specify the loss function used in every reported row or demonstrate that the NER advantage persists under a single fixed loss.
- [Section 5.5] The best configuration is selected after comparing three models and four preprocessing methods, which is a post hoc selection. With no held-out validation set or correction for multiple comparisons, the 83%/69% result is an optimistic estimate of the framework's performance. The authors should either pre-register the comparison or validate the selected configuration on a separate test set that was not used during model selection.
- [Section 3] The dataset description is too vague to support reproducibility. Section 3 says the data was 'collected from user-generated posts on an online social platform' but does not give the platform, the collection period, the number of posts, the class distribution, the annotation guidelines, or the medical adviser's role. Without these details, and without a data availability statement or link, the empirical results cannot be verified or compared against future work.
- [Table 1] Table 1 is not usable as presented because the Arabic text is rendered as a corrupted character sequence (e.g., ' 65 AëY J...'). The table is meant to illustrate the output of the preprocessing steps, but the garbled rendering prevents the reader from checking the qualitative difference between text, refined, summarized, and NER outputs. Please re-render the table with a proper font/encoding.
minor comments (5)
- [Abstract and Section 1] The abstract and introduction mention GPT-3.5 Turbo as one of the LLMs, but the experiments use LLAMA3 for preprocessing and BERT variants for classification; GPT-3.5 Turbo is not used anywhere in the evaluation. Please align the abstract with the actual experimental scope.
- [Section 4.2] The phrase 'deleting unmet requirements such as irrelevant information' is unclear; the intended meaning appears to be removing irrelevant or uninformative content. Please rephrase.
- [Section 4.3] There is a typographical error in 'to assess the the symptoms' and another in Section 5.4, 'summariza- rization.' Please proofread the manuscript.
- [Figures 2 and 3] Figures 2 and 3 show distributions but do not include axis labels, numeric counts, or a legend, so the reader cannot determine the number of samples per condition type or severity level. Please add this information.
- [References] Reference [24] is cited for many heterogeneous claims and appears to be a catch-all source; some references also have formatting issues (e.g., [4] 'IEEE Access1', [5] missing venue details). Please standardize the bibliography.
Circularity Check
No circular reasoning: the reported NER gain is an empirical comparison, not a derivation from fitted inputs or self-cited constraints.
full rationale
The paper's central claim is an empirical evaluation result: fine-tuned CAMeL-BERT with LLAMA3 NER-augmented text attains 83% type and 69% severity accuracy, presented in Tables 2-4 against other preprocessing conditions. Nothing in the reported method defines the outcome in terms of the inputs: the preprocessing conditions (refined, summarized, NER) are distinct transformations of the same raw text, and the fine-tuning procedure is described uniformly across conditions. No equations are used, and no parameter is fitted to the evaluation labels and then renamed a prediction; the accuracy figures are reported as measured outcomes, not as consequences of construction. The authors do cite several of their own prior works ([1,2,3,13,14,15,16,26]), but those citations support general background statements about LLM-based preprocessing and related systems and are not invoked as the justification for the claimed improvement. The central result is self-contained against the described dataset and result tables. Concerns about the missing dataset size, train/test split, or variance are experimental-validity concerns, not circularity. Therefore the appropriate score is 0.
Assumptions & free parameters
free parameters (6)
- LoRA rank =
16
- LoRA scaling factor (alpha) =
8
- Dropout rate =
5%
- Batch size =
4
- Training epochs =
25
- Loss function weights =
balanced and accuracy-weighted (exact weights not specified)
assumptions (4)
- domain assumption LLAMA3 preprocessing outputs are faithful to the original medical posts, with no hallucinated symptoms or lost critical information.
- domain assumption The annotated dataset is representative and correctly labeled under medical supervision.
- domain assumption Accuracy is an appropriate evaluation metric despite class imbalance.
- standard math Standard fine-tuning assumptions for transformer models with LoRA hold.
Cite this review
Pith. "Pith review of A Multi-Layered Large Language Model Framework for Disease Prediction." pith.science (2026). https://pith.science/paper/X6GKCC75
@misc{pith2026250200063,
author = {Pith},
title = {Pith review of: A Multi-Layered Large Language Model Framework for Disease Prediction},
year = {2026},
howpublished = {\url{https://pith.science/paper/X6GKCC75}},
note = {Machine review of arXiv:2502.00063}
}
read the original abstract
Social telehealth has revolutionized healthcare by enabling patients to share symptoms and receive medical consultations remotely. Users frequently post symptoms on social media and online health platforms, generating a vast repository of medical data that can be leveraged for disease classification and symptom severity assessment. Large language models (LLMs), such as LLAMA3, GPT-3.5 Turbo, and BERT, process complex medical data to enhance disease classification. This study explores three Arabic medical text preprocessing techniques: text summarization, text refinement, and Named Entity Recognition (NER). Evaluating CAMeL-BERT, AraBERT, and Asafaya-BERT with LoRA, the best performance was achieved using CAMeL-BERT with NER-augmented text (83% type classification, 69% severity assessment). Non-fine-tuned models performed poorly (13%-20% type classification, 40%-49% severity assessment). Integrating LLMs into social telehealth systems enhances diagnostic accuracy and treatment outcomes.
Figures
Forward citations
Cited by 1 Pith paper
-
An Ensemble Classification Approach in A Multi-Layered Large Language Model Framework for Disease Prediction
A voting ensemble of fine-tuned Arabic BERT models, fed with LLAMA3-cleaned versions of patient posts, reaches 80.56% accuracy for Arabic disease-type prediction.
Reference graph
Works this paper leans on
-
[1]
In: 2024 International Mobile, Intelligent, and Ubiquitous Computing Conference (MIUCC)
Abdellaif, O.H., Hassan, A.N., Hamdi, A.: Erpa: Efficient rpa model integrating ocr and llms for intelligent document processing. In: 2024 International Mobile, Intelligent, and Ubiquitous Computing Conference (MIUCC). pp. 295–300. IEEE (2024)
work page 2024
-
[2]
arXiv preprint arXiv:2412.18063 (2024)
Abdellaif, O.H., Nader, A., Hamdi, A.: Lmrpa: Large language model-driven effi- cient robotic process automation for ocr. arXiv preprint arXiv:2412.18063 (2024)
arXiv 2024
-
[3]
arXiv preprint arXiv:2412.17965 (2024)
Abdellatif, O., Ayman, A., Hamdi, A.: Lmv-rpa: Large model voting-based robotic process automation. arXiv preprint arXiv:2412.17965 (2024)
arXiv 2024
-
[4]
Alahmari, S.S., Hall, L.O., Mouton, P.R., Goldgof, D.B.: Repeatability of fine- tuning large language models illustrated using qlora. IEEE Access1 (2024)
work page 2024
-
[5]
deBruyn,M.,Lotfi,E.,Buhmann,J.,Daelemans,W.:Bartforknowledgegrounded conversations. In: CEUR Workshop Proceedings. vol. 2666 (2020)
work page 2020
-
[6]
In: Proceedings of the Workshop on Automatic Ex- traction of Socio-political Events from News 2020
Büyüköz, B., Hürriyetoğlu, A., Özgür, A.: Analyzing elmo and distilbert on socio- political news classification. In: Proceedings of the Workshop on Automatic Ex- traction of Socio-political Events from News 2020. pp. 9–18. USA (May 2020)
work page 2020
-
[7]
Casola, S., Lavelli, A.: Fbk @ smm4h 2020: Roberta for detecting medications on twitter. pp. 101–103 (2020)
work page 2020
-
[8]
Jour- nal of Medical Internet Research23(5) (2020)
Chen, J., Wang, Y.: Social media use for health purposes: Systematic review. Jour- nal of Medical Internet Research23(5) (2020)
work page 2020
Show all 27 references
-
[9]
Annual Review of Biomedical Data Science 3(1), 433–458 (2020)
Correia, R.B., Wood, I.B., Bollen, J., Rocha, L.M.: Mining social media data for biomedical signals and health-related behavior. Annual Review of Biomedical Data Science 3(1), 433–458 (2020)
2020
-
[10]
Das, K.A., Baruah, A., Barbhuiya, F.A., Dey, K.: Ensemble of electra for profiling fake news spreaders. vol. September, pp. 22–25 (2020)
2020
-
[11]
Journal of the American Medical Informatics Association (2024) 10 M
Guo,Y.,Ovadje,A.,Al-Garadi,M.A.,Sarker,A.:Evaluatinglargelanguagemodels for health-related text classification tasks with public social media data. Journal of the American Medical Informatics Association (2024) 10 M. Mohamed et al
2024
-
[12]
In: Proceedings of the 2024 Joint International Conference on Computational Linguistics, Language Resources and Evaluation (LREC-COLING 2024)
Hamad, O., Shaban, K., Hamdi, A.: Asem: Enhancing empathy in chatbot through attention-based sentiment and emotion modeling. In: Proceedings of the 2024 Joint International Conference on Computational Linguistics, Language Resources and Evaluation (LREC-COLING 2024). pp. 1588–...
2024
-
[13]
arXiv preprint arXiv:2412.15254 (2024)
Hamdi, A., Kassab, H., Bahaa, M., Mohamed, M.: Riro: Reshaping inputs, refining outputs unlocking the potential of large language models in data-scarce contexts. arXiv preprint arXiv:2412.15254 (2024)
2024 arXiv
-
[14]
arXiv preprint arXiv:2412.13765 (2024)
Hamdi, A., Mazrou, A.A., Shaltout, M.: Llm-sem: A sentiment-based stu- dent engagement metric using llms for e-learning platforms. arXiv preprint arXiv:2412.13765 (2024)
2024 arXiv
-
[15]
arXiv e-prints pp
Hosam Abdellaif, O., Nader, A., Hamdi, A.: Lmrpa: Large language model-driven efficient robotic process automation for ocr. arXiv e-prints pp. arXiv–2412 (2024)
2024
-
[16]
Information10(4), 150 (Apr 2019)
Kowsari, K., Meimandi, K.J., Heidarysafa, M., Mendu, S., Barnes, L., Brown, D.: Text classification algorithms: A survey. Information10(4), 150 (Apr 2019)
2019
-
[17]
4–9 (2021)
Li, B., Rudzicz, F.: Torontocl at cmcl 2021 shared task: Roberta with multi-stage fine-tuning for eye-tracking prediction pp. 4–9 (2021)
2021
-
[18]
Magge, A., et al.: Overview of the sixth social media mining for health applications (smm4h) shared tasks at naacl 2021 (Jan 2021)
2021
-
[19]
In: CEUR Workshop Proceedings
Mustar, A., Lamprier, S., Piwowarski, B.: Using bert and bart for query suggestion. In: CEUR Workshop Proceedings. vol. 2621 (2020)
2020
-
[20]
In: 2024 AIAA DATC/IEEE 43rd Digital Avionics Systems Conference (DASC)
Niraula, N., Ayhan, S., Chidambaram, B., Whyatt, D.: Multi-label classification with generative large language models. In: 2024 AIAA DATC/IEEE 43rd Digital Avionics Systems Conference (DASC). vol. 1 (2024)
2024
-
[21]
Ou, X., Li, H.: Ynu @ dravidian-codemix-fire2020: Xlm-roberta for multi-language sentiment analysis. pp. 4–9 (2020)
2020
-
[22]
In: EVALITA Evaluation of NLP and Speech Tools for Italian
Ou, X., Li, H.: Ynu_oxz @ haspeede 2 and ami: Xlm-roberta with ordered neurons lstm for classification task at evalita 2020. In: EVALITA Evaluation of NLP and Speech Tools for Italian. vol. 2765, pp. 102–109 (2020)
2020
-
[23]
In: Pro- ceedings of the 16th Conference of the European Chapter of the Association for Computational Linguistics (EACL)
Popa, C., Rebedea, T.: Bart-tl: Weakly-supervised topic label generation. In: Pro- ceedings of the 16th Conference of the European Chapter of the Association for Computational Linguistics (EACL). pp. 1418–1425 (2021)
2021
-
[24]
Qasim, R., Bangyal, W.H., Alqarni, M.A., Almazroi, A.A.: A fine-tuned bert-based transfer learning approach for text classification (2022)
2022
-
[25]
Radivchev, V., Nikolov, A.: Nikolov-radivchev at semeval-2019 task 6: Offensive tweet classification with bert and ensembles. pp. 691–695 (2019)
2019
-
[26]
arXiv preprint arXiv:2412.11672 (2024)
Wassim, L., Mohamed, K., Hamdi, A.: Llm-daas: Llm-driven drone-as-a-service operations from text user requests. arXiv preprint arXiv:2412.11672 (2024)
2024 arXiv
-
[27]
In: Proceedings of the First Workshop on Speech and Language Technologies for Dravidian Languages
Zhao, Y., Tao, X.: Zyj123@dravidianlangtech-eacl2021: Offensive language identifi- cation based on xlm-roberta with dpcnn. In: Proceedings of the First Workshop on Speech and Language Technologies for Dravidian Languages. pp. 216–221. EACL, Parkville, Victoria (2021)
2021
Reviewed August 9, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.