Next Article in Journal
Risk of Acute Myocardial Infarction Among New Users of Allopurinol According to Serum Urate Level: A Nested Case-Control Study
Next Article in Special Issue
Decision Support for the Optimization of Provider Staffing for Hospital Emergency Departments with a Queue-Based Approach
Previous Article in Journal
The Trends in Opioid Use in Castile and Leon, Spain: A Population-Based Registry Analysis of Dispensations in 2015 to 2018
Previous Article in Special Issue
Clinical Validation of Innovative Optical-Sensor-Based, Low-Cost, Rapid Diagnostic Test to Reduce Antimicrobial Resistance
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

Predicting Long-Term Health-Related Quality of Life after Bariatric Surgery Using a Conventional Neural Network: A Study Based on the Scandinavian Obesity Surgery Registry

1
Clinical Epidemiology and Biostatistics, School of Medical Sciences, Örebro University, 70182 Örebro, Sweden
2
Department of Surgery, Faculty of Medicine and Health, Örebro University, 70182 Örebro, Sweden
3
Clinical Epidemiology Division, Department of Medicine, Karolinska Institutet, 17177 Stockholm, Sweden
4
Department of Epidemiology and Public Health, University College London, London WC1E 6BT, UK
*
Author to whom correspondence should be addressed.
J. Clin. Med. 2019, 8(12), 2149; https://doi.org/10.3390/jcm8122149
Submission received: 4 November 2019 / Revised: 2 December 2019 / Accepted: 3 December 2019 / Published: 5 December 2019
(This article belongs to the Special Issue Clinical Medicine for Healthcare and Sustainability)

Abstract

:
Severe obesity has been associated with numerous comorbidities and reduced health-related quality of life (HRQoL). Although many studies have reported changes in HRQoL after bariatric surgery, few were long-term prospective studies. We examined the performance of the convolution neural network (CNN) for predicting 5-year HRQoL after bariatric surgery based on the available preoperative information from the Scandinavian Obesity Surgery Registry (SOReg). CNN was used to predict the 5-year HRQoL after bariatric surgery in a training dataset and evaluated in a test dataset. In general, performance of the CNN model (measured as mean squared error, MSE) increased with more convolution layer filters, computation units, and epochs, and decreased with a larger batch size. The CNN model showed an overwhelming advantage in predicting all the HRQoL measures. The MSEs of the CNN model for training data were 8% to 80% smaller than those of the linear regression model. When the models were evaluated using the test data, the CNN model performed better than the linear regression model. However, the issue of overfitting was apparent in the CNN model. We concluded that the performance of the CNN is better than the traditional multivariate linear regression model in predicting long-term HRQoL after bariatric surgery; however, the overfitting issue needs to be mitigated using more features or more patients to train the model.

1. Introduction

Severe obesity, defined as having a body mass index (BMI) greater than 40 kg/m2 or greater than 35 kg/m2 plus at least one obesity-related comorbidity [1,2], has been associated with numerous health outcomes and reduced health-related quality of life (HRQoL) [3,4,5,6,7,8]. HRQoL measures population health multi-dimensionally from physical, mental, emotional, and social functioning domains, which have already been identified as an important indication for bariatric surgery and recognized by the United States National Institutes of Health Conference as early as 1991 [9,10]. Although many studies have reported changes in HROoL after bariatric surgery, few are long-term prospective studies. A systematic review of seven prospective cohort studies with a follow-up time of ≥5 years revealed that bariatric surgery patients reported considerably improved HRQoL and the improvement was maintained over the long term [11]. However, many patients still experience reduced HRQoL after surgery. In our study, 39% of patients had significant improvements in physical functioning (PF) (increased by >25 in the original score or >0.25 in the scaled score), and the rest had no significant improvement and some patients (2%) even had significant deterioration (reduced by >25 in the original score or >0.25 in the scaled score). No relationship between the PF scores before and 5 years after surgery was identified (Figure S1).
Although some preoperative psychological factors, including personality change, severe psychiatric disorder, or depressive symptoms, are associated with postoperative HRQoL after bariatric surgery [12,13], whether long-term HRQoL after bariatric surgery can be predicted based on patients’ baseline features has not been investigated. The present study examined the performance of the convolution neural network (CNN) for predicting 5-year HRQoL after bariatric surgery based on the available preoperative information from a national quality registry, and compared CNN with a conventional linear regression estimator.

2. Material and Methods

2.1. Patients and Features

Data for the patients registered in the Scandinavian Obesity Surgery Registry (SOReg) were used for the current study. The SOReg was launched in 2007 and covers 98% of bariatric surgery in Sweden since 2009. SOReg is validated regularly and has been shown to have high data quality [14]. In total, 27 - of 42 operating centers in Sweden participate in the HRQoL registration in SOReg. HRQoL was measured using the RAND-SF-36 and the obesity-related problems (OP) scale preoperatively and 1, 2, and 5 years after surgery. In the present study, preoperative and 5-year HRQoL data, including PF, role physical (RP), bodily pain (BP), general health (GH), vitality (VT), social functioning (SF), role emotional (RE), mental health (MH) scale, summary physical scale (PCS), summary mental scale (MCS), and OP, were used. All scale scores ranged from 0 to 100, with higher scores indicating better health status except for OP, where low values represent good health. Eight baseline features, including sex, age, BMI, sleep apnea syndrome (SAS), hypertension, diabetes, dyslipidemia, and depression, were also used as predictors.
In total, 6687 patients with complete information on 19 baseline features and 11 5-year HRQoL measures were used in the machine learning study.
The data that support the study are not publicly available because they contain information that could compromise research participant privacy and confidentiality. The authors will make the data available upon reasonable request and with permission of the Committee of Scandinavian Obesity Surgery Registry in Örebro, Sweden.

2.2. Feature Scaling

Before machine learning, the features in the dataset were scaled. The binary features were converted into dummy variables, and the continuous features were scaled to between 0 and 1 using a min-max scaler. In the sensitivity analysis, the normalizer and standardizer scalers were also used to evaluate the influence of scalers on the model’s performance.

2.3. Conventional Neural Network

A CNN is a regularized version of a multi-layer perceptron neural network, which was inspired by a biological process where the connectivity pattern between neurons resembles the organization of the visual cortex [15]. Although not specifically developed for non-image data, CNN may achieve state-of-the-art results on regression prediction problems, especially for data with time series or spatial patterns. The CNN input is traditionally two-dimensional (2D) but can also be changed to be one-dimensional (1D), allowing it to develop an internal representation of a 1D sequence. In our study, we used a CNN with seven hidden layers, including two 1D convolution layers (with 10 filters for each), two 1D max pooling layers, one flattened layer, and two dense layers (with 1000 computation units). The rectified linear unit (relu) activation function was used for the convolution layers and dense layers, and the normal distribution was used to initialize weights in the layers. The mean squared error was used as the loss function and the an Adadelta algorithm was used as optimizer when compiling the model [16]. The structure of the CNN model is shown in Figure S2.

2.4. Model Validation and Evaluation

In total, 20% of the patients were randomly selected as a test dataset for the final evaluation of the data, and the rest of the patients were used as the training dataset. To find optimal high-level parameters (like the number, size, and type of layers in the networks) and lower-level parameters (like the number of epochs, choice of loss function and activation function, and optimization procedure) in the CNN model, the K-fold cross validation method was used during the training phase [17]. We split the training data into 5 partitions, instantiated 5 identical models, and trained each one on 4 partitions while validating on the remaining partition. The performance of each model was evaluated using the mean squared error (MSE) because of the existence of zero values in the outcome variables. We then computed the average performance over the 5 folds. In the end, the choice of the parameters was a compromise between the model’s performance and computing time, i.e., the model with both the smallest validation error and a shorter computing time was deemed an optimal model. The training, validation, and final evaluation process is shown in Figure S3.
To avoid overuse of the deep learning method for prediction, we also applied a simple multivariate linear regression model as an estimator to predict the 5-year HRQoL scores, and compared the performance between the linear regression model and the CNN model.

2.5. Software and Hardware

The descriptive and inferential statistical analyses were performed using Stata 15.1 (StataCorp LLC, College Station, TX, USA). The CNN and multiple linear regression models were achieved using packages scikit-learn 0.21.2 and Keras 2.2.4 in Python 3.6 (Python Software Foundation, https://www.python.org/).
All of the computation was conducted in a computer with a 64-bit Windows 7 Enterprise operation system (Service Pack 1), Intel ® Core TM i5-4210U CPU @ 2.40 GHz, and 16.0 GB random access memory.

3. Results

3.1. Descriptive Analysis of the Data

In total, 6687 patients registered in SOReg between 2008 and 2012 with complete demographic and preoperative comorbidity information, and preoperative and 5-year HROoL scores were included in the study. The characteristics of the patients are shown in Table 1. Briefly, the average age and BMI of the patients were 42.7 years and 42.3 kg/m2, respectively. More than three quarters (77%) were female and 45% had at least one of the five comorbidities (SAS, hypertension, diabetes, depression, and dyslipidemia) before bariatric surgery.

3.2. Performance of the CNN Model in the K-Fold Cross-Validation

We analyzed 11 HRQoL scores in the study. To make our description concise, we used the PF score as an example of our data analysis as follows.
In general, the performance of the CNN model (measured as the MSE) increased with more convolution layer filters, computation units, and epochs, and decreased with a larger batch size. Although the performance increased with the model’s complexity, the computing time increased exponentially. When we set the number of computation units and filters to be large enough (1000 and 10, respectively) and the batch size was small enough (10), the performance of the CNN model in K-fold cross-validation is shown in Figure 1. The performance was not stable when the number of epochs was small and changed dramatically depending on the random seed used in training (Figure 1). When the number of epochs was >40, the model presented smaller MSE than the linear regression model (0.032 vs. 0.035, Figure 1 and Figure 2). Although more epochs reduced the MSE in the CNN model, the computing time increased exponentially, indicating a higher cost in machine learning (Figure 1). The MSE of the linear regression model appeared constant when the number of epochs >40 (Figure 2), which means the prediction cannot be improved with more epochs. The cross-validation indicates that the CNN model may provide better prediction but at the expense of the computing time.

3.3. Performance of the CNN Model in the Final Evaluation

When the models were evaluated using the test data that were not seen previously by the models, in general, the CNN model presented a better performance (solid line in Figure 3b) than the linear regression model (solid line in Figure 3a) with epochs >40. Although overfitting was presented sporadically in the CNN model (comparing the solid line with the dotted line in Figure 3b), the performance improved gradually with an increased number of epochs while remaining constant in the linear regression model.
Finally, we used 40 epochs for the CNN model, and predicted PF scores for both the training data and the test data. Clear correlations can be seen between the predicted values and observed values in the training data, with an MSE of 0.032 for the CNN model (Figure 3d and Table 2) compared to the MSE of 0.033 seen in the linear regression model (Figure 3c and Table 2). For the test data, the CNN model had an MSE of 0.035 (Figure 3f and Table 2) compared with 0.034 (Figure 3e and Table 2) from the linear regression model. Although the CNN model provided better prediction than the linear regression model for the test data, the overfitting became apparent in some situations when the model learned patterns more specific to the training data.

3.4. Performance of CNN in Predicting Other HRQoL Measures

The relationships between the baseline and the 5-year scores of other HRQoL measures in the test data are shown in Figure 4. Except for GH and VT, no clear relationship between the baseline and the observed 5-year scores is seen for the HRQoL measures (Figure 4, plots a1–j1). However, the predicted 5-year scores based on the baseline scores and the CNN model show clear correlations with the observed 5-year scores for BP, GH, VT, MH, MCS, and OP (Figure 4, plots a2–j2).
We compared the performance of the CNN model and the linear regression model for all the HRQoL measures in both the training data and the test data. The CNN model showed an overwhelming advantage in predicting all the HRQoL measures. The MSEs of the CNN model for the training data were 8% to 80% smaller than those of the linear regression model (Table 2). The overfitting was also apparent in the CNN model, i.e., the MSEs of the CNN model for the test data were all greater than those of the linear regression model (Table 2).

3.5. Sensitivity Analysis and Computing Time

We also conducted sensitivity analysis using different scalers and optimizers in data preparation and model compiling, and tuned the hyperparameters using the exhaustive grid search method [18]. Although they showed more or less influence on the models’ performance, the influence was negligible when the number of epochs was large and the batch size was small. The computing time for the CNN model largely depends on the hyperparameter settings of the layers, number of epochs and the batch size for training, and the software and hardware used. In our study, with the model structures and hyperparameters shown in Figure S2, the running time ranged from 70 (epoch = 40, batch size = 10, without cross-validation) to 595 s (epoch = 400, batch size = 10, with five cross-validations) on our computer.

4. Discussion

Machine learning methods to predict HRQoL have been used in elderly with chronic diseases [19], cervical cancer patients [20], and osteoarthritis patients [21]. However, to our knowledge, they have not been used to predict the postoperative HRQoL of patients undergoing bariatric surgery. We explored the feasibility and capacity of a deep learning method, i.e., convolution neural network, to predict long-term HRQoL after bariatric surgery using a national register. The study can only be achieved based on a well-maintained and high-quality longitudinal database with long-term follow-up like SOReg [22].
Our results indicate that 5-year HRQoL after bariatric surgery may be well predicted preoperatively for some scale domains like PF, BP, GH, VT, MH, MCS, and OP. In our study, we aimed to evaluate and predict the quality of life of patients after bariatric surgery. Some patients were not “satisfied” even when they lost weight. Other factors, such as complications during follow-up and preoperative pharmacologic drug treatment, are associated with a change of the quality of life after bariatric surgery, whereas age, sex, and preoperative metabolic comorbidity may also play a role [11,23,24,25]. Our findings may provide important information for postoperative care and rehabilitation for this group of patients.
Our research question was about predicting continuous outcomes using supervised deep learning methods, which could be converted to a question of supervised two- or multi-class classification, i.e., to predict whether the quality of life of the patient has improved, remained unchanged, or deteriorated. Although the precision of prediction might be reduced in classification, the accuracy might be enhanced, and the method might be more applicable for clinical use. We would like to investigate the question in future studies.
There has been a warning that healthcare researchers should not be overly enthralled by the promises of deep learning methods [26]. Therefore, to avoid abusing the deep learning method in our study, we also compared the performance of the CNN model with a conventional statistical learning method for continuous variables, using a multivariate linear regression model. Although the conventional statistical methods require sometimes complex processing (feature engineering) to extract the requisite discriminative features, they may provide more interpretable results compared to the deep learning methods. In contrast, the biggest advantage of deep learning methods is that they try to learn high-level features from data in an incremental manner, which eliminates the need for domain expertise and hard-core feature extraction. However, the generalizability of deep learning models relies largely on the data they learned, and overfitting on unseen data is more apparent, as observed in our study. Although there are some ways in which we may reduce overfitting in deep learning models, the rule of thumb is to use more training data.
There are potential limitations to our study. In total, 28,293 patients underwent surgery for a primary gastric bypass between 2008 and 2012 and had a follow-up longer than 5 years when the study was initiated. However, only less than one quarter of the patients who had complete HRQoL information could be used for the machine learning. Compared to the patients who had no or incomplete HRQoL information, the patients with complete relevant data were older (42.7 ± 11.0 vs. 40.4 ± 10.8 years), had fewer males (21.2% vs. 25.1%), and lower BMI (42.3 ± 5.2 vs. 42.8 ± 5.5 kg/m2). These factors have already been shown to influence HRQoL [27,28,29]. Because of these systematic differences in HRQoL between the patients with and without HRQoL measures, the generalizability of our CNN model may be questionable. The missing information needs to be imputed in the future for deep machine learning. We would also point out that the CNN built in our study was only based on features from gastric bypass patients, which cannot be generalized to other surgical procedures or health conditions. The application of CNN in predicting prognosis after surgeries still needs to be investigated using large data from the real world.

5. Conclusions

CNN can be used to predict long-term HRQoL after bariatric surgery based on the baseline features of patients. The performance of the CNN was found to be better than the traditional multivariate linear regression model; however, its overfitting on unseen data needs to be mitigated by using more features of patients or greater use of training data in the future.

Supplementary Materials

The following are available online at https://www.mdpi.com/2077-0383/8/12/2149/s1, Figure S1: Physical functioning (PF) scores before and after bariatric surgery of 6687 patients used in the study. Figure S2: Structure of the conventional neural network (CNN) model used in the study. Figure S3: Process of training, validation and evaluation

Author Contributions

Data curation, M.R.; Formal analysis, Y.C.; Funding acquisition, Y.C.; Investigation, Y.C., M.R., S.M. and I.N.; Methodology, Y.C. and M.R.; Project administration, J.O. and I.N.; Resources, J.O. and I.N.; Software, Y.C.; Validation, Y.C. and S.M.; Visualization, Y.C.; Writing—original draft, Y.C., M.R. and I.N.; Writing—review and editing, Y.C., M.R., S.M., J.O. and I.N.

Funding

Yang Cao’s work was supported by Örebro Region County Council (OLL-864441). The funders had no role in study design, data collection and analysis, decision to publish, or preparation of the manuscript.

Conflicts of Interest

The authors declare no conflict of interest.

References

  1. Kopelman, P.G.; Caterson, I.D.; Dietz, W.H. Clinical Obesity in Adults and Children; John Wiley & Sons: New York, NY, USA, 2009. [Google Scholar]
  2. Organization, W.H. Obesity: Preventing and Managing the Global Epidemic; World Health Organization: Geneva, Switzerland, 2000. [Google Scholar]
  3. Prospective Studies Collaboration; Whitlock, G.; Lewington, S.; Sherliker, P.; Clarke, R.; Emberson, J.; Halsey, J.; Qizilbash, N.; Collins, R.; Peto, R. Body-mass index and cause-specific mortality in 900 000 adults: Collaborative analyses of 57 prospective studies. Lancet 2009, 373, 1083–1096. [Google Scholar] [CrossRef] [PubMed] [Green Version]
  4. Guh, D.P.; Zhang, W.; Bansback, N.; Amarsi, Z.; Birmingham, C.L.; Anis, A.H. The incidence of co-morbidities related to obesity and overweight: A systematic review and meta-analysis. BMC Public Health 2009, 9, 88. [Google Scholar] [CrossRef] [PubMed] [Green Version]
  5. Wawok, P. Evaluation of Quality of Life of patient with obesity after surgical procedure. Eur. J. Med. Res. 2009, 14, 114. [Google Scholar]
  6. Kawatkar, A.A.; Nichol, M.B. The Impact of Obesity on Medical Expenditure and Health Related Quality of Life. Value Health 2009, 12, A134. [Google Scholar] [CrossRef] [Green Version]
  7. Kolotkin, R.L.; Williams, V.S.L.; Ervin, C.M.; Williams, N.; Meincke, H.H.; Qin, S.S.; Smith, L.V.; Fehnel, S.E. Validation of a new measure of quality of life in obesity trials: Impact of Weight on Quality of Life-Lite Clinical Trials Version. Clin. Obes. 2019, 9, e12310. [Google Scholar] [CrossRef]
  8. Dreber, H.; Thorell, A.; Reynisdottir, S.; Hemmingsson, E. Health-Related Quality of Life 5Years After Roux-en-Y Gastric Bypass in Young (18-25Years) Versus Older (26Years) Adults: A Scandinavian Obesity Surgery Registry Study. Obes. Surg. 2019, 29, 434–443. [Google Scholar] [CrossRef]
  9. Consensus Development Conference Panel. NIH conference. Gastrointestinal surgery for severe obesity. Consensus Development Conference Panel. Ann. Intern. Med. 1991, 115, 956–961. [Google Scholar] [CrossRef]
  10. Mazer, L.M.; Azagury, D.E.; Morton, J.M. Quality of Life After Bariatric Surgery. Curr. Obes. Rep. 2017, 6, 204–210. [Google Scholar] [CrossRef] [PubMed]
  11. Andersen, J.R.; Aasprang, A.; Karlsen, T.I.; Natvig, G.K.; Vage, V.; Kolotkin, R.L. Health-related quality of life after bariatric surgery: A systematic review of prospective long-term studies. Surg. Obes. Relat. Dis. 2015, 11, 466–473. [Google Scholar] [CrossRef] [Green Version]
  12. Wimmelmann, C.L.; Dela, F.; Mortensen, E.L. Psychological predictors of mental health and health-related quality of life after bariatric surgery: A review of the recent research. Obes. Res. Clin. Pract. 2014, 8, e314–e324. [Google Scholar] [CrossRef]
  13. Masheb, R.M.; White, M.A.; Toth, C.M.; Burke-Martindale, C.H.; Rothschild, B.; Grilo, C.M. The prognostic significance of depressive symptoms for predicting quality of life 12 months after gastric bypass. Compr. Psychiatry 2007, 48, 231–236. [Google Scholar] [CrossRef] [PubMed]
  14. Hedenbro, J.L.; Naslund, E.; Boman, L.; Lundegardh, G.; Bylund, A.; Ekelund, M.; Laurenius, A.; Moller, P.; Olbers, T.; Sundbom, M.; et al. Formation of the Scandinavian Obesity Surgery Registry, SOReg. Obes. Surg. 2015, 25, 1893–1900. [Google Scholar] [CrossRef] [PubMed]
  15. Matsugu, M.; Mori, K.; Mitari, Y.; Kaneda, Y. Subject independent facial expression recognition with robust face detection using a convolutional neural network. Neural Netw. 2003, 16, 555–559. [Google Scholar] [CrossRef]
  16. Zeiler, M.D. ADADELTA: An adaptive learning rate method. arXiv 2012, arXiv:1212.5701. [Google Scholar]
  17. Raschka, S.; Mirjalili, V. Python Machine Learning; Packt Publishing Ltd.: Birmingham, UK, 2017. [Google Scholar]
  18. Wilson, A.C.; Roelofs, R.; Stern, M.; Srebro, N.; Recht, B. The Marginal Value of Adaptive Gradient Methods in Machine Learning. Adv. Neural Inf. 2017, 30, 4148–4158. [Google Scholar]
  19. Lee, S.K.; Son, Y.J.; Kim, J.; Kim, H.G.; Lee, J.I.; Kang, B.Y.; Cho, H.S.; Lee, S. Prediction Model for Health-Related Quality of Life of Elderly with Chronic Diseases using Machine Learning Techniques. Healthc. Inf. Res. 2014, 20, 125–134. [Google Scholar] [CrossRef] [Green Version]
  20. Kumar, S.; Rana, M.L.; Verma, K.; Singh, N.; Sharma, A.K.; Maria, A.K.; Dhaliwal, G.S.; Khaira, H.K.; Saini, S. PrediQt-Cx: Post treatment health related quality of life prediction model for cervical cancer patients. PLoS ONE 2014, 9, e89851. [Google Scholar] [CrossRef] [Green Version]
  21. Persson, P.-V.; Rietz, H. Predicting and Analyzing Osteoarthritis Patient Outcomes with Machine Learning; Lund University: Lund, Sweden, 2017. [Google Scholar]
  22. Tao, W.; Holmberg, D.; Naslund, E.; Naslund, I.; Mattsson, F.; Lagergren, J.; Ljung, R. Validation of Obesity Surgery Data in the Swedish National Patient Registry and Scandinavian Obesity Registry (SOReg). Obes. Surg. 2016, 26, 1750–1756. [Google Scholar] [CrossRef]
  23. Hell, E.; Miller, K.A.; Moorehead, M.K.; Norman, S. Evaluation of health status and quality of life after bariatric surgery: Comparison of standard Roux-en-Y gastric bypass, vertical banded gastroplasty and laparoscopic adjustable silicone gastric banding. Obes. Surg. 2000, 10, 214–219. [Google Scholar] [CrossRef]
  24. Dymek, M.P.; Le Grange, D.; Neven, K.; Alverdy, J. Quality of life after gastric bypass surgery: A cross-sectional study. Obes. Res. 2002, 10, 1135–1142. [Google Scholar] [CrossRef] [Green Version]
  25. Major, P.; Matlok, M.; Pedziwiatr, M.; Migaczewski, M.; Budzynski, P.; Stanek, M.; Kisielewski, M.; Natkaniec, M.; Budzynski, A. Quality of Life After Bariatric Surgery. Obes. Surg. 2015, 25, 1703–1710. [Google Scholar] [CrossRef] [PubMed] [Green Version]
  26. Chen, D.; Liu, S.J.; Kingsbury, P.; Sohn, S.; Storlie, C.B.; Habermann, E.B.; Naessens, J.M.; Larson, D.W.; Liu, H.F. Deep learning and alternative learning strategies for retrospective real-world clinical data. NPJ Digit. Med. 2019, 2, 43. [Google Scholar] [CrossRef] [PubMed] [Green Version]
  27. Chang, C.Y.; Hung, C.K.; Chang, Y.Y.; Tai, C.M.; Lin, J.T.; Wang, J.D. Health-related quality of life in adult patients with morbid obesity coming for bariatric surgery. Obes. Surg. 2010, 20, 1121–1127. [Google Scholar] [CrossRef] [PubMed] [Green Version]
  28. Kolotkin, R.L.; Crosby, R.D.; Williams, G.R. Health-related quality of life varies among obese subgroups. Obes. Res. 2002, 10, 748–756. [Google Scholar] [CrossRef] [PubMed]
  29. White, M.A.; O’Neil, P.M.; Kolotkin, R.L.; Byrne, T.K. Gender, race, and obesity-related quality of life at extreme levels of obesity. Obes. Res. 2004, 12, 949–955. [Google Scholar] [CrossRef]
Figure 1. Performance of the convolution neural network (CNN) model in K-fold cross-validation.
Figure 1. Performance of the convolution neural network (CNN) model in K-fold cross-validation.
Jcm 08 02149 g001
Figure 2. Performance of the simple multivariate linear regression model in K-fold cross-validation.
Figure 2. Performance of the simple multivariate linear regression model in K-fold cross-validation.
Jcm 08 02149 g002
Figure 3. Model performance of the simple linear estimator and the CNN estimator. The dots in the plots (c)–(f) were jittered to avoid a heavy overlap of patients with the same coordinates. CNN, convolution neural network.
Figure 3. Model performance of the simple linear estimator and the CNN estimator. The dots in the plots (c)–(f) were jittered to avoid a heavy overlap of patients with the same coordinates. CNN, convolution neural network.
Jcm 08 02149 g003
Figure 4. Correlation of the observed 5-year scores with the observed baseline scores and predicted scores for test data. The dots in the plots were jittered to avoid a heavy overlap of patients with the same coordinates. RP, role physical; BP, bodily pain; GH, general health; VT, vitality; SF, social functioning; RE, role emotional; MH, mental health; PCS, summary physical scale; MCS, summary mental scale; OP, obesity-related problems.
Figure 4. Correlation of the observed 5-year scores with the observed baseline scores and predicted scores for test data. The dots in the plots were jittered to avoid a heavy overlap of patients with the same coordinates. RP, role physical; BP, bodily pain; GH, general health; VT, vitality; SF, social functioning; RE, role emotional; MH, mental health; PCS, summary physical scale; MCS, summary mental scale; OP, obesity-related problems.
Jcm 08 02149 g004
Table 1. Characteristics of the patients (n = 6687) included in the study, mean (SD) or n (%).
Table 1. Characteristics of the patients (n = 6687) included in the study, mean (SD) or n (%).
PreoperativeFive Years after Bariatric Surgery
OriginalScaledOriginalScaled
Age (year)42.7 (11.0)0.494 (0.197)47.7 (11.0)0.494 (0.197)
BMI (kg/m2)42.3 (5.2)0.241 (0.103)30.3 (5.2)0.358 (0.127)
Female5259 (77%)NA5259 (77%)NA
SAS680 (10%)NANANA
Hypertension1851 (27%)NANANA
Diabetes990 (15%)NANANA
Depression884 (13%)NANANA
Dyslipidemia747 (11%)NANANA
PF61.6 (21.9)0.616 (0.219)84.2 (20.7)0.842 (0.207)
RP60.2 (38.9)0.602 (0.389)77.8 (36.6)0.778 (0.366)
BP56.0 (26.8)0.560 (0.268)65.1 (30.8)0.651 (0.308)
GH58.2 (21.4)0.582 (0.214)68.0 (24.7)0.680 (0.247)
VT47.3 (23.0)0.473 (0.230)54.5 (26.9)0.545 (0.269)
SF74.8 (26.1)0.748 (0.261)79.5(26.5)0.795 (0.265)
RE75.9 (36.2)0.759 (0.362)76.7 (37.9)0.767 (0.379)
MH71.5 (19.4)0.715 (0.194)72.0 (23.0)0.720 (0.230)
PCS38.3 (10.7)0.567 (0.177)47.6 (11.1)0.653 (0.163)
MCS46.8 (11.7)0.621 (0.172)44.6 (13.8)0.621 (0.192)
OP61.0 (26.3)0.610 (0.263)25.6 (27.4)0.256 (0.274)
SD, standard deviation; NA, not applicable; BMI, body mass index; SAS, sleep apnea syndrome; PF, physical functioning; RP, role-physical; BP, bodily pain; GH, general health; VT, vitality; SF, social functioning; RE, role-emotional; MH, mental health; PCS, summary physical scale; MCS, summary mental scale; OP, obesity-related problems.
Table 2. Mean squared errors (MSEs) of the CNN model and the multivariate linear regression model.
Table 2. Mean squared errors (MSEs) of the CNN model and the multivariate linear regression model.
HRQoL MeasureTraining DataTest Data
CNN ModelLinear Regression ModelCNN ModelLinear Regression Model
PF0.03160.03290.03500.0343
RP0.10780.11780.13240.1211
BP0.06040.07630.08980.0772
GH0.02800.04970.06180.0508
VT0.03030.05720.09140.0625
SF0.02130.06000.09950.0588
RE0.03930.12750.21180.1269
MH0.01190.04270.08070.0416
PCS0.00870.02100.03330.0219
MCS0.00750.03010.05840.0305
OP0.04500.06250.07500.0608
PF, physical functioning; RP, role physical; BP, bodily pain; GH, general health; VT, vitality; SF, social functioning; RE, role emotional; MH, mental health; PCS, summary physical scale; MCS, summary mental scale; OP, obesity-related problems.

Share and Cite

MDPI and ACS Style

Cao, Y.; Raoof, M.; Montgomery, S.; Ottosson, J.; Näslund, I. Predicting Long-Term Health-Related Quality of Life after Bariatric Surgery Using a Conventional Neural Network: A Study Based on the Scandinavian Obesity Surgery Registry. J. Clin. Med. 2019, 8, 2149. https://doi.org/10.3390/jcm8122149

AMA Style

Cao Y, Raoof M, Montgomery S, Ottosson J, Näslund I. Predicting Long-Term Health-Related Quality of Life after Bariatric Surgery Using a Conventional Neural Network: A Study Based on the Scandinavian Obesity Surgery Registry. Journal of Clinical Medicine. 2019; 8(12):2149. https://doi.org/10.3390/jcm8122149

Chicago/Turabian Style

Cao, Yang, Mustafa Raoof, Scott Montgomery, Johan Ottosson, and Ingmar Näslund. 2019. "Predicting Long-Term Health-Related Quality of Life after Bariatric Surgery Using a Conventional Neural Network: A Study Based on the Scandinavian Obesity Surgery Registry" Journal of Clinical Medicine 8, no. 12: 2149. https://doi.org/10.3390/jcm8122149

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop