1. Introduction
Multiple Sclerosis (MS) is a complex, long-lasting condition affecting the brain and spinal cord, leading to symptoms such as vision disturbances, impaired limb movement cognitive impairment, etc [1]. The disease typically progresses from a Relapsing-Remitting (RR) phase to a Secondary-Progressive (SP) phase, resulting in worsening health and irreversible disability [2,3]. The introduction of over fifteen approved disease-modifying treatments offers the potential to delay the onset of the SP phase significantly. However, the benefits must be carefully balanced against substantial risks, especially with the most potent medications [4].
Magnetic Resonance Imaging (MRI) images offer insights into brain and spinal cord lesions associated with MS, facilitating accurate diagnosis and disease tracking [5,6]. Various techniques and scoring systems, such as the Barkhof [7] and Paty [8] scores, quantitatively evaluate lesions and disease burden in the central nervous system but typically applied at a specific point in time and do not consider the patient’s complete medical history. To obtain a comprehensive understanding of MS, it is crucial to consider broader factors, including genetics, microbiota, lifestyle, and geographical settings [9].
The absence of established prognostic markers and reliable risk scores currently complicates the accurate prediction of disease trajectories for individual patients, which is particularly challenging given the availability of treatments that can slow disease progression but come with potential adverse effects [10,11]. Early prognosis of disease trajectories could enable personalized treatment strategies, particularly for higher-risk patients, and Artificial Intelligence (AI) algorithms are gaining momentum in addressing this need in neurology [12–17], to heighten diagnostic precision and refine patient care efficacy. Some studies have used Machine Learning (ML) to explore MS, for both diagnosis and prognosis, offering promising insights [14,16]. While many studies focus on cross-sectional perspective and identifying static patterns in the data, comprehending how MS changes over time requires a longitudinal perspective. This approach helps connect information across different time points and understand the holistic trajectory of each patient [17].
This paper presents a novel methodology for exploring the correlation between features extracted from baseline MRI and the trajectory of MS in terms of each patient’s Expanded Disability Status Scale (EDSS) [18]. To achieve this, three different models are proposed to describe these trajectories, and ML tools such as XGBoost [19] and, subsequently, Shapley Additive Explanations (SHAP) [20], are applied to improve the understanding of these relationships.
2. Materials
2.1 Dataset
In this study, a dataset comprising 478 patients from Galicia (North-Western Spain), was utilized. The exclusion criterion was based on patient follow-up, excluding those with less than 1 year of follow-up and those with fewer than two EDSS evaluations. After applying this selection criteria, a total of 446 records were employed for the analysis, with data collected from 1987 to 2022. Finally, it was ensured that each patient included in the analysis had an associated MRI. Fig 1 shows the cohort selection schema, and S1 Table shows the patient characteristics for the selected dataset. The data utilized, which was accessed for the first time on June 20, 2016, was approved by the Autonomous Committee of Research Ethics of Galicia under the code 2016/307. Informed consent was obtained from all participants prior to any data collection procedures.
[Figure omitted. See PDF.]
To examine our database in detail, it is essential to understand the temporal structure of the data. Fig 2A illustrates how the 446 patients included in the study are distributed categorized by the duration of their follow-up, measured in years. This representation helps us comprehend how patients are distributed concerning the duration of their follow-up in the database. On the other hand, in Fig 2B, we provide an alternative way to represent the percentage of our study cohort based on the duration of follow-up in years, offering insights into the length and quality of the collected data. Additionally, it is crucial to account for the distribution of EDSS scores in these MS patients. EDSS is a common clinical scale used to evaluate disability in MS patients, offering valuable insights into their clinical condition. Scores range from 0 (no disability) to 10 (severe disability). To illustrate the behaviour of EDSS within the dataset, Fig 2C displays the distribution of values in each EDSS category, while Fig 2D illustrates the distribution of EDSS determinations per patient. This provides a clearer understanding of the distribution of EDSS scores and the frequency of assessments in the dataset.
[Figure omitted. See PDF.]
(A) Distribution of Patients Over Time: Follow-Up Duration in Days. (B) Temporal Distribution of Study Cohort: Percentage of Patients Across Follow-Up Duration in Years. (C) Distribution of the number of values of each EDSS category in the studied cohort. (D) Distribution of the number of determinations per patient in the studied cohort.
2.2 AI tools (boosting and explainability)
2.2.1. XGBoost.
Gradient Boosting is a powerful ensemble learning technique widely employed in ML for enhancing predictive models. This method sequentially builds a strong predictive model by combining the outputs of weak learners, usually decision trees. The algorithm minimizes an objective function, represented by Eq 1.(1)where L(θ) is the training loss function measuring the model’s performance on the training data and Ω(θ) is the regularization term accounting for the complexity of the model.
XGBoost represents a highly efficient and scalable implementation of gradient boosted decision trees, systematically constructing additive models in a stepwise manner. This process leads to an ensemble of base learners exhibit superior prediction capabilities compared to individual classifiers. Each weak classifier is assigned a weight based on its prediction accuracy, allowing them to contribute effectively to the final prediction [19,20]. XGBoost, being an advanced implementation, introduces additional regularization measures to control overfitting. The objective function of XGBoost, aimed to be minimized, is given by Eq 2, and the regularization term is described in Eq 3.
(2)(3)
Where, yi is the target value of the i-th instance, ŷi is predicted value at the t-th iteration, ft (xi) is the additive decision tree model greedily added to improve performance, and Ω(ft) is a regularization term penalizing model complexity. N is the set of all samples in leaf m, T consists of the number of leaf nodes, α and γ are parameters of the tree. The score of leaf m is measured by ωm. This regularization procedure aims to compress the weights for many features to zero, facilitating feature selection.
2.2.2 SHAP.
Model interpretability poses a significant challenge in the realm of ML algorithms. To address this challenge, SHAP is recognized as a potent and commonly used tool in the realm of explainable AI, serving a pivotal function in elucidating the importance and influence of input features on model predictions [21,22]. The SHAP methodology is based on a unified framework rooted in cooperative game theory, assigning the contribution of each feature to the model’s output. Through a quantitative approach to assess the marginal impact of features, SHAP considers all feature combinations [23]. This facilitates a thorough comprehension of feature interactions and their combined impacts on predictions [24]. The mathematical expression representing SHAP values is given by Eq 4. This holistic perspective provides valuable insights into the inner workings of complex ML models, contributing to transparency and informed decision-making regarding model behavior and feature importance.(4)where f(S) refers to the output of the XGBoost model, which is determined by a specific set of features denoted as S. The complete set of all features is represented by N. The final contributions, denoted as ∅i, are computed by averaging the contributions across all permutations of a feature set. Subsequently, the features are sequentially incorporated into the set, and their impact is reflected in the model’s output change.
3. Methods
To assess the correlation between the features derived from the baseline MRI and the clinical trajectory of each patient (as assessed by EDSS), a new methodology has been developed, which is divided into several stages. The first stage involves cohort selection. The second stage is dedicated to proposing trajectory descriptors based on EDSS assessment. As a result, three descriptors were obtained (detailed in section 3.1), represented as β1, β2, and EDSS(t). Subsequently, we proceed to build AI models using these baseline MRI-derived features, gender, and age of MS onset to predict patient progression. Two models are considered for this purpose: the classical Linear Regressor (LR) [25] and the state-of-the-art XGBoost-based predictor (section 2.2.1). This allows for a dual evaluation: first, to determine if the ML approach (specifically XGBoost) outperforms the classical method (LR); and second, to validate the patient trajectory classification presented in the first section as patient descriptors. The final stage of the method is devoted to understanding, using explainable AI (referred to as SHAP in section 2.2.2), which are the main features of the model that predicts the trajectories. Fig 3 shows the methodology pipeline including all these stages.
[Figure omitted. See PDF.]
3.1 Building the MS trajectory descriptors based on time dependent EDSS assessment variations
The first proposed trajectory descriptor aims to transform the patient’s categorical EDSS assessments into a single numerical variable representing the patient’s condition changes over time. This is achieved by combining measurements taken at various time points and normalizing them by the time interval (in days) between measurements. Mathematically, the first trajectory descriptor is based on the initial and final EDSS scores and is represented by Eq 5.
(5)
Where ΔEDSS represents the variation in terms of EDSS between the initial and final measurements weighted by 0.5 for each category variation, whether increasing or decreasing, and the term ΔT corresponds to the difference (in days) between such measurements. The result, β1, corresponds to the “slope” of the line that connecting those points. This approach reduces the trajectory complexity of each patient to just two points (the beginning and the end).
Following the previous logic, a more comprehensive description of this score can be obtained by considering each of the EDSS assessments made for the patient. Using the same convention as in Eq 1 for ΔT, Eq 6 describes the second trajectory descriptor.
(6)
The term ΔEDSSi means the variability in EDSS between two measurements, and the term ΔTi corresponds to the number of days between two consecutive determinations. The summation covers EDSS variations from i = 1 to n, where n represents the last recorded change. ΔEDSSi weighted by 0.5 on each category variation, increasing or decreasing. Consequently, the descriptor measures the time required to induce a change in EDSS values for a patient, treating them as a numerical variable.
The third trajectory descriptor aims to treat EDSS assessments directly as categorical. To consider the moment in time when these assessments are taken using this approach, a map of values at specific time points is created, which is the same for all patients. This is described in Eq 7.
(7)
To describe patient trajectories using this model, we collect EDSS values at specific time intervals, including the initial assessment at t = 0, and subsequent evaluations at 1 year, 2 years, 5 years, and 10 years. This method enables us to predict the trajectory using classifiers that estimate the EDSS values at these specific time points. If a patient’s EDSS value matches that of the previous and subsequent assessments within a three-month interval in their medical history, we assume that it remains unchanged during that period. This assumption is particularly useful in cases where data for these time points are missing, as it provides additional values for the model to predict. Moreover, from a clinical point of view, the occurrence of a non-documented transient change (more often an increase than a decrease) of EDSS between two equal assessments is indeed a possibility in the clinical setting and would qualify as a (subclinical) relapse. Nevertheless, the purpose of this paper is to use baseline MRI features to predict the disability score (i.e., EDSS) at specific time points, not to foresee the annualized relapse rate (ARR). While the behaviour of ARR is a primary of most clinical trials in relapsing MS in the short and medium term (typically 1–2 years), disability is the most relevant feature in the long run (2–10 years) for either relapsing or progressive MS. These proposed descriptors aim to describe the progression of MS over time based on EDSS measures. Fig 4A depicts the variability of EDSS measures for a subset of the initial 10 patients in the study. Fig 4B showcases the behaviour of the disease progression descriptors concerning the EDSS scores over time.
[Figure omitted. See PDF.]
(A) Evolution of EDSS for the first 10 patients of the study, where abscissa axis is time in days and ordinate, EDSS values. (B) Example of behaviour of possible descriptors of disease progression according to the EDSS score over time.
3.2 AI (regressor and classifier) to predict MS trajectories
Once the data has been curated and pre-processed to enable integration into the AI workflow, two different sets of models are employed. The first one consists of the LR and the XGBoost regressors, used to predict the β1 and β2 trajectories, which represent the time required to change EDSS values. The second model utilizes Multiclass Logistic Regression (MLR) and the XGBoost classifiers to predict EDSS(t), forecasting the EDSS value at a specific moment (Eq 7), functioning as a classifier.
In the context of hyperparameter optimization, a crucial process for identifying and selecting parameter configurations that produce the best prediction results, the Bayesian approach was employed. Specifically, the Hyperopt Library [21] was utilized to optimize XGBoost (Eqs 2 and 3) leveraging Bayesian optimization.
For the analysis, the dataset is initially divided into two parts: one for model fitting and the other for evaluating predictor quality, using an 80/20 ratio. All models are fitted and hyperoptimized using the same set. Additionally, a five-fold cross-validation process is conducted, involving random resampling of the initial dataset split to assess the generalizability of the results. To address class distribution imbalance, stratified cross-validation is employed, ensuring that each fold maintains a representative proportion of the classes present. To evaluate whether the models are overfitting or underfitting, we compare the metrics (AUC-ROC, Sensitivity, Accuracy, Precision) between both the training and testing datasets. The values obtained permit us to conclude that neither overfitting nor underfitting occurs in the process.
4. Results
This section presents the results of three main experiments that explore the relationship between the progression of MS and the baseline MRI of each patient, using the dataset described in section 2.1. In the first experiment, trajectory descriptors were obtained using the different proposed models (section 3.1). The second experiment employed data from the baseline MRI to predict the patient trajectory based on the models obtained in the first experiment. In the third experiment, SHAP was utilized to analyse and understand the key features influencing the predictions of each model. The proposed method and analysis were implemented in Python using multiple libraries, including Scikit-learn, Matplotlib, NumPy, Pandas, Hyperopt, XGBoost, and SHAP.
4.1 Obtaining the trajectories descriptors
The first experiment focuses on obtaining the descriptors for the dataset’s patients. β1 values, computed using Eq 5, show an average of 0.02 and a standard deviation of 1.23. For β2, values are extracted using Eq 6, revealing an average of -1.47, and a standard deviation of 12.76. Fig 5A displays the behaviour of β1 and β2 across all patients in our dataset. There is consensus in considering MS has followed a mild (termed ‘benign’ by some authors) course when EDSS score is ≤3.0, after a disease duration of at least 10 years [26], whereas aggressive MS might be defined as reaching an EDSS score of ⩾6.0 within 10 years of disease onset [27]. By calculating the β1 values for patients who meet these criteria, we’ve segmented the dataset into three groups: mild, average, and aggressive trajectories of the disease, as show in Fig 5B.
[Figure omitted. See PDF.]
(A) Results of β1 and f β2 for the Entire Patient Cohort. (B) Classification of disease trajectories in β1 analysed patients. In both at right a zoom of the area of interest.
Regarding the extraction and quantification of EDSS(t) assessment for the specific moments as described in Eq 3. Results of this process are provided in Table 1, in terms of the number of patients in the study that has an EDSS value at each specific time.
[Figure omitted. See PDF.]
4.2. Predicting patient trajectory descriptors using baseline MRI
The dataset described in 2.1 was employed to evaluate the presented AI methods to predict the patient trajectories, as described in section 3.2.
4.2.1 Regressor model.
To predict the trajectory descriptors β1 and β2 based on the baseline MRI, patient age, and sex, two regression models were employed. In Table 2, a comparison is presented between the classic LR model and the XGBoost model. This comparison includes default hyperparameters and the best-performing Bayesian hyperparameter-tuned model, and it measures performance in terms of Mean Absolute Error (MAE). The results displayed on the table, demonstrate the potential for AI methods to significantly reduce prediction errors for both trajectory descriptors when compared to the classical LR method.
[Figure omitted. See PDF.]
Prediction of benignant and aggressive evolutions. Following the prediction of the β1 trajectory descriptor, the results could be categorized according to the criteria described in section 4.1 to predict whether the disease course is classified as benign or aggressive. This method allows for the evaluation of the regressor’s ability to differentiate between the clinical categories of disease progression. Table 3 presents the results comparing the criteria forecasted by the regressor with the actual values from patients followed for ten years or more, belonging to the test group.
[Figure omitted. See PDF.]
4.2.2 Classifier model.
To make predictions based on the time descriptor EDSS(t), a classifier is needed. Table 4 compares the MLR with optimized XGBoost models using various metrics, including Area Under the Curve Receiver Operating Characteristic (AUC-ROC), Sensitivity, Precision, and Accuracy. The most promising results were achieved with the XGBoost model, with AUC-ROC values ranging from 0.7354 for EDSS(0) to the highest result of 0.9136 obtained for EDSS(1). Fig 6 displays the AUC-ROC curves generated by applying XGBoost to each EDSS(t) timestamp.
[Figure omitted. See PDF.]
Table 4 presents the metrics derived from the testing dataset. To assess the model’s generalization performance, analogous metrics were calculated for the training dataset. These results are provided as supplementary material in S2 Table. A comparison between the metrics presented in Table 4 and those in S2 Table reveals a notable similarity in values for both the training and testing datasets. This congruence suggests that the models neither suffer from overfitting nor underfitting.
[Figure omitted. See PDF.]
4.3. Using SHAP to explain the ML models (regressor and classifier)
After obtaining the model, we employed SHAP (as described in section 2.2.2) to interpret the best-performing regressor identified in Table 2. In this case, we utilized the hyperoptimized version of XGBoost with predictors β1 and β2. Using this technique enables us to identify and rank the importance of features. The analysis reveals that "Age at onset" is the most crucial feature for predictors β1 and β2. Fig 7A and 7C displays plots of the ranking of the 20 most important variables. Fig 7B and 7D illustrates the impact of features on the model output for individuals in the validation dataset. The X-axis displays features sorted by the sum of SHAP value magnitudes across all samples, indicating higher importance at the extremes. The Y-axis shows how much each feature affects the model’s predictions using SHAP values. The colours, from red to blue, stand for high to low values of these features.
[Figure omitted. See PDF.]
(A-B) Relevance and SHAP analysis of the 20 most important clinical variables extracted from the XGBoost regressor to predict β1. (C-D) Relevance and SHAP analysis of the 20 most important clinical variables extracted from the XGBoost regressor to predict β2.
In the section dedicated to the classifier, a similar approach to the regressor was followed, employing the SHAP technique to assess and elucidate the performance of ML models. Fig 8 displays the ranking of the top 20 features that exert the most influence on the model’s classification decisions, thereby contributing to a deeper understanding of variable importance and overall model performance.
[Figure omitted. See PDF.]
(A) Analysis to predict EDSS(0). (B) Analysis to predict EDSS(1). (C) Analysis to predict EDSS(2). (D) Analysis to predict EDSS(5). (E) Analysis to predict EDSS(10).
In the SHAP analysis of the classifier, we observed variations in the influence of each variable across different classes and time points (as shown in Fig 8). Interestingly, while the age of onset exhibited reduced influence compared to other predictors, the number of lesions greater than nine ("Nb lesions/Brain (> = 9)") detected in the baseline MRI emerged as the most influential variable.
5. Discussion
The objective of this study is not to make the best predictor of the trajectory of MS, but rather to explore the amount of information provided by the baseline MRI for predicting the evolution of MS. We propose a method for creating trajectory descriptors β1 and β2 (section 3) which help us understand how MS patients’ EDSS scores change over time. β1 simplifies the description, by connecting the first and last EDSS assessments with a straight line (see Fig 4D), but it may lose important information and does not consider variations between measurements. In contrast, β2 considers these variations over time and the changes in EDSS scores between consecutive measurements. Both methods are weighted by the time between measurements. The hyperoptimized XGBoost model showed the lowest MAE, suggesting it is better at predicting patient trajectories. For β1, the MAE is 8.62 percent relative to the standard deviation, while for β2, it is 40.60 percent relative to the standard deviation. This difference can be attributed to the fact that β2 considers intermediate changes in EDSS values, including relapses in patients, which can lead to randomly occurring elevated atypical EDSS values, potentially making predictions for this descriptor more challenging. This method is a useful tool for quickly characterizing disease behaviour over time, but it introduces an error when converting categorical EDSS measurements into numbers, assuming all transitions between categories carry the same weight.
To address the limitations of β1 and β2, we present an alternative method for constructing the EDSS(t) trajectory descriptor. This new approach treats the variable as categorical, focusing on how patients change over time. The descriptor is based on EDSS measurements at five specific time points, with varying patient counts: 446, 400, 377, 352, and 279, respectively. As shown in Table 1, EDSS values are not evenly distributed across categories, with most samples having values below EDSS = 4. Consequently, we only considered categories with a minimum of ten occurrences at each time point. Table 4 compares the performance of the MLR against optimized XGBoost models using various metrics. Notably, the XGBoost model exhibited the most promising results, demonstrating AUC-ROC values ranging from 0.7354 for EDSS(0) to a peak of 0.9136 for EDSS(1). The predictions for EDSS(0) showed slightly lower performance compared to other time points. There are plausible reasons to think that was due to an imbalance in the sample distribution at the initial stage, where category "2" represented 28% of all samples, while category "1.5" accounted for only 3%. To handle this imbalanced-ness of the problem, several actions have been taken to mitigate the effects as using a schema for validation considering a 5-fold cross validation approach. As this initial imbalance in debut conditions produces suboptimal outcomes of the estimator only at this specific initial time point, the task of exploring techniques to address this intrinsic data imbalance is posed as an open future research study that potentially mitigate such issues improving the overall performance of predictive models for EDSS trajectory descriptors.
Several works have been published in recent years within the same domain, focusing on predicting patient evolution using MRI studies [28–30]. These studies aim to forecast disease progression at various time points according to the EDSS scale. While the prevailing literature reports AUC values ranging from 0.71 to 0.89, our findings span from 0.74 to 0.91, contingent upon the forecasted year for disease trajectory. While the resulting metrics from these works align with ours, comparisons are somewhat heterogeneous due to differences in input variables, prediction different time points, and considerations of the EDSS scale. Moreover, our proposed methodology focuses on forecasting disease progression solely utilizing derived features extracted from baseline MRI scans.
It is interesting to remark that while baseline MRI studies are a good prognostic predictor for MS, as demonstrated by the research community [31,32], the performance disparity between the classifier models EDSS(0) predicting the initial EDSS level and the EDSS(1) at one year and later, could be understood as a contribution of clinical variables such as treatment, genetics and environmental factors, to the clinical evolution and assessment of the patient.
The implementation of explainable AI methods facilitated the discovery of the core factors influencing precise decisions within the ML model. This process renders complex models understandable and accessible, even to those without advanced technical or medical knowledge. In section 4.3, SHAP was utilized to interpret the ML models, both for the regressor and the classifier. This analysis provided essential information about the internal performance of each developed predictor and descriptor, including the classification of feature importance and insights into how the values of each feature impact predictions. For the trajectory descriptors β1 and β2, significant influence was highlighted, particularly related to the age at disease diagnosis (age at onset), as observed in Fig 7. This observation aligns with findings from previous studies [33–35]. In the analysis of EDSS(t) using the XGBoost-based classifier, Fig 8 illustrates how the influence of each variable changes depending on the class being analysed for each measured time point. It is noteworthy that, in this predictor, the age of onset does not exert as much influence as in the previously analysed predictors. Instead, the most influential variable is the number of lesions greater than nine ("Nb lesions/Brain (> = 9)") detected in the baseline MRI. We found that the variable with the most significant impact in the classification models is the number of lesions greater than nine ("Nb lesions/Brain (> = 9)") in the baseline MRI. While previous works have not specifically analysed the number of lesions to predict EDSS, there are studies that have examined the prediction of EDSS at 10 years based on brain lesion volume [36], as well as others that have investigated the spatial distribution of lesions [37]. Therefore, brain lesions emerge as a crucial parameter to consider in predicting the progression of MS. The incorporation of the SHAP tool represents a significant advancement towards transparency and understanding in the context of AI and predictive modelling. This allows healthcare professionals to comprehend how the model generates prediction and make informed decisions.
In the next coming years AI will have a great impact on the clinic when it comes to making clinical decisions, prevention / diagnosis / prognosis, therapeutic efficacy, etc. This work makes an intensive use of AI algorithms for producing prognosis and decisions tools, intentionally derived exclusively from the baseline MRI, to measure the amount of information for prediction patient evolution at the debut. Enhancing the model’s effectiveness could be accomplished by incorporating longitudinal MRI data, enabling more precise and resilient predictions at each temporal instance. This approach could aid in identifying patterns in MRI images associated with disease progression. Including supplementary clinical information, such as laboratory results, genetic data, or other relevant biomarkers for MS could also enrich the models and enhance their predictive capacity. However, it is important to consider the challenges associated with collecting and integrating additional clinical data. Concerning data limitations on this study, an additional issue for future works should be addressed in terms of two main aspects, the public accessibility of the dataset employed and the inclusion of external databases to further validate the proposed method in a broader cohort. Actions on those two lines have been started but as this falls out of the scope of this paper, result will be included in future works.
6. Conclusions
This paper presents a new method for describing MS trajectories based on two new numerical scores (β1 and β2) and a categorical descriptor for time evolution, EDSS(t). The state-of-the-art XGBoost method was employed to predict these new trajectory descriptors using information provided in the baseline MRI study, and the results were compared with the classical models. Hyperparameter optimized XGBoost models improves the predictions of trajectories of MS patients, in both categories regressors and classifiers. In terms of best AUC-ROC, Sensitivity, Accuracy and Precision. The layer of Explainable ML facilitates understanding the reasons and variable importance within the AI models, being "Age at onset" the most significant variable in predicting trajectories β1 and β2, while "Number of lesions in the brain (> = 9)" holds the highest importance in predicting the trajectory and EDSS(t). This paper shows how AI is superior to traditional logistic regression in predicting the patient’s disability status at 1, 2, 5 and 10 years based on human-imputed data regarding specific standardized findings in a baseline MRI that could impact decisions. It is possible that the incorporation of AI analysis of MRI could further improve the model’s prediction abilities.
Supporting information
S1 Table. Characteristics of the cohort.
https://doi.org/10.1371/journal.pone.0306999.s001
(DOCX)
S2 Table. Classifier performance on train data.
https://doi.org/10.1371/journal.pone.0306999.s002
(DOCX)
Acknowledgments
The authors would like to thank the Health Research Institute of Santiago de Compostela (IDIS), Sanitary Area of Santiago de Compostela and Barbanza and specially the Neurology Service and the Multiple Sclerosis Unit of the Santiago University Hospital Complex.
Citation: Campanioni S, Veiga C, Prieto-González JM, González-Nóvoa JA, Busto L, Martinez C, et al. (2024) Explainable machine learning on baseline MRI predicts multiple sclerosis trajectory descriptors. PLoS ONE 19(7): e0306999. https://doi.org/10.1371/journal.pone.0306999
About the Authors:
Silvia Campanioni
Roles: Conceptualization, Data curation, Formal analysis, Investigation, Methodology, Project administration, Software, Validation, Visualization, Writing – original draft, Writing – review & editing
Affiliation: Galicia Sur Health Research Institute (IIS Galicia Sur), Cardiovascular Research Group, Vigo, Spain
ORICD: https://orcid.org/0000-0002-9088-1336
César Veiga
Roles: Conceptualization, Formal analysis, Funding acquisition, Investigation, Methodology, Project administration, Resources, Supervision, Writing – original draft, Writing – review & editing
E-mail: [email protected] (CV); [email protected] (JMPG)
Affiliation: Galicia Sur Health Research Institute (IIS Galicia Sur), Cardiovascular Research Group, Vigo, Spain
ORICD: https://orcid.org/0000-0003-4165-5049
José María Prieto-González
Roles: Conceptualization, Formal analysis, Investigation, Supervision, Writing – review & editing
E-mail: [email protected] (CV); [email protected] (JMPG)
Affiliations: Health Research Institute of Santiago de Compostela (IDIS), Translational Research in Neurological Diseases Group, Santiago University Hospital Complex, SERGAS-USC, Santiago de Compostela, Spain, Neuro Epigenetics Lab, Health Research Institute of Santiago de Compostela (IDIS), Santiago University Hospital Complex, Santiago de Compostela, Spain, Neurology Service, Santiago University Hospital Complex, Santiago de Compostela, Spain
ORICD: https://orcid.org/0000-0002-8170-0724
José A. González-Nóvoa
Roles: Investigation, Methodology, Software, Validation, Writing – review & editing
Affiliation: Galicia Sur Health Research Institute (IIS Galicia Sur), Cardiovascular Research Group, Vigo, Spain
ORICD: https://orcid.org/0000-0003-2334-1556
Laura Busto
Roles: Investigation, Methodology, Writing – review & editing
Affiliation: Galicia Sur Health Research Institute (IIS Galicia Sur), Cardiovascular Research Group, Vigo, Spain
Carlos Martinez
Roles: Investigation, Writing – review & editing
Affiliation: Galicia Sur Health Research Institute (IIS Galicia Sur), Cardiovascular Research Group, Vigo, Spain
Miguel Alberte-Woodward
Roles: Investigation, Supervision, Writing – review & editing
Affiliations: Health Research Institute of Santiago de Compostela (IDIS), Translational Research in Neurological Diseases Group, Santiago University Hospital Complex, SERGAS-USC, Santiago de Compostela, Spain, Neuro Epigenetics Lab, Health Research Institute of Santiago de Compostela (IDIS), Santiago University Hospital Complex, Santiago de Compostela, Spain, Neurology Service, Santiago University Hospital Complex, Santiago de Compostela, Spain
ORICD: https://orcid.org/0000-0002-7537-8740
Jesús García de Soto
Roles: Investigation, Writing – review & editing
Affiliations: Health Research Institute of Santiago de Compostela (IDIS), Translational Research in Neurological Diseases Group, Santiago University Hospital Complex, SERGAS-USC, Santiago de Compostela, Spain, Neuro Epigenetics Lab, Health Research Institute of Santiago de Compostela (IDIS), Santiago University Hospital Complex, Santiago de Compostela, Spain, Neurology Service, Santiago University Hospital Complex, Santiago de Compostela, Spain
ORICD: https://orcid.org/0000-0003-1774-4922
Jessica Pouso-Diz
Roles: Investigation, Writing – review & editing
Affiliations: Health Research Institute of Santiago de Compostela (IDIS), Translational Research in Neurological Diseases Group, Santiago University Hospital Complex, SERGAS-USC, Santiago de Compostela, Spain, Neuro Epigenetics Lab, Health Research Institute of Santiago de Compostela (IDIS), Santiago University Hospital Complex, Santiago de Compostela, Spain, Neurology Service, Santiago University Hospital Complex, Santiago de Compostela, Spain
María de los Ángeles Fernández Ceballos
Roles: Investigation, Writing – review & editing
Affiliations: Health Research Institute of Santiago de Compostela (IDIS), Translational Research in Neurological Diseases Group, Santiago University Hospital Complex, SERGAS-USC, Santiago de Compostela, Spain, Neuro Epigenetics Lab, Health Research Institute of Santiago de Compostela (IDIS), Santiago University Hospital Complex, Santiago de Compostela, Spain, Neurology Service, Santiago University Hospital Complex, Santiago de Compostela, Spain
Roberto Carlos Agis-Balboa
Roles: Conceptualization, Funding acquisition, Investigation, Methodology, Project administration, Supervision, Writing – review & editing
Affiliations: Health Research Institute of Santiago de Compostela (IDIS), Translational Research in Neurological Diseases Group, Santiago University Hospital Complex, SERGAS-USC, Santiago de Compostela, Spain, Neuro Epigenetics Lab, Health Research Institute of Santiago de Compostela (IDIS), Santiago University Hospital Complex, Santiago de Compostela, Spain, Neurology Service, Santiago University Hospital Complex, Santiago de Compostela, Spain
ORICD: https://orcid.org/0000-0001-9899-9569
[/RAW_REF_TEXT]
[/RAW_REF_TEXT]
1. Meca-Lallana JE, Casanova B, Rodríguez-Antigüedad A, Eichau S, Izquierdo G, Durán C, et al. Consensus on early detection of disease progression in patients with multiple sclerosis. Front Neurol. 2022 Jul 28; 13:931014. pmid:35968319
2. Kappos L, Wolinsky JS, Giovannoni G, Arnold DL, Wang Q, Bernasconi C, et al. Contribution of Relapse-Independent Progression vs Relapse-Associated Worsening to Overall Confirmed Disability Accumulation in Typical Relapsing Multiple Sclerosis in a Pooled Analysis of 2 Randomized Clinical Trials. JAMA Neurol. 2020 Sep 1;77(9):1132. pmid:32511687
3. Bordi I, Umeton R, Ricigliano VAG, Annibali V, Mechelli R, Ristori G, et al. A Mechanistic, Stochastic Model Helps Understand Multiple Sclerosis Course and Pathogenesis. International Journal of Genomics. 2013; 2013:1–10. pmid:23671846
4. Rotstein D, Montalban X. Reaching an evidence-based prognosis for personalized treatment of multiple sclerosis. Nat Rev Neurol. 2019 May;15(5):287–300. pmid:30940920
5. Arevalo O, Riascos R, Rabiei P, Kamali A, Nelson F. Standardizing Magnetic Resonance Imaging Protocols, Requisitions, and Reports in Multiple Sclerosis: An Update for Radiologist Based on 2017 Magnetic Resonance Imaging in Multiple Sclerosis and 2018 Consortium of Multiple Sclerosis Centers Consensus Guidelines. J Comput Assist Tomogr. 2019 Jan;43(1):1–12. pmid:30015803
6. Weidauer S, Raab P, Hattingen E. Diagnostic approach in multiple sclerosis with MRI: an update. Clinical Imaging. 2021 Oct; 78:276–85. pmid:34174655
7. Barkhof F. Comparison of MRI criteria at first presentation to predict conversion to clinically definite multiple sclerosis. Brain. 1997 Nov 1;120(11):2059–69. pmid:9397021
8. Paty DW, Oger JJF, Kastrukoff LF, Hashimoto SA, Hooge JP, Eisen AA, et al. MRI in the diagnosis of MS: A prospective study with comparison of clinical evaluation, evoked potentials, oligoclonal banding, and CT. Neurology. 1988 Feb 1;38(2):180–180. pmid:3340277
9. Costa Arpín E, Naveiro Soneira J, Lema Bouzas M, González Quintela A, Prieto González JM. Epidemiology of multiple sclerosis in Santiago de Compostela (Spain). Acta Neurol Scand. 2020 Sep;142(3):267–74. pmid:32392359
10. Zhao Y, Wang T, Bove R, Cree B, Henry R, Lokhande H, et al. Ensemble learning predicts multiple sclerosis disease course in the SUMMIT study. npj Digit Med. 2020 Oct 16;3(1):135.
11. Bejarano B, Bianco M, Gonzalez-Moron D, Sepulcre J, Goñi J, Arcocha J, et al. Computational classifiers for predicting the short-term course of Multiple sclerosis. BMC Neurol. 2011 Dec;11(1):67. pmid:21649880
12. Topol EJ. High-performance medicine: the convergence of human and artificial intelligence. Nat Med. 2019 Jan;25(1):44–56. pmid:30617339
13. Hernandez M, Ramon-Julvez U, Vilades E, Cordon B, Mayordomo E, Garcia-Martin E. Explainable artificial intelligence toward usable and trustworthy computer-aided diagnosis of multiple sclerosis from Optical Coherence Tomography. Raafat KA, editor. PLoS ONE. 2023 Aug 7;18(8):e0289495. pmid:37549174
14. Myszczynska MA, Ojamies PN, Lacoste AMB, Neil D, Saffari A, Mead R, et al. Applications of machine learning to diagnosis and treatment of neurodegenerative diseases. Nat Rev Neurol. 2020 Aug;16(8):440–56. pmid:32669685
15. Campanioni S, González-Nóvoa JA, Busto L, Agís-Balboa RC, Veiga C. Data-Driven Phenotyping of Alzheimer’s Disease under Epigenetic Conditions Using Partial Volume Correction of PET Studies and Manifold Learning. Biomedicines. 2023 Jan 19;11(2):273. pmid:36830810
16. Everest E, Uygunoglu U, Tutuncu M, Bulbul A, Onat UI, Unal M, et al. Prospective outcome analysis of multiple sclerosis cases reveals candidate prognostic cerebrospinal fluid markers. Maric G, editor. PLoS ONE. 2023 Jun 20;18(6):e0287463. pmid:37339131
17. Yperman J, Becker T, Valkenborg D, Popescu V, Hellings N, Wijmeersch BV, et al. Machine learning analysis of motor evoked potential time series to predict disability progression in multiple sclerosis. BMC Neurol. 2020 Dec;20(1):105. pmid:32199461
18. Kurtzke JF. Rating neurologic impairment in multiple sclerosis: An expanded disability status scale (EDSS). Neurology. 1983 Nov 1;33(11):1444–1444. pmid:6685237
19. Chen T, Guestrin C. XGBoost: A Scalable Tree Boosting System. In: Proceedings of the 22nd ACM SIGKDD International Conference on Knowledge Discovery and Data Mining [Internet]. San Francisco California USA: ACM; 2016 [cited 2023 Nov 7]. p. 785–94. https://dl.acm.org/doi/10.1145/2939672.2939785.
20. González-Nóvoa JA, Busto L, Campanioni S, Fariña J, Rodríguez-Andina JJ, Vila D, et al. Two-Step Approach for Occupancy Estimation in Intensive Care Units Based on Bayesian Optimization Techniques. Sensors. 2023 Jan 19;23(3):1162. pmid:36772202
21. Dharmarathne G, Jayasinghe TN, Bogahawaththa M, Meddage DPP, Rathnayake U. A novel machine learning approach for diagnosing diabetes with a self-explainable interface. Healthcare Analytics. 2024 Jun;5:100301.
22. Hossain MM, Ali MS, Ahmed MM, Rakib MRH, Kona MA, Afrin S, et al. Cardiovascular disease identification using a hybrid CNN-LSTM model with explainable AI. Informatics in Medicine Unlocked. 2023;42:101370.
23. Lundberg S, Lee SI. A Unified Approach to Interpreting Model Predictions [Internet]. arXiv; 2017 [cited 2023 Nov 7]. http://arxiv.org/abs/1705.07874.
24. Ghosh SK, Khandoker AH. Investigation on explainable machine learning models to predict chronic kidney diseases. Sci Rep. 2024 Feb 14;14(1):3687. pmid:38355876
25. Marill KA. Advanced Statistics: Linear Regression, Part II: Multiple Linear Regression. Academic Emergency Medicine. 2004 Jan;11(1):94–102.
26. Ramsaransing GSM, De Keyser J. Benign course in multiple sclerosis: a review. Acta Neurol Scand. 2006 Jun;113(6):359–69. pmid:16674602
27. Iacobaeus E, Arrambide G, Amato MP, Derfuss T, Vukusic S, Hemmer B, et al. Aggressive multiple sclerosis (1): Towards a definition of the phenotype. Mult Scler. 2020 Aug;26(9):1031–44. pmid:32530385
28. Pinto MF, Oliveira H, Batista S, Cruz L, Pinto M, Correia I, et al. Prediction of disease progression and outcomes in multiple sclerosis with machine learning. Sci Rep. 2020 Dec 3;10(1):21038. pmid:33273676
29. De Brouwer E, Becker T, Moreau Y, Havrdova EK, Trojano M, Eichau S, et al. Longitudinal machine learning modeling of MS patient trajectories improves predictions of disability progression. Computer Methods and Programs in Biomedicine. 2021 Sep; 208:106180. pmid:34146771
30. Ferrè L, Clarelli F, Pignolet B, Mascia E, Frasca M, Santoro S, et al. Combining Clinical and Genetic Data to Predict Response to Fingolimod Treatment in Relapsing Remitting Multiple Sclerosis Patients: A Precision Medicine Approach. JPM. 2023 Jan 6;13(1):122. pmid:36675783
31. Tintoré M, Rovira A, Río J, Nos C, Grivé E, Téllez N, et al. Baseline MRI predicts fuure attacks and disability in clinically isolated syndromes. Neurology. 2006 Sep 26;67(6):968–72.
32. Al-iedani O, Lea S, Alshehri A, Maltby VE, Saugbjerg B, Ramadan S, et al. Multi-modal neuroimaging signatures predict cognitive decline in multiple sclerosis: A 5-year longitudinal study. Multiple Sclerosis and Related Disorders. 2024 Jan; 81:105379. pmid:38103511
33. Guillemin F, Baumann C, Epstein J, Kerschen P, Garot T, Mathey G, et al. Older Age at Multiple Sclerosis Onset Is an Independent Factor of Poor Prognosis: A Population-Based Cohort Study. Neuroepidemiology. 2017;48(3–4):179–87. pmid:28793296
34. Briggs FBS, Yu JC, Davis MF, Jiangyang J, Fu S, Parrotta E, et al. Multiple sclerosis risk factors contribute to onset heterogeneity. Multiple Sclerosis and Related Disorders. 2019 Feb; 28:11–6. pmid:30529925
35. Martinelli V, Rodegher M, Moiola L, Comi G. Late onset multiple sclerosis: clinical characteristics, prognostic factors and differential diagnosis. Neurol Sci. 2004 Nov;25(S4): s350–5. pmid:15727232
36. Popescu Veronica, Agosta Federica, Hulst Hanneke E, Sluimer Ingrid C, Knol Dirk L, Sormani Maria Pia, et al. Brain atrophy and lesion load predict long term disability in multiple sclerosis. J Neurol Neurosurg Psychiatry. 2013 Oct 1;84(10):1082. pmid:23524331
37. Vellinga MM, Geurts JJG, Rostrup E, Uitdehaag BMJ, Polman CH, Barkhof F, et al. Clinical correlations of brain lesion distribution in multiple sclerosis. Magnetic Resonance Imaging. 2009 Apr; 29 (4): 768–73. pmid:19306365
You have requested "on-the-fly" machine translation of selected content from our databases. This functionality is provided solely for your convenience and is in no way intended to replace human translation. Show full disclaimer
Neither ProQuest nor its licensors make any representations or warranties with respect to the translations. The translations are automatically generated "AS IS" and "AS AVAILABLE" and are not retained in our systems. PROQUEST AND ITS LICENSORS SPECIFICALLY DISCLAIM ANY AND ALL EXPRESS OR IMPLIED WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES FOR AVAILABILITY, ACCURACY, TIMELINESS, COMPLETENESS, NON-INFRINGMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Your use of the translations is subject to all use restrictions contained in your Electronic Products License Agreement and by using the translation functionality you agree to forgo any and all claims against ProQuest or its licensors for your use of the translation functionality and any output derived there from. Hide full disclaimer
© 2024 Campanioni et al. This is an open access article distributed under the terms of the Creative Commons Attribution License: http://creativecommons.org/licenses/by/4.0/ (the “License”), which permits unrestricted use, distribution, and reproduction in any medium, provided the original author and source are credited. Notwithstanding the ProQuest Terms and Conditions, you may use this content in accordance with the terms of the License.
Abstract
Multiple sclerosis (MS) is a multifaceted neurological condition characterized by challenges in timely diagnosis and personalized patient management. The application of Artificial Intelligence (AI) to MS holds promises for early detection, accurate diagnosis, and predictive modeling. The objectives of this study are: 1) to propose new MS trajectory descriptors that could be employed in Machine Learning (ML) regressors and classifiers to predict patient evolution; 2) to explore the contribution of ML models in discerning MS trajectory descriptors using only baseline Magnetic Resonance Imaging (MRI) studies. This study involved 446 MS patients who had a baseline MRI, at least two measurements of Expanded Disability Status Scale (EDSS), and a 1-year follow-up. Patients were divided into two groups: 1) for model development and 2) for evaluation. Three descriptors: β1, β2, and EDSS(t), were related to baseline MRI parameters using regression and classification XGBoost models. Shapley Additive Explanations (SHAP) analysis enhanced model transparency by identifying influential features. The results of this study demonstrate the potential of AI in predicting MS progression using the proposed patient trajectories and baseline MRI scans, outperforming classic Multiple Linear Regression (MLR) methods. In conclusion, MS trajectory descriptors are crucial; incorporating AI analysis into MRI assessments presents promising opportunities to advance predictive capabilities. SHAP analysis enhances model interpretation, revealing feature importance for clinical decisions.
You have requested "on-the-fly" machine translation of selected content from our databases. This functionality is provided solely for your convenience and is in no way intended to replace human translation. Show full disclaimer
Neither ProQuest nor its licensors make any representations or warranties with respect to the translations. The translations are automatically generated "AS IS" and "AS AVAILABLE" and are not retained in our systems. PROQUEST AND ITS LICENSORS SPECIFICALLY DISCLAIM ANY AND ALL EXPRESS OR IMPLIED WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES FOR AVAILABILITY, ACCURACY, TIMELINESS, COMPLETENESS, NON-INFRINGMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Your use of the translations is subject to all use restrictions contained in your Electronic Products License Agreement and by using the translation functionality you agree to forgo any and all claims against ProQuest or its licensors for your use of the translation functionality and any output derived there from. Hide full disclaimer