Skip to main content

ORIGINAL RESEARCH article

Front. Neurol., 29 April 2024
Sec. Artificial Intelligence in Neurology
This article is part of the Research Topic Clinical Applications of Data-enabled Intelligence in Neurology View all 6 articles

An exploration on the machine-learning-based stroke prediction model

Shenshen ZhiShenshen Zhi1Xiefei HuXiefei Hu2Yan DingYan Ding3Huajian ChenHuajian Chen3Xun LiXun Li3Yang TaoYang Tao4Wei Li
Wei Li3*
  • 1Department of Blood Transfusion, Chongqing University Central Hospital, School of Medicine, Chongqing University, Chongqing, China
  • 2Medicine School of Chongqing University, Chongqing, China
  • 3Clinical Laboratory, Chongqing Emergency Medical Center, Chongqing University Central Hospital, School of Medicine, Chongqing University, Chongqing, China
  • 4Intensive Care Unit, Chongqing Emergency Medical Center, Chongqing University Central Hospital, School of Medicine, Chongqing University, Chongqing, China

Introduction: With the rapid development of artificial intelligence technology, machine learning algorithms have been widely applied at various stages of stroke diagnosis, treatment, and prognosis, demonstrating significant potential. A correlation between stroke and cytokine levels in the human body has recently been reported. Our study aimed to establish machine-learning models based on cytokine features to enhance the decision-making capabilities of clinical physicians.

Methods: This study recruited 2346 stroke patients and 2128 healthy control subjects from Chongqing University Central Hospital. A predictive model was established through clinical experiments and collection of clinical laboratory tests and demographic variables at admission. Three classification algorithms, namely Random Forest, Gradient Boosting, and Support Vector Machine, were employed. The models were evaluated using methods such as ROC curves, AUC values, and calibration curves.

Results: Through univariate feature selection, we selected 14 features and constructed three machine-learning models: Support Vector Machine (SVM), Random Forest (RF), and Gradient Boosting Machine (GBM). Our results indicated that in the training set, the RF model outperformed the GBM and SVM models in terms of both the AUC value and sensitivity. We ranked the features using the RF algorithm, and the results showed that IL-6, IL-5, IL-10, and IL-2 had high importance scores and ranked at the top. In the test set, the stroke model demonstrated a good generalization ability, as evidenced by the ROC curve, confusion matrix, and calibration curve, confirming its reliability as a predictive model for stroke.

Discussion: We focused on utilizing cytokines as features to establish stroke prediction models. Analyses of the ROC curve, confusion matrix, and calibration curve of the test set demonstrated that our models exhibited a strong generalization ability, which could be applied in stroke prediction.

1 Introduction

Stroke is a common and severe clinical disease with a high incidence among the elderly (1). Stroke is classified into two main types: ischemic and hemorrhagic. Ischemic stroke is predominantly caused by cerebral vascular obstruction with atherosclerosis as its pathological basis, leading to local cerebral tissue ischemia and hypoxic necrosis. Ischemic stroke is a disease with high mortality, disability, and recurrence rates, which can result in irreversible damage to the central nervous system (2) in contrast, hemorrhagic stroke has a lower incidence and its pathological basis is mainly brain vascular injury and hypertension (3). Studies have demonstrated that cytokines are key factors in stroke development. During the course of stroke, certain cytokines are released into brain tissue, leading to neuronal damage and neuroinflammatory responses (4, 5). In the case of ischemic stroke, a large number of cytokines, such as tumor necrosis factor-alpha (TNF-α) and interleukin-1 (IL-1), are released by cells surrounding the ischemic area. To some extent, these cytokines exacerbate the severity of ischemic neuronal injury (6, 7). Furthermore, cytokines may also promote neuronal apoptosis and glial cell proliferation. In the event of cerebral hemorrhage, red blood cell breakdown products activate the immune cells, resulting in the release of various cytokines. These cytokines may also contribute to the disruption of the blood–brain barrier and the deposition of collagen in tissues, further intensifying the extent and scope of bleeding and ultimately leading to neurofunctional impairments (8, 9). Studies have shown that there is a high correlation between the concentration of cytokines in the blood of stroke patients and the prognosis and clinical manifestations of stroke. Elevated levels of cytokines, including IL-1β, TNF-α, and IL-6, in the bloodstream of stroke patients imply a higher likelihood of deterioration of their condition (10). These findings suggest a significant correlation between cytokine levels and stroke risk. Thus, the development of a stroke prediction model based on cytokines holds promise for improving disease prognosis.

Machine learning is one of the main tools in data mining and its application in the field of medicine is rapidly expanding. Specifically, in the area of stroke (11), commercially available machine learning algorithms have been widely applied in clinical practice. They can establish risk models by learning from existing medical test or survey data of patients. These models are used for disease prediction (12, 13), diagnosis of disease severity (14), and evaluation of disease prognosis (15, 16). Our study explored the value of machine-learning methods for stroke prediction. We collected clinical factors such as age, sex, and cytokine levels from 2,346 stroke patients to build three machine learning models: Support Vector Machine (SVM), Random Forest (RF), and Gradient Boosting Machine (GBM). The predictive performance of these models was compared and evaluated. Based on this exploration, this study provides new methods and tools for stroke diagnosis and prediction. By combining machine learning algorithms with cytokine features, it can improve the accuracy of stroke diagnosis and predictive capabilities for stroke patients, providing decision support for clinical physicians. This is of great significance for timely intervention and treatment of stroke patients, helping to improve patient treatment outcomes and prognosis.

2 Materials and methods

2.1 General clinical data

The study recruited a total of 2,346 stroke patients from the Chongqing University Central Hospital between July 16, 2020, and July 7, 2021. The inclusion criteria were as follows: A. All patients were diagnosed according to the criteria established by the Fourth National Conference on Cerebrovascular Diseases; B. Patients had not received any anticoagulation or antiplatelet therapy or related treatments within the past 2 weeks; C. Patients were 18 years of age or older; D. Patients or their legal guardians had signed informed consent forms. The exclusion criteria were: A. history of cerebral infarction caused by fat embolism or tumors; B. Presence of renal or hepatic dysfunction or arterial inflammation; C. Pre-existing heart disease.

Clinical laboratory tests and demographic variables at admission were collected, including age, gender, IL-2, IL-6, IL-1β, IL-8, TNF-α, IL-5, IFN-α, IFN-γ, IL-17, IL-12P70, IL-4, and IL-10.

2.2 Healthy control subjects

From the health examination department of the same hospital, 2,128 healthy control subjects were selected and matched in terms of sex and age, with the following inclusion criteria: A. with regular annual check-ups; B. Without history of atherosclerosis or other cardiovascular or cerebrovascular diseases; C. Without other severe systemic diseases, such as endocrine disorders, autoimmune diseases, blood disorders, or cancer.

2.3 Establishment of the prediction models

We randomly divided the enrolled patients into two groups: a training set (70%) and a validation set (30%). Subsequently, we organized the collected data. In the case of missing values, the MICE package was used for the imputation. Our data were then normalized and features with excessively low variance, low correlation with the labels, or high intercorrelations were removed. In the training set, we conducted 10-fold cross-validation with a total of 10 iterations, harnessing the grid search to select optimal parameter combinations for the three classification algorithms: RF: the Random Forest, GBM: the Gradient Boosting, and SVM: the Support Vector Machine. After training and modeling the data using these three algorithms, we obtained the prediction results from different models. The average accuracy over multiple iterations was computed to derive the final model score, along with the generation of the final model itself.

2.4 Evaluation of the prediction models

ROC curves were plotted for each model’s training and testing results and the Area Under the Curve (AUC) was calculated. By comparing the AUC values, we assessed the optimal model and further analyzed the contribution of each feature to the model. Using calibration (calibration curve and Brier score), the accuracy and reliability of the predictive model were comprehensively evaluated. Assessing the accuracy and precision of the model using a confusion matrix.

2.5 Statistical analysis

We conducted a statistical analysis of the collected data using the R package (V4.2.2). The distribution of quantitative data was evaluated using tests for homogeneity of variance and normality. Normally distributed quantitative data are represented as mean ± standard deviation, and group differences were examined using t-tests. Count data are expressed as percentages (%), and group differences were assessed using the chi-square test. Statistical significance was set at p < 0.05.

3 Results

3.1 Comparison on the clinical features

A total of 2,346 stroke patients participated in this study, with males accounting for 66% of the total, while females represented only 34% (Table 1). Their ages were generally older, primarily ranging from 50 to 70 years. Additionally, our study included a group of 2,128 healthy individuals (653 females and 1,475 males). In the analysis of the correlation between cytokines and stroke, it was found that the levels of IL-1β, IL-5, and IL-4 were significantly higher in stroke patients than in the normal group (p < 0.05), whereas the differences in IL-2, IL-8, TNF-α, IL-6, IFN-α, IFN-γ, IL-17, IL-12P70, and IL-10 between the two groups were relatively small (p > 0.05).

Table 1
www.frontiersin.org

Table 1. Comparison on the clinical features.

3.2 Clinical feature correlations analysis

According to the analysis of cytokine intercorrelations, our results indicate positive associations between IL-2 and IL-1β, IL-8, IL-5, and IL-12P70. IL-1β levels were positively correlated with IL-12P70, IL-8, and IL-17 levels. IL-6 levels were positively correlated with IL-8 and IL-10 levels. IL-8 levels were positively correlated with IL-5, IL-12P70, and IL-10 levels. IL-17 levels were positively correlated with IL-12P70 levels (Figure 1).

Figure 1
www.frontiersin.org

Figure 1. Cytokine correlations analysis.

3.3 Establishment of the machine learning models

After conducting 10 repetitions of 10-fold cross-validation and grid search, we trained our three machine learning models and evaluated their ROC area under the curve (AUROC), sensitivity (Sens), and specificity (Spec) on the training dataset. Box plots were generated for these metrics (Figure 2). Upon comparing these results, we observed that the RF model had the highest AUC value and sensitivity, with the smallest difference, and its specificity was only lower than the SVM model. Therefore, in this study, we chose the RF model as the final algorithm for establishing the model.

Figure 2
www.frontiersin.org

Figure 2. Comparison of the three machine learning models. RF, random forest; SVM, support vector machine; GBM, Gradient Boosting Machine.

3.4 Predictive variable importance of RF model

With the visualization of the weight rankings, we showed a positive correlation between the importance of variables and the length of the corresponding bar in the bar graph. The research findings revealed that the top four features in terms of importance scores were age, IL-6, IL-5, and IL-10 (Figure 3).

Figure 3
www.frontiersin.org

Figure 3. Feature importance rankings on account of the RF model.

3.5 The validation on models

Our test set was used to evaluate the trained model’s performance on new, unseen data, revealing an AUC value of 0.74 and a sensitivity and specificity of 0.31 and 0.78, respectively, (Figure 4). The prediction model was assessed using a test set. In classification problems, a confusion matrix is commonly used to measure the predictive performance of a classifier model. By comparing the classifier’s output with the actual labels, we obtained an accuracy of 0.738, a precision of 0.690, a recall of 0.742, and an F1-score of 0.715 (Figure 5).

Figure 4
www.frontiersin.org

Figure 4. The ROC curve. The maximum value is 1. The point in the upper left corner is the optimal threshold; Specificity and Sensitivity are listed in parentheses.

Figure 5
www.frontiersin.org

Figure 5. The confusion matrix.

The calibration curve indicated that the prediction model exhibited small errors between the predicted and actual values, demonstrating its high accuracy (Figure 6). This further confirms the good generalization capability of the RF model.

Figure 6
www.frontiersin.org

Figure 6. The calibration curve.

4 Discussion

Stroke, also known as cerebrovascular accident, refers to a series of clinical syndromes caused by cerebrovascular diseases including localized cerebral ischemia or hemorrhage. It is characterized by rapid progression, often resulting in varying degrees of disability in patients, leading to a decreased quality of life and an increased burden on families and society (17). Therefore, early, timely, and effective treatment is crucial for saving lives and reducing the occurrence of severe sequelae.

In the prediction and diagnosis of stroke, relevant features can be extracted from a large amount of information, such as medical images or clinical data. Feature extraction is a key step in stroke machine-learning applications, as machine-learning algorithms are widely used for feature classification and prediction. By applying machine learning algorithms to stroke, we developed a novel approach to diagnosis and treatment that surpasses manual judgment in sensitivity and significantly improves the accuracy of stroke diagnosis and treatment (11). For instance, image processing techniques based on machine learning algorithms can assist clinicians in identifying specific subtypes of cerebral hemorrhage, thereby enhancing clinical outcomes (18). Furthermore, they can predict the severity and occurrence of stroke symptoms, providing crucial insights for making clinical decisions (19).

In this study, we employed three machine learning algorithms, SVM, RF, and GBM, and incorporated 14 features consisting of clinical laboratory indicators and demographic variables to establish our stroke prediction model. Our findings demonstrate that the RF model outperformed both the GBM and SVM models in terms of AUC values and sensitivity on the training dataset. Furthermore, by utilizing the RF algorithm to rank the importance of the features, it was observed that IL-6, IL-5, IL-10, and IL-2 obtained higher importance scores and were ranked among the top features.

One key influencing factor in stroke is a dysregulated inflammatory response, which could lead to neuronal damage, impaired neural function, and further injury after brain damage (20). Cytokines are a group of proteins that regulate immune and inflammatory responses and are closely associated with the occurrence of stroke. Following stroke, a significant amount of cytokines is produced, triggering an inflammatory response that results in neuronal cell death and exacerbation of brain damage. Cytokines released during stroke, such as TNF-α, IL-1β, and IL-6, further activate the inflammatory response and induce cell death (21). Other neurons distant from the injured area might also suffer indirect damage, which is mediated by cytokines and worsens stroke conditions.

IL-6, IL-5, IL-10, and IL-2 are important inflammatory mediators involved in the regulation of multiple biological processes, including immune modulation and inflammation, and are also associated with the pathogenesis of many diseases (22). Studies have shown that serum levels of IL-6, IL-5, IL-10, and IL-2 in stroke patients are closely correlated with stroke prognosis (23, 24). Experimental studies using mouse models have demonstrated the involvement of IL-6 in the process of neuronal redeath following stroke (25). After stroke, IL-6 is capable of modulating the function of stromal cells, promoting neuronal damage, and adversely affecting the recovery of neurological function (26). It has been revealed that IL-5 reduces the mortality rate of neurons after cerebral infarction, promotes neuronal regeneration and recovery, and regulates the post-stroke injury microenvironment. Following brain injury, TNF-α levels increase, which correlates with the severity of the injury. However, IL-10 inhibits TNF-α and decreases the inflammatory response after brain injury (27). Clinical experiments have demonstrated significantly lower levels of IL-2 in the serum of patients with acute stroke than in the normal control group (28). IL-2, by stimulating T cell activation and proliferation, regulates the immune response after stroke and influences the differentiation of TH1/TH2 cells and related factors, thereby modulating the immune response (29). These findings highlight the extensive biological effects of cytokines on the pathogenesis of stroke.

The AUC value, confusion matrix, and calibration curve are important indicators for measuring the predictive ability of classification models. The evaluation of predictive ability of the model in this study shows an AUC of 0.74, indicating a moderate level of predictive ability. The sensitivity is 0.31, and the specificity is 0.78. The low sensitivity implies a certain level of missed diagnosis in identifying stroke patients by the model, while the high specificity suggests good performance in excluding non-stroke patients. The confusion matrix results show that the accuracy, precision, recall, and F1 score are all around 0.7, indicating that the model has some predictive ability overall but there is room for improvement. The calibration curve demonstrates small errors between predicted and actual values, confirming the accuracy and generalization ability of the model. However, this study has limitations in terms of analysis. First, we acknowledge that the study has limitations in terms of data sources, as the training data originates from a single source and lacks diverse datasets from different demographic groups or geographical locations. This may result in insufficient generalizability of the model on other datasets, thus requiring further validation and expansion. Second, machine learning algorithms are often considered black box models, making it difficult to explain their predictive results. This is also an important issue in current machine learning research. To address this problem, we need to deepen our understanding of the internal workings of machine learning algorithms, as well as how to explain their results to clinical physicians and patients. Future research should continue to explore these issues and strive to improve the interpretability and generalizability of machine learning algorithms. In summary, while machine learning methods offer some improvements in stroke risk prediction, their actual significance in clinical settings requires further evaluation and validation. The model should be integrated as part of clinical decision support tools, combined with clinical judgment, to maximize the identification and management of stroke patients.

5 Conclusion

In this study, we focused on utilizing cytokines as features to establish stroke prediction models. Analyses of the ROC curve, confusion matrix, and calibration curve of the test set demonstrated that our models exhibited a strong generalization ability, which could be applied in stroke prediction.

Data availability statement

The original contributions presented in the study are included in the article/Supplementary material, further inquiries can be directed to the corresponding author.

Ethics statement

The studies involving humans were approved by the Ethics Committee of Chongqing Emergency Medical Center and Chongqing University Central Hospital (Approval Ethics Review No. 2021-74). The studies were conducted in accordance with the local legislation and institutional requirements. The participants provided their written informed consent to participate in this study.

Author contributions

SZ: Writing – review & editing, Writing – original draft, Resources, Project administration, Methodology, Investigation, Formal analysis, Data curation, Conceptualization. XH: Writing – review & editing, Writing – original draft, Supervision, Investigation, Data curation. YD: Writing – review & editing, Writing – original draft, Methodology, Investigation. HC: Writing – review & editing, Writing – original draft, Methodology, Investigation. XL: Writing – review & editing, Supervision, Data curation. YT: Writing – review & editing, Data curation. WL: Writing – original draft, Resources, Project administration, Methodology, Funding acquisition, Formal analysis, Conceptualization.

Funding

The author(s) declare that financial support was received for the research, authorship, and/or publication of this article. This study was sponsored by the Chongqing Advanced Medical Talents Program for young and middle-aged individuals (grant number: ZQNYXGDRCGZS2019008).

Conflict of interest

The authors declare that the research was conducted in the absence of any commercial or financial relationships that could be construed as a potential conflict of interest.

Publisher’s note

All claims expressed in this article are solely those of the authors and do not necessarily represent those of their affiliated organizations, or those of the publisher, the editors and the reviewers. Any product that may be evaluated in this article, or claim that may be made by its manufacturer, is not guaranteed or endorsed by the publisher.

Supplementary material

The Supplementary material for this article can be found online at: https://www.frontiersin.org/articles/10.3389/fneur.2024.1372431/full#supplementary-material

References

1. Xie, Q, Ma, R, Li, H, Wang, J, Guo, X, and Chen, H. Advancement in research on the role of the transient receptor potential vanilloid channel in cerebral ischemic injury (review). Exp Ther Med. (2021) 22:881. doi: 10.3892/etm.2021.10313

PubMed Abstract | Crossref Full Text | Google Scholar

2. Zheng, Z, Liang, S, Sun, S, Liu, P, and Yu, L. Clinical observation of salvianolic acid combined with panax notoginseng saponins combined with basic nursing intervention on cerebral ischemia-reperfusion injury in rats. J Healthc Eng. (2022) 2022:1–9. doi: 10.1155/2022/8706730

Crossref Full Text | Google Scholar

3. Xu, J, Chen, Z, Yu, F, Liu, H, Ma, C, Xie, D, et al. IL-4/STAT6 signaling facilitates innate hematoma resolution and neurological recovery after hemorrhagic stroke in mice. Proc Natl Acad Sci USA. (2020) 117:32679–90. doi: 10.1073/pnas.2018497117

PubMed Abstract | Crossref Full Text | Google Scholar

4. Liberale, L, Ministrini, S, Carbone, F, Camici, GG, and Montecucco, F. Cytokines as therapeutic targets for cardio- and cerebrovascular diseases. Basic Res Cardiol. (2021) 116:23. doi: 10.1007/s00395-021-00863-x

PubMed Abstract | Crossref Full Text | Google Scholar

5. Pawluk, H, Kołodziejska, R, Grześk, G, Kozakiewicz, M, Woźniak, A, Pawluk, M, et al. Selected mediators of inflammation in patients with acute ischemic stroke. Int J Mol Sci. (2022) 23:10614. doi: 10.3390/ijms231810614

Crossref Full Text | Google Scholar

6. Du, L, Zhao, Z, Liu, X, Chen, Y, Gao, W, Wang, Y, et al. Alterations of iron level in the bilateral basal ganglia region in patients with middle cerebral artery occlusion. Front Neurosci. (2020) 14:608058. doi: 10.3389/fnins.2020.608058

Crossref Full Text | Google Scholar

7. Clausen, BH, Lambertsen, KL, Babcock, AA, Holm, TH, Dagnaes-Hansen, F, and Finsen, B. Interleukin-1beta and tumor necrosis factor-alpha are expressed by different subsets of microglia and macrophages after ischemic stroke in mice. J Neuroinflammation. (2008) 5:46. doi: 10.1186/1742-2094-5-46

PubMed Abstract | Crossref Full Text | Google Scholar

8. Shi, J, Liu, Y, Wei, L, Guan, W, and Xia, W. Admission neutrophil-to-lymphocyte ratio to predict 30-day mortality in severe spontaneous basal ganglia hemorrhage. Front Neurol. (2022) 13:1062692. doi: 10.3389/fneur.2022.1062692

Crossref Full Text | Google Scholar

9. Ziai, WC. Hematology and inflammatory signaling of intracerebral hemorrhage. Stroke. (2013) 44:S74–8. doi: 10.1161/STROKEAHA.111.000662

PubMed Abstract | Crossref Full Text | Google Scholar

10. Enciu, AM, Gherghiceanu, M, and Popescu, BO. Triggers and effectors of oxidative stress at blood-brain barrier level: relevance for brain ageing and neurodegeneration. Oxidative Med Cell Longev. (2013) 2013:297512:1–12. doi: 10.1155/2013/297512

Crossref Full Text | Google Scholar

11. Mainali, S, Darsie, ME, and Smetana, KS. Machine learning in action: stroke diagnosis and outcome prediction. Front Neurol. (2021) 12:734345. doi: 10.3389/fneur.2021.734345

PubMed Abstract | Crossref Full Text | Google Scholar

12. Chen, YC, Chung, JH, Yeh, YJ, Lou, SJ, Lin, HF, Lin, CH, et al. Predicting 30-day readmission for stroke using machine learning algorithms: a prospective cohort study. Front Neurol. (2022) 13:875491. doi: 10.3389/fneur.2022.875491

PubMed Abstract | Crossref Full Text | Google Scholar

13. Alaka, SA, Menon, BK, Brobbey, A, Williamson, T, Goyal, M, Demchuk, AM, et al. Functional outcome prediction in ischemic stroke: a comparison of machine learning algorithms and regression models. Front Neurol. (2020) 11:889. doi: 10.3389/fneur.2020.00889

PubMed Abstract | Crossref Full Text | Google Scholar

14. Cui, J, Yang, J, Zhang, K, Xu, G, Zhao, R, Li, X, et al. Machine learning-based model for predicting incidence and severity of acute ischemic stroke in anterior circulation large vessel occlusion. Front Neurol. (2021) 12:749599. doi: 10.3389/fneur.2021.749599

PubMed Abstract | Crossref Full Text | Google Scholar

15. Markovič, R, Grubelnik, V, Vošner, HB, Kokol, P, Završnik, M, Janša, K, et al. Age-related changes in lipid and glucose levels associated with drug use and mortality: an observational study. J Pers Med. (2022) 12:280. doi: 10.3390/jpm12020280

PubMed Abstract | Crossref Full Text | Google Scholar

16. Ping, Z, Huiyu, S, Min, L, Qingke, B, Qiuyun, L, and Xu, C. Explainable machine learning for long-term outcome prediction in two-center stroke patients after intravenous thrombolysis. Front Neurosci. (2023) 17:1146197. doi: 10.3389/fnins.2023.1146197

PubMed Abstract | Crossref Full Text | Google Scholar

17. Yan, Y, Sun, C, Rong, X, Han, R, Zhu, S, Su, R, et al. Mechanism of action of Dengzhan Shengmai in regulating stroke from an inflammatory perspective: a preliminary analysis of network pharmacology. Evid Based Complement Alternat Med. (2021) 2021:1–10. doi: 10.1155/2021/6138854

Crossref Full Text | Google Scholar

18. Arbabshirani, MR, Fornwalt, BK, Mongelluzzo, GJ, Suever, JD, Geise, BD, Patel, AA, et al. Advanced machine learning in action: identification of intracranial hemorrhage on computed tomography scans of the head with clinical workflow integration. NPJ Digit Med. (2018) 1:9. doi: 10.1038/s41746-017-0015-z

PubMed Abstract | Crossref Full Text | Google Scholar

19. Park, E, Lee, K, Han, T, and Nam, HS. Automatic grading of stroke symptoms for rapid assessment using optimized machine learning and 4-limb kinematics: clinical validation study. J Med Internet Res. (2020) 22:e20641. doi: 10.2196/20641

PubMed Abstract | Crossref Full Text | Google Scholar

20. Saand, AR, Yu, F, Chen, J, and Chou, SHY. Systemic inflammation in hemorrhagic strokes - a novel neurological sign and therapeutic target? J Cereb Blood Flow Metab. (2019) 39:959–88. doi: 10.1177/0271678X19841443

PubMed Abstract | Crossref Full Text | Google Scholar

21. Liu, M, Xu, Z, Wang, L, Zhang, L, Liu, Y, Cao, J, et al. Cottonseed oil alleviates ischemic stroke injury by inhibiting the inflammatory activation of microglia and astrocyte. J Neuroinflammation. (2020) 17:270. doi: 10.1186/s12974-020-01946-7

PubMed Abstract | Crossref Full Text | Google Scholar

22. Sobah, ML, Liongue, C, and Ward, AC. SOCS proteins in immunity, inflammatory diseases, and immune-related cancer. Front Med. (2021) 8:727987. doi: 10.3389/fmed.2021.727987

PubMed Abstract | Crossref Full Text | Google Scholar

23. Shen, F, Jiang, L, Han, F, Degos, V, Chen, S, and Su, H. Increased inflammatory response in old mice is associated with more severe neuronal injury at the acute stage of ischemic stroke. Aging Dis. (2019) 10:12–22. doi: 10.14336/AD.2018.0205

PubMed Abstract | Crossref Full Text | Google Scholar

24. Luo, C, Yao, J, Bi, H, Li, Z, Li, J, Xue, G, et al. Clinical value of inflammatory cytokines in patients with aneurysmal subarachnoid hemorrhage. Clin Interv Aging. (2022) 17:615–26. doi: 10.2147/CIA.S362854

PubMed Abstract | Crossref Full Text | Google Scholar

25. Zhang, X, Zheng, W, Wang, T, Ren, P, Wang, F, Ma, X, et al. Danshen-chuanxiong-Honghua ameliorates cerebral impairment and improves spatial cognitive deficits after transient focal ischemia and identification of active compounds. Front Pharmacol. (2017) 8:452. doi: 10.3389/fphar.2017.00452

PubMed Abstract | Crossref Full Text | Google Scholar

26. Zhu, H, Hu, S, Li, Y, Sun, Y, Xiong, X, Hu, X, et al. Interleukins and ischemic stroke. Front Immunol. (2022) 13:828447. doi: 10.3389/fimmu.2022.828447

PubMed Abstract | Crossref Full Text | Google Scholar

27. Li, X, Tong, J, Liu, J, and Wang, Y. Down-regulation of ROCK2 alleviates ethanol-induced cerebral nerve injury partly by the suppression of the NF-κB signaling pathway. Bioengineered. (2020) 11:779–90. doi: 10.1080/21655979.2020.1795404

PubMed Abstract | Crossref Full Text | Google Scholar

28. Nayak, AR, Kashyap, RS, Purohit, HJ, Kabra, D, Taori, GM, and Daginawala, HF. Evaluation of the inflammatory response in sera from acute ischemic stroke patients by measurement of IL-2 and IL-10. Inflamm Res. (2009) 58:687–91. doi: 10.1007/s00011-009-0036-4

PubMed Abstract | Crossref Full Text | Google Scholar

29. Zhang, H, Xia, Y, Ye, Q, Yu, F, Zhu, W, Li, P, et al. In vivo expansion of regulatory T cells with IL-2/IL-2 antibody complex protects against transient ischemic stroke. J Neurosci. (2018) 38:10168–79. doi: 10.1523/JNEUROSCI.3411-17.2018

PubMed Abstract | Crossref Full Text | Google Scholar

Keywords: stroke, cytokines, machine learning, random forest model, prediction model

Citation: Zhi S, Hu X, Ding Y, Chen H, Li X, Tao Y and Li W (2024) An exploration on the machine-learning-based stroke prediction model. Front. Neurol. 15:1372431. doi: 10.3389/fneur.2024.1372431

Received: 18 January 2024; Accepted: 15 April 2024;
Published: 29 April 2024.

Edited by:

Long Wang, University of Science and Technology Beijing, China

Reviewed by:

Chiara Camastra, Magna Græcia University of Catanzaro, Italy
Jiachen Liu, Washington University in St. Louis, United States

Copyright © 2024 Zhi, Hu, Ding, Chen, Li, Tao and Li. This is an open-access article distributed under the terms of the Creative Commons Attribution License (CC BY). The use, distribution or reproduction in other forums is permitted, provided the original author(s) and the copyright owner(s) are credited and that the original publication in this journal is cited, in accordance with accepted academic practice. No use, distribution or reproduction is permitted which does not comply with these terms.

*Correspondence: Wei Li, liwei0111@cqu.edu.cn

Disclaimer: All claims expressed in this article are solely those of the authors and do not necessarily represent those of their affiliated organizations, or those of the publisher, the editors and the reviewers. Any product that may be evaluated in this article or claim that may be made by its manufacturer is not guaranteed or endorsed by the publisher.