Literature DB >> 35418352

Development and validation of a deep-learning-based pediatric early warning system: A single-center study.

Seong Jong Park1, Kyung-Jae Cho2, Oyeon Kwon2, Hyunho Park2, Yeha Lee2, Woo Hyun Shim3, Chae Ri Park3, Won Kyoung Jhang4.   

Abstract

BACKGROUND: Early detection and prompt intervention for clinically deteriorating events are needed to improve clinical outcomes. There have been several attempts at this, including the introduction of rapid response teams (RRTs) with early warning scores. We developed a deep-learning-based pediatric early warning system (pDEWS) and validated its performance.
METHODS: This single-center retrospective observational cohort study reviewed, 50,019 pediatric patients admitted to the general ward in a tertiary-care academic children's hospital from January 2012 to December 2018. They were split by admission date into a derivation and a validation cohort. We developed a pDEWS for the early prediction of cardiopulmonary arrest and unexpected ward-to-pediatric intensive care unit (PICU) transfer. Then, we validated this system by comparing modified pediatric early warning score (PEWS), random forest (RF); an ensemble model of multiple decision trees and logistic regression (LR); a statistical model that uses a logistic function.
RESULTS: For predicting cardiopulmonary arrest, the pDEWS (area under the receiver operating characteristic curve (AUROC), 0.923) outperformed modified PEWS (AUROC, 0.769) and reduced the mean alarm count per day (MACPD) and number needed to examine (NNE) by 82.0% (from 46.7 to 8.4 MACPD) and 89.5% (from 0.303 to 0.807), respectively. Furthermore, for predicting unexpected ward-to-PICU transfer pDEWS also showed superior performance compared to existing methods.
CONCLUSION: Our study showed that pDEWS was superior to the modified PEWS and prediction models using RF and LR. This study demonstrates that the integration of the pDEWS into RRTs could increase operational efficiency and improve clinical outcomes.
Copyright © 2021 Chang Gung University. Published by Elsevier B.V. All rights reserved.

Entities:  

Keywords:  Critical care; Deep learning; Early warning score; Pediatrics

Mesh:

Year:  2021        PMID: 35418352      PMCID: PMC9133255          DOI: 10.1016/j.bj.2021.01.003

Source DB:  PubMed          Journal:  Biomed J        ISSN: 2319-4170            Impact factor:   7.892


At a glance commentary

Scientific background on the subject

Early detection and prompt intervention for clinically deteriorating events are highly required to improve clinical outcomes. For this purpose, early warning scores were developed and rapid response teams are introduced. However, there have been some limitations to be effectively operated.

What this study adds to the field

In this study, we developed a deep-learning-based pediatric early warning system (pDEWS) for detecting clinical deteriorating events, which outperformed previously used early warning scoring systems. This study demonstrates that the use of the pDEWS could be promising to improve clinical outcomes. Hospitalized children are inevitably susceptible to clinical deterioration, which leads to potentially devastating consequences [1]. The early detection of prodromal signs of clinical deterioration for prompt intervention is important to improve clinical outcomes [[2], [3], [4]]. There have been several attempts to address this, including the introduction of rapid response teams (RRTs) in hospitals [[5], [6], [7], [8], [9]]. However, it is still challenging to efficiently operate an RRT. There are several afferent and efferent components, such as prompt tracking and detection of the early signs of clinical deterioration, proper triggering of team activation, and timely qualified intervention. In terms of the afferent limb of RRTs, most institutions have their own criteria including concerns from physicians, nurses, and family members or subjective assessment with or without systematic early warning scores (EWSs) [[10], [11], [12], [13], [14], [15]]. However, an effective RRT operation has several barriers associated with personnel factors, including interpersonal differences in knowledge, awareness, training level, confidence, cultural background, hierarchies, inaccurate recording of data, and erroneous calculation of EWSs [[16], [17], [18]]. Recently, there has been a marked evolution in the field of artificial intelligence and machine learning (ML), which can use a huge amount of data, extract essential information, and find and learn significant patterns. It has rapidly revolutionized and changed numerous aspects of daily life so much so that sometimes it has been used to replace a human [19,20]. In medicine, it has shown remarkable performance in several healthcare domains, including cancer diagnosis, triage decisions and classification in emergency departments, and precise prediction of critical events [[21], [22], [23], [24]]. However, there are few studies on the use of ML in pediatric critical care. In this study, we aimed to develop a deep-learning-based pediatric early warning system (pDEWS) and evaluated its performance in predicting cardiopulmonary arrest and unexpected ward-to-pediatric intensive care unit (PICU) transfers in general-ward-hospitalized pediatric patients and its effectiveness as an afferent limb of RRT operations compared to other prediction models.

Methods

Study population

We conducted a retrospective observational cohort study of pediatric patients admitted to the general ward of Asan Medical Center Children's Hospital between January 2012 and December 2018. This is a tertiary academic children's hospital with 176 beds for general ward inpatients and a 25-bed multidisciplinary medical-surgical PICU. This study was approved by the institutional review board of Asan Medical Center, Seoul, Korea (2019–0137). The requirement for informed consent was waived due to the retrospective nature of the study. We excluded patients with measured and recorded data lengths of less than 30 min, no vital sign data measured 24 h before events, and missing demographic data, and patients with do-not-resuscitate orders. Patient information was anonymized and de-identified before analysis. The study population was split into derivation and validation cohorts according to the admission period: the derivation cohort consisted of patients admitted from January 2012 to December 2016 and the validation cohort consisted of patients admitted from January 2017 to December 2018. All patients were only included in either the derivation or validation cohort; thus, the cohorts were mutually exclusive.

Data collection and processing for ML

In this study, we defined critical events as cardiopulmonary arrest or unexpected ward-to-PICU transfer. Unexpected ward-to-PICU was defined as “PICU admission due to acutely deteriorating clinical conditions”, which excluded PICU admissions for routine scheduled postoperative care or scheduled procedures. We collected data including age, sex, the occurrence of events, exact time and location of event occurrences, length of hospitalization, and five time-stamped basic vital signs (systolic blood pressure (SBP), diastolic blood pressure (DBP), heart rate (HR), respiratory rate (RR), and body temperature (BT)) measured during the period from admission to either event occurrence or discharge, from electronic medical record (EMR) sources. For data cleaning, considering the possibility of errors by clinical providers when generating EMR data, we set vital signs that were extremely outside their age-adjusted normal range as missing values. In cases of missing data, we used the most recently measured values. Also, if there were no past values, we used the median value of the corresponding vital sign. The ranges of outliers and missing rates of each variable are presented in Table A.1.

Development of the pDEWS

We developed a pDEWS using Python 3.0 and the TensorFlow 13.1 package. While designing the pDEWS, we considered that the structure of the data are a time-series data. In other words, the order of the data is important information for the model to effectively predict the outcome. Therefore, we chose recurrent neural network with long short-term memory units (LSTM) which is one of the most powerful choices of deep learning models in addressing sequential data. Also, in real practice, the physician attends the electronic medical record data in reverse time order. Thus, we have used bidirectional LSTM instead of traditional LSTM to provide additional context to the network. Furthermore, we have assumed the number of layers and the number of hidden units as hyperparameters and tuned them using 10% of the derivation cohort data. As a result, pDEWS consists of three bidirectional recurrent neural network layers with LSTM units, three fully connected layers with rectified linear units, dropout and batch normalization on each fully connected layer, and a softmax layer at the end to output a score between zero and one. We tested the model configuration by using 10% of the derivation dataset. We have changed the learning rate, number of batch sizes, the rate of dropout, number of output dimensions, number of layers, and the length of the window. The hyperparameters were selected through a random search, which is known to be the most effective hyperparameter tuning method in the context of deep learning. In particular, the performance of the model was sensitive to the learning rate: we started from 0.3, 0.2, 0.1, 0.01, and 0.001 and found that 0.001 was the most effective. Furthermore, we found that the complexity of the model and the regularization methods were effective in training the deep learning model. For identifying the optimal complexity of the model, we evaluated the output dimension (16, 32, 64, 128, and 256) and the number of layers (1, 2, 3, 4, and 5). Furthermore, we tested the window length by incrementing the length using 1,5, 10, 20, 30, 50, and 100. Finally, we found that the model was most effective at a window length of 20. Although window lengths of 30 and 50 were similar to that of 20, we decided to set the length to 20 measurements since it requires more data. Thus, the LSTM units used time-series data from the previous 20 consecutive serial data as an input [Fig. 1]. We defined the prediction window for events as the interval from 0.5 to 24 h before the events. For patients with an event, the vital sign data within the prediction window were labeled as “event” and others were labeled as “non-event”. Then, the pDEWS was trained using data from five time-stamped basic vital signs from the derivation cohort by Adam optimization with default parameters and with binary-cross entropy as a loss function [25,26]. Each time we changed one of the parameters we trained our model for 1000 epochs and selected the model with the highest area under the receiver operating characteristic curve (AUROC) in the validation data. For tuning the machine learning models (i.e., logistic regression (LR) and random forest (RF)) we used grid search and similarly selected the model with the highest AUROC in the validation data.
Fig. 1

The development process of the deep-learning-based pediatric early warning system using five vital signs. Abbreviations: BN: batch normalization; BI-LSTM: bidirectional-long short-term memory; HR: heart rate; RR: respiratory rate; SBP: systolic blood pressure; DBP: diastolic blood pressure; BT: body temperature.

The development process of the deep-learning-based pediatric early warning system using five vital signs. Abbreviations: BN: batch normalization; BI-LSTM: bidirectional-long short-term memory; HR: heart rate; RR: respiratory rate; SBP: systolic blood pressure; DBP: diastolic blood pressure; BT: body temperature.

Test of pDEWS performance and statistical analysis

Data analysis was performed using the Statistical Package for the Social Sciences (SPSS version 21.0 for Windows; IBM, Armonk, NY) and a scientific computing package (SciPy 1.0; community-driven project sponsored by NumFOCUS). We validated the newly developed pDEWS using a validation cohort, which was not used in the development of the prediction system. Model performance was assessed based on discrimination using the AUROC and area under the precision–recall curve (AUPRC). AUROC is measured from a plot of sensitivity against 1-specificity. Compared with the AUROC, the AUPRC is suitable for verifying false-positive rates with varying sensitivity and shows precision (i.e., 1-false alarm rate) against recall (i.e., sensitivity). It was calculated assuming a skewed large domain of true negatives. We also evaluated the positive predictive value (PPV = true positive/(true positive + false positive)), negative predictive value (NPV = true negative/(true negative + false negative)), positive likelihood ratio (PLR = sensitivity/1 – specificity), negative likelihood ratio (NLR = 1 - sensitivity/specificity), F-score (2 x (precision x recall)/(precision + recall)), net reclassification index (NRI), mean alarm count per day (MACPD), and number needed to examine (NNE) [[27], [28], [29], [30], [31], [32]]. The NRI is used to compare the improvement in prediction performance gained. We also compared the performance of the pDEWS to that of other conventional ML methods, such as RF- and LR-based prediction models and the modified PEWS score. RF and LR are the representative models in machine learning. RF is an ensemble model of multiple decision trees. Each tree is constructed by computing the entropy of each class, in other words, by choosing the feature which can most effectively split the dataset into different classes. After multiple trees are constructed, each of them outputs a class prediction and the class with the most votes becomes the final prediction value. LR models the probability of each class by combining input values linearly using weights and transforms the output into a binary value using a logistic function. The modified PEWS was defined as a score including the five vital sign parameters (HR, RR, SBP, oxygen saturation, and temperature) of the original PEWS [11] [Table A.2].

Results

Among the 51,536 patients admitted, 1,518 were excluded. Finally, 50,019 patients were included [Fig. 2]. The derivation cohort included 28,857 patients, with 75 cases of cardiopulmonary arrest and 337 cases of unexpected ward-to-PICU transfers. The validation cohort included 21,162 patients with 37 cases of cardiopulmonary arrest and 346 cases of unexpected ward-to-PICU transfers. Most parameters showed a significant difference between the derivation and validation cohorts, which showed that the two cohorts comprised populations with different characteristics [Table 1].
Fig. 2

A flow diagram for patient inclusion and exclusion.

Table 1

Baseline characteristics of the study population.

Baseline characteristicsDerivation cohort (n = 28857)Validation cohort (n = 21162)p-value
Total admissions, n2885721162
 Vital sign data set, n978684797172
Admissions with unexpected PICU transfer337346<0.001
 Vital sign data set, n28492541
Admissions with in-hospital cardiac arrest, n7537<0.001
 Vital sign data set, n22301175
Male, n (%)16155 (56.0)11597 (54.8)0.008
Age, year (mean ± SD)6.08 ± 5.736.29 ± 5.54<0.001
Length of stay, median (IQR)3.62 (1.7–6.7)3.67 (1.7–7.6)<0.001
Initial vital signs, mean ± SD
 Systolic blood pressure (mmHg)106.61 ± 13.41105.16 ± 13.27<0.001
 Diastolic blood pressure (mmHg)65.23 ± 12.3165.52 ± 11.200.008
 Heart rate (bpm)116.12 ± 25.27115.31 ± 24.28<0.001
 Respiratory rate (breaths/min)28.60 ± 8.8727.95 ± 8.43<0.001
 Body temperature (°C)36.67 ± 0.5336.68 ± 0.500.003
 Lactate2.70 ± 2.412.73 ± 2.500.875
 SpO294.54 ± 11.1094.34 ± 10.910.894
Vital signs within 24 h before outcome, mean ± SD
 Systolic blood pressure (mmHg)86.23 ± 22.6584.91 ± 21.690.174
 Diastolic blood pressure (mmHg)46.72 ± 16.0648.99 ± 13.78<0.001
 Heart rate (bpm)134.24 ± 31.44141.85 ± 31.48<0.001
 Respiratory rate (breaths/min)33.80 ± 10.6530.98 ± 9.74<0.001
 Body temperature (°C)36.40 ± 0.9236.18 ± 1.22<0.001
 Lactate3.64 ± 3.762.50 ± 2.11<0.001
 SpO281.01 ± 21.4990.54 ± 15.48<0.001
Total vital signs, mean ± SD
 Systolic blood pressure (mmHg)103.81 ± 15.37102.62 ± 14.71<0.001
 Diastolic blood pressure (mmHg)61.36 ± 13.2561.66 ± 12.52<0.001
 Heart rate (bpm)114.49 ± 27.15113.36 ± 25.82<0.001
 Respiratory Rate (breaths/min)27.72 ± 8.7827.70 ± 8.380.083
 Body temperature (°C)36.72 ± 0.6136.74 ± 0.61<0.001
 Lactate1.93 ± 2.121.82 ± 1.92<0.001
 SpO294.96 ± 9.6894.81 ± 9.04<0.001
Causes of admission, n (%)<0.001
 For operation4601 (21.7)6928 (24.0)
 Hemato-oncologic disorders4619 (21.8)5099 (17.7)
 Cardiac disorders2957 (14.0)3975 (13.8)
 Neurologic disorders2147 (10.1)3765 (13.0)
 Renal disorders1361 (6.4)2472 (8.6)
 Gastrointestinal disorders1755 (8.3)1826 (6.3)
 Respiratory disorders1026 (4.8)1995 (6.9)
 Endocrinologic/genetic disorders1714 (8.1)1056 (3.7)
 Infectious diseases572 (2.7)1224 (4.2)
 Others410 (1.9)517 (1.8)

Abbreviations: n:number; PICU:pediatric intensive care unit; SD: standard deviation; IQR: interquartile range.

A flow diagram for patient inclusion and exclusion. Baseline characteristics of the study population. Abbreviations: n:number; PICU:pediatric intensive care unit; SD: standard deviation; IQR: interquartile range.

Validation of the pDEWS

The pDEWS yielded an AUROC of 0.923 (95% CI, 0.918–0.929) and 0.911 (95% CI, 0.906–0.917) in predicting cardiopulmonary arrest and unexpected ward-to-PICU transfers, respectively. These were larger than those of the RF model, the LR model, or the modified PEWS [Fig. 3]. The AUPRCs of the pDEWS in predicting cardiopulmonary arrest and unexpected ward-to-PICU transfers was 0.039 (95% CI, 0.036–0.045) and 0.155 (95% CI, 0.144–0.167), respectively. These were also larger than those of the RF model, the LR model, or the modified PEWS [Table 2].
Fig. 3

Areas under the receiver operating characteristic curves for the prediction of (A) cardiopulmonary arrest and (B) unexpected ward-to-pediatric intensive care unit transfer. Abbreviations: AUROC: area under the receiver operating characteristic curve; pDEWS: deep-learning-based pediatric early warning system; modified PEWS: modified pediatric early warning score; RF: random forest; LR: logistic regression.

Table 2

Areas under the precision–recall curves for the prediction of cardiopulmonary arrest and unexpected ward-to-pediatric intensive care unit transfer.

AUPRC (95% CI)
Cardiopulmonary arrestUnexpected ward-to-PICU transfer
pDEWS0.039 (0.036–0.045)0.155 (0.144–0.167)
RF0.019 (0.018–0.023)0.083 (0.076–0.095)
LR0.018 (0.017–0.021)0.051 (0.047–0.057)
Modified PEWS0.010 (0.009–0.012)0.008 (0.008–0.009)

Abbreviations: AUPRC: area under the precision–recall curve; PICU: pediatric intensive care unit; pDEWS: deep-learning-based pediatric early warning system; RF: random forest; LR: logistic regression; modified PEWS: modified pediatric early warning score.

Areas under the receiver operating characteristic curves for the prediction of (A) cardiopulmonary arrest and (B) unexpected ward-to-pediatric intensive care unit transfer. Abbreviations: AUROC: area under the receiver operating characteristic curve; pDEWS: deep-learning-based pediatric early warning system; modified PEWS: modified pediatric early warning score; RF: random forest; LR: logistic regression. Areas under the precision–recall curves for the prediction of cardiopulmonary arrest and unexpected ward-to-pediatric intensive care unit transfer. Abbreviations: AUPRC: area under the precision–recall curve; PICU: pediatric intensive care unit; pDEWS: deep-learning-based pediatric early warning system; RF: random forest; LR: logistic regression; modified PEWS: modified pediatric early warning score. We evaluated the sensitivity, specificity, PLR, NLR, PPV, NPV, F-score, MACPD, and NNE by each cut-off value for the prediction of cardiopulmonary arrest [Table 3] and unexpected ward-to-PICU transfers [Table 4]. Given that the cut-off value of the pDEWS was 95, it showed the best F-score, corresponding to the most acceptable PPV and NPV for clinical integration. It also showed an acceptable MACPD (9.8 for cardiopulmonary arrest and 9.5 for unexpected ward-to-PICU transfers) with the highest PLR and NLR and acceptable specificity and sensitivity for both critical events.
Table 3

Performance of the deep-learning-based pediatric early warning system for prediction of cardiopulmonary arrest at different cut-off levels.

Cut-offSenSpecPLRNLRPPVNPVF-scoreMACPDNNE
50.9560.5972.3720.0740.0031.0000.007439.5285.7
100.9330.6832.9440.0980.0041.0000.009345.9230.4
150.9230.7363.4960.1050.0051.0000.010288.3194.2
200.9110.7744.0290.1140.0061.0000.012247.4168.6
250.8970.8034.5520.1280.0071.0000.013215.7149.4
300.8780.8275.0760.1470.0071.0000.015189.5134.0
350.8560.8475.6060.1700.0081.0000.016167.4121.5
400.8420.8656.2260.1830.0091.0000.018148.3109.5
450.8200.8806.8560.2040.0101.0000.020131.499.5
500.7950.8947.5060.2290.0111.0000.022116.491.0
550.7710.9078.2670.2520.0121.0000.024102.682.7
600.7390.9189.0490.2850.0131.0000.02689.975.6
650.6980.9309.9250.3250.0141.0000.02877.669.0
700.6520.94010.9440.3700.0160.9990.03165.862.7
750.6090.95112.4620.4110.0180.9990.03554.155.2
800.5540.96214.4010.4640.0210.9990.04042.747.9
850.5040.97217.8020.5110.0260.9990.04931.638.9
900.4370.98223.8420.5730.0340.9990.06320.629.3
950.3270.99138.3590.6790.0540.9990.0929.818.6

Abbreviations: Sen: sensitivity; Spec: specificity; PLR: positive likelihood ratio; NLR: negative likelihood ratio; PPV: positive predictive value; NPV: negative predictive value; NRI: net reclassification index; MACPD: mean alarm count per day; NNE: number needed to examine.

Table 4

Performance of the deep-learning-based pediatric early warning system for the prediction of unexpected ward-to-PICU transfer at different cut-off levels.

Cut-offSenSpecPLRNLRPPVNPVF-scoreMACPDNNE
50.9640.4421.7270.0810.0051.0000.011610.2181.8
100.9390.5952.3210.1020.0071.0000.015442.9135.5
150.9170.6842.9020.1210.0091.0000.018346.7108.6
200.8940.7433.4800.1420.0111.0000.022282.490.7
250.8700.7874.0840.1660.0130.9990.025234.577.5
300.8420.8224.7190.1920.0150.9990.029196.967.2
350.8190.8495.4260.2130.0170.9990.033167.058.6
400.7980.8716.1980.2320.0190.9990.038142.751.4
450.7760.8907.0590.2520.0220.9990.043122.145.2
500.7540.9068.0480.2710.0250.9990.049104.539.8
550.7290.9209.1650.2950.0290.9990.05589.035.1
600.7040.93310.5040.3170.0330.9990.06275.330.7
650.6780.94412.1550.3410.0370.9990.07163.026.7
700.6470.95414.1270.3700.0430.9990.08152.123.1
750.6160.96316.7440.3990.0510.9990.09442.119.6
800.5800.97120.0930.4320.0600.9990.11033.416.5
850.5380.97824.9930.4720.0740.9980.13025.313.5
900.4810.98633.3480.5260.0960.9980.16117.410.4
950.4060.99354.3090.5990.1480.9980.2179.56.7

Abbreviations: Sen: sensitivity; Spec: specificity; PLR: positive likelihood ratio; NLR: negative likelihood ratio; PPV: positive predictive value; NPV: negative predictive value; NRI: net reclassification index; MACPD: mean alarm count per day; NNE: number needed to examine.

Performance of the deep-learning-based pediatric early warning system for prediction of cardiopulmonary arrest at different cut-off levels. Abbreviations: Sen: sensitivity; Spec: specificity; PLR: positive likelihood ratio; NLR: negative likelihood ratio; PPV: positive predictive value; NPV: negative predictive value; NRI: net reclassification index; MACPD: mean alarm count per day; NNE: number needed to examine. Performance of the deep-learning-based pediatric early warning system for the prediction of unexpected ward-to-PICU transfer at different cut-off levels. Abbreviations: Sen: sensitivity; Spec: specificity; PLR: positive likelihood ratio; NLR: negative likelihood ratio; PPV: positive predictive value; NPV: negative predictive value; NRI: net reclassification index; MACPD: mean alarm count per day; NNE: number needed to examine. In the paired comparison at the same specificity to the modified PEWS and prediction models using RF or LR, the pDEWS showed superior performance than others with the highest sensitivity, PLR, PPV, F-score, and NRI, and the lowest NLR and NNE, in both critical events. In predicting cardiopulmonary arrest, the pDEWS showed improvements in the sensitivity of up to 237.5%, in PLR of up to 518%, and in an NLR of up to 94.2% compared to the modified PEWS [Table 5]. In terms of unexpected ward-to-PICU transfers, the maximum improved sensitivity, PLR, and NLR were 2118.1%, 2793.1%, and 89.7% compared to the modified PEWS, respectively [Table 6].
Table 5

Comparison of performance in the prediction of cardiopulmonary arrest at the same specificity.

Cut-offSenSpecPLRNLRPPVNPVF-scoreNRIMACPDNNE
Modified PEWS ≥10.9270.3201.3620.2280.0021.0000.004740.7496.5
pDEWS ≥0.360.9960.3201.4650.0130.0021.0000.0040.0016740.2461.8
RF ≥ 9.70.9870.3201.4510.0390.0021.0000.0040.0002740.7466.1
LR ≥ 7.80.986
0.3201.4520.042
0.0021.0000.0040.0027739.9466.0

Modified PEWS ≥20.7060.6792.1990.4320.0030.9990.006350.3308.1
pDEWS ≥9.60.9340.6792.9090.0960.0041.0000.0040.0010350.7233.1
RF ≥ 34.50.9260.6792.8850.1090.0041.0000.0080.0015350.2235.0
LR ≥ 30.80.9120.6792.8440.1290.0041.0000.0080.0016350.1238.4

Modified PEWS ≥30.4940.8774.0150.5760.0060.9990.012134.7169.2
pDEWS ≥44.10.8240.8786.7380.2000.0101.0000.0200.0049134.2101.2
RF ≥ 65.80.7040.8785.7490.3370.0081.0000.0170.0033134.2118.4
LR ≥ 62.80.7190.8775.8860.3190.0091.0000.0170.0038134.0115.7

Modified PEWS ≥40.3030.9577.1210.7280.0100.9990.02046.795.8
pDEWS ≥78.10.5730.95813.5390.4460.0200.9990.0380.009546.950.8
RF ≥ 86.50.4350.95810.4180.5890.0150.9990.0290.005446.165.8
LR ≥ 87.10.3990.9579.5650.6270.0140.9990.0270.004246.071.5

Modified PEWS ≥50.1620.98813.1950.8480.0190.9990.03413.652.2
pDEWS ≥93.30.3690.98831.6660.6380.0450.9990.0800.025213.322.3
RF ≥ 94.10.2170.98819.1390.7920.0280.9990.0490.007512.636.2
LR ≥ 94.90.2090.98817.9960.8000.0260.9990.0460.006212.938.5

Modified PEWS ≥60.0500.99715.9680.9520.0230.9990.0323.543.3
pDEWS ≥98.40.1520.99760.3770.8490.0820.9990.1070.04763.012.1
RF ≥ 97.60.0980.99739.7630.9040.0560.9990.0710.02262.817.9
LR ≥ 98.00.0830.99735.2570.9180.0500.9990.0620.01612.720.1

Modified PEWS ≥70.0080.99913.8750.9920.0200.9990.0110.649.7
pDEWS ≥99.80.0271.00085.7500.9730.1130.9990.0440.05160.48.8
RF ≥ 99.60.0120.99952.8150.9880.0730.9990.0200.01150.313.7
LR ≥ 99.20.0250.99948.3530.9750.0670.9990.0360.01150.614.9

Abbreviations: pDEWS: deep-machine-learning-based pediatric early warning system; PEWS: pediatric early warning score; RF: random forest; LR: logistic regression; Sen: sensitivity; Spec: specificity; PLR: positive likelihood ratio; NLR: negative likelihood ratio; PPV: positive predictive value; NPV: negative predictive value; NRI: net reclassification index; MACPD: mean alarm count per day.

Table 6

Comparison of performance in the prediction of unexpected ward-to-PICU transfer at the same specificity.

Cut-offSenSpecPLRNLRPPVNPVF-scoreNRIMACPDNNE
Modified PEWS ≥10.7750.3201.1400.7020.0040.9980.007741.9274.9
pDEWS ≥2.70.9770.3201.4370.0720.0051.0000.0090.0020742.2218.2
RF ≥ 32.00.9630.3201.4160.1150.0051.0000.0090.0021742.1221.3
LR ≥ 17.90.9560.3201.4060.1370.0041.0000.0090.0025741.9222.9

Modified PEWS ≥20.5720.6791.7800.6300.0060.9980.011351.1176.4
pDEWS ≥14.60.9170.6792.8551.2230.0091.0000.0180.0036352.2110.3
RF ≥ 42.90.8350.6792.6010.2430.0080.9990.0160.0031351.7121.0
LR ≥ 39.80.8410.6792.6210.2340.0080.9990.0160.0033351.6120.0

Modified PEWS ≥30.4100.8773.3260.6730.0110.9980.021135.394.9
pDEWS ≥41.40.7920.87715.0100.3800.0200.9990.0390.0098136.649.5
RF ≥ 54.60.7010.8775.7210.3410.0180.9990.0350.0083135.555.5
LR ≥ 68.30.6910.8775.6130.3520.0180.9990.0340.0074136.156.6

Modified PEWS ≥40.2300.9575.4100.8040.0170.9970.03247.158.7
pDEWS ≥71.80.6360.95815.0100.3800.0460.9990.0860.030248.221.8
RF ≥ 64.10.5010.95711.9670.5200.0370.9980.0690.020747.227.0
LR ≥ 86.30.3810.9579.0480.6460.0280.9980.0520.011647.035.5

Modified PEWS ≥50.0710.9885.8120.9400.0180.9970.02913.654.7
pDEWS ≥92.10.4560.98939.7310.5500.1130.9980.1810.099514.18.8
RF ≥ 74.60.2930.98925.0900.7150.0740.9980.1190.057513.713.4
LR ≥ 94.90.2460.98920.6000.7620.0620.9980.0990.045213.816.1

Modified PEWS ≥60.0110.9973.3630.9910.0110.9970.0113.587.0
pDEWS ≥98.40.2440.99797.2970.7570.2380.9980.2410.23523.64.2
RF ≥ 80.00.1650.99755.7230.8370.1510.9970.1580.15473.86.6
LR ≥ 98.40.1390.99745.8360.8640.1280.9970.1330.12813.87.8

Modified PEWS ≥70.0000.9990.0001.0000.0000.997N/A0.6N/A
pDEWS ≥99.60.0860.999159.7950.9140.3390.9970.1370.49770.92.9
RF ≥ 87.50.0000.999N/A1.000N/A0.997N/A0.00060.0N/A
LR ≥ 99.80.0310.99989.5370.9680.2230.9970.0550.18280.54.4

Abbreviations: pDEWS: deep-machine-learning-based pediatric early warning system; PEWS: pediatric early warning score; RF: random forest; LR: logistic regression; Sen: sensitivity; Spec: specificity; PLR: positive likelihood ratio; NLR: negative likelihood ratio; PPV: positive predictive value; NPV: negative predictive value; NRI: net reclassification index; MACPD: mean alarm count per day.

Comparison of performance in the prediction of cardiopulmonary arrest at the same specificity. Abbreviations: pDEWS: deep-machine-learning-based pediatric early warning system; PEWS: pediatric early warning score; RF: random forest; LR: logistic regression; Sen: sensitivity; Spec: specificity; PLR: positive likelihood ratio; NLR: negative likelihood ratio; PPV: positive predictive value; NPV: negative predictive value; NRI: net reclassification index; MACPD: mean alarm count per day. Comparison of performance in the prediction of unexpected ward-to-PICU transfer at the same specificity. Abbreviations: pDEWS: deep-machine-learning-based pediatric early warning system; PEWS: pediatric early warning score; RF: random forest; LR: logistic regression; Sen: sensitivity; Spec: specificity; PLR: positive likelihood ratio; NLR: negative likelihood ratio; PPV: positive predictive value; NPV: negative predictive value; NRI: net reclassification index; MACPD: mean alarm count per day. The pDEWS provided a much lower MACPD for both cardiopulmonary arrest and unexpected ward-to-PICU transfers under the same sensitivity than the modified PEWS or prediction models with RF or LR [Fig. 4]. It markedly reduced false alarms in the detection of cardiopulmonary arrest by 82.0% (from 46.7 to 8.4 MACPD), 64.5% (from 23.7 to 8.4 MACPD), and 68.7% (from 26.9 to 8.4 MACPD) compared to the modified PEWS and prediction models by RF or LR, respectively. In the detection of unexpected ward-to-PICU transfers, the pDEWS showed a reduction in false alarms by 100% (from 3.5 to 0.0 MACPD), 66.3% (from 9.2 to 3.1 MACPD), and 100% (from 0.1 to 0.0 MACPD) compared to the modified PEWS and prediction models by RF or LR, respectively. The pDEWS also showed the highest sensitivity at the same NNE compared to the modified PEWS and prediction models by RF or LR [Fig. 5]. In particular, pDEWS showed at most 89.5% (from 0.303 to 0.807) at a NNE of 43, 43.3% (from 0.335 to 0.591) at a NNE of 52, and 51.2% (from 0.288 to 0.591) at a NNE of 52 compared to the modified PEWS and prediction models by RF or LR, respectively for detecting cardiopulmonary arrest. Furthermore, in the detection of unexpected ward-to-PICU transfers, the pDEWS showed at most 98.7% (from 0.011 to 0.89) at a NNE of 87, 13.0% (from 0.701 to 0.806) at a NNE of 54, and 15.3% (from 0.697 to 0.823) at a NNE of 58 compared to the modified PEWS and prediction models by RF or LR, respectively. The cumulative percentage of deteriorating patients for either critical event was markedly larger in the pDEWS than in the modified PEWS or prediction models by RF or LR at the same cut-off level [Fig. 6].
Fig. 4

Comparison of mean alarm count per day at the same sensitivity for (A) cardiopulmonary arrest and (B) unexpected ward-to-pediatric intensive care unit transfer. Abbreviations used: MACPD: mean alarm count per day; pDEWS: deep-learning-based pediatric early warning system; modified PEWS: modified pediatric early warning score; RF: random forest; LR: logistic regression.

Fig. 5

Comparison of sensitivity at the same number needed to examine for (A) cardiopulmonary arrest and (B) unexpected ward-to-pediatric intensive care unit transfer. Abbreviations used: NNE: number needed to examine; pDEWS: deep-learning-based pediatric early warning system; modified PEWS: modified pediatric early warning score; RF: random forest; LR: logistic regression.

Fig. 6

Cumulative percentages of deteriorating patients with (A) cardiopulmonary arrest and (B) unexpected ward-to-pediatric intensive care unit transfer. Abbreviations: pDEWS: deep-learning-based pediatric early warning system; modified PEWS: modified pediatric early warning score; RF: random forest; LR: logistic regression.

Comparison of mean alarm count per day at the same sensitivity for (A) cardiopulmonary arrest and (B) unexpected ward-to-pediatric intensive care unit transfer. Abbreviations used: MACPD: mean alarm count per day; pDEWS: deep-learning-based pediatric early warning system; modified PEWS: modified pediatric early warning score; RF: random forest; LR: logistic regression. Comparison of sensitivity at the same number needed to examine for (A) cardiopulmonary arrest and (B) unexpected ward-to-pediatric intensive care unit transfer. Abbreviations used: NNE: number needed to examine; pDEWS: deep-learning-based pediatric early warning system; modified PEWS: modified pediatric early warning score; RF: random forest; LR: logistic regression. Cumulative percentages of deteriorating patients with (A) cardiopulmonary arrest and (B) unexpected ward-to-pediatric intensive care unit transfer. Abbreviations: pDEWS: deep-learning-based pediatric early warning system; modified PEWS: modified pediatric early warning score; RF: random forest; LR: logistic regression.

Discussion

We developed pDEWS with only five vital sign parameters using deep learning, which showed good performance in predicting cardiopulmonary arrest and unexpected ward-to-PICU transfers in general-ward-hospitalized pediatric patients within 24 h before an event. Most EWSs comprise several domains of physiologic and laboratory data [[11], [12], [13],33]. It may be beneficial to integrate more components, which could provide more information for a more precise prediction. Based on this concept, several previously developed indexes or algorithms have integrated even 25 variables or more [10,34]. However, this could increase the possibility of more missing values or an increased risk of erroneous calculation or other human-related limitations, resulting in providing inaccurate information and decreasing the predictability and performance of the EWSs. The pDEWS comprises 5 vital signs, which are essential data in most hospitalized patients. Thus, the pDEWS is easily applicable to any patient admitted to any hospital regardless of that institution's characteristics, without correction or compensation according to institutional references (like other laboratory data), with a relatively low missing rate. Vital signs are also relatively objective data usually measured by instruments that are not influenced much by observer discrepancies or subjective assessments, unlike other symptoms or signs. In this study, we compared the pDEWS to the modified PEWS, which included only vital sign parameters of the original PEWS. The excluded parameters were capillary refill time, pulse, and loss of consciousness, which are thought to be somewhat subjective. In the case of bolus fluid and oxygen therapy, we thought these parameters were related more to the medical personnels’ assessments and decisions for some interventions. According to the aim of this study, which was to evaluate and compare the performance of predicting critical events and effectiveness as an afferent limb for RRT activation, we also excluded these bolus fluid or oxygen therapy parameters as the modified PEWS had only vital sign parameters, similar to the pDEWS. The pDEWS outperformed the modified PEWS in all compared metrics. The pDEWS demonstrated the largest AUROC (0.923 (95% CI, 0.918–0.929) and 0.911 (95% CI, 0.906–0.917) in predicting cardiopulmonary arrest and unexpected ward-to-PICU transfers, respectively) compared to the modified PEWS and prediction models by RF or LR. These were also comparable to those of other previously reported EWSs [11,[35], [36], [37]]. However, statistically, cardiopulmonary arrest and unexpected ward-to-PICU transfers are relatively rare critical events. In case the number of negative cases overwhelms those of event cases, the false positive rate (false positive cases/total real negative cases) does not decrease dramatically, limiting the ability of the AUROC to evaluate performance. Instead, the AUPRC could be better suited for these kinds of imbalanced data, as it considers the fraction of true positive cases among positive predictions, suggesting that the AUPRC is more important and informative than the AUROC [30]. Therefore, we also compared our results using the AUPRC, which also showed the superiority of the pDEWS. In addition, we used various statistical metrics such as sensitivity, specificity, PLR, NLR, PPV, NPV, F-score, MACPD, NNE, NRI, and the detection of the cumulative percentage of deteriorating patients over time. In particular, likelihood ratios are independent of event prevalence and could be more informative than other metrics to evaluate such rare events. The MACPD and NNE provide possible alarm count data, which could be useful in effectively operating RRTs in clinical practice. Our results showed that the pDEWS performed better in predicting critical events earlier and more accurately with fewer false alarms than the modified PEWS or prediction models by RF or LR. These results could be partly explained by the power of deep learning. Deep learning uses multiple computational layers of non-linear processing units. It learns representations of data using a general-purpose learning procedure with multiple levels of abstraction, which are not designed by humans. The most important element of the deep learning process is feature learning. During the training process, a deep learning model learns intricate structures of datasets and determines how to change the internal parameters, which are used to compute the representation in each layer. It automatically identifies and learns features or representations needed for given tasks, such as classification and detection, using a large amount of raw data. Therefore, it is useful in finding complex relationships in high-dimensional data (such as vital signs) without information loss [[38], [39], [40]]. Previously, it was reported that subtle physiologic changes occur before a clinically deteriorating critical event [17,[41], [42], [43]]. However, these might be too subtle for easy detection with standard monitoring or intermittent personal evaluation tools at various time intervals. In contrast, deep learning could find patterns in these clinical antecedents, including subtle changes before critical events such as cardiopulmonary arrest and unexpected ward-to-PICU transfers, which could increase the chances of proper timely intervention. Furthermore, in comparison to other ML methods, such as LR or RF models [38,39,44,45], these conventional ML methods are limited in processing data in their raw form. They are based on fixed assumptions of data behavior. Their performance is highly dependent on careful engineering and considerable domain knowledge to design a feature extractor that transforms the raw data into a suitable internal representation; the shallow classifier then classifies the data based on represented features. Thus, they are limited in discovering the intricate structures in high-dimensional data without information loss. Compared to conventional ML methods, the pDEWS outperformed these methods, consistent with previous reports [38,39]. Deep learning could also minimize human handling, thereby decreasing both human error and manpower requirements. Considering the busy nature of general wards, the limited number of medical personnel compared to the number of hospitalized patients, and the barriers for RRT activation, score generation using real-time EMR vital sign data by automatic calculation and automatically triggering alarms by setting cut-off values for RRT activation are desirable to increase accuracy and efficacy [17]. Since RRTs were introduced into clinical practice, they have been reported to significantly reduce in-hospital critical events [[46], [47], [48], [49]]. In contrast, there are also reports about the challenge of increased alarms, related alarm fatigue, and additional workload [18,50]. Our results of PLR, NLR, and MACPD indicate that the pDEWS is promising in reducing false alarms, with more true alarms and true-negative alarms, and in generating a lower MACPD at the same sensitivity compared to other models, which could be helpful to decrease alarm fatigue and workload, and for effective use of limited medical resources. In addition, as we provided predicted metrics by each cut-off value of the pDEWS, these could be adjusted and determined according to specific individual situations, such as acceptable alarm number and feasible RRT response workload. This study has some advantages. To our knowledge, this is the first report on a pDEWS for cardiopulmonary arrest and unexpected ward-to-PICU transfers in general-ward-hospitalized pediatric patients using only five vital signs. Pediatric patients in general wards have less useful physiologic data and are exposed to more unsafe and risky situations if critical events occur compared to patients in a PICU. Therefore, the pDEWS could be helpful in early detection, prompt intervention, prevention of rescue failure, and improvement of clinical outcomes. We used deep learning to develop a pDEWS, which is better than other conventional ML methods and showed better performance. In validating the pDEWS, we evaluated it using various statistical metrics and also reported its own calibration data, which proved its better performance and usefulness. Despite its advantages, there are several limitations to this study. First, this was a single-center retrospective observational cohort study of pediatric patients admitted to a tertiary academic children's hospital: there could be possible selection bias due to missing data, and its generalizability is limited. Further large-scale multicenter validation studies are required to ensure that this model is widely applicable and useful. Second, although we used LSTM units with 20 consecutive data inputs, ML is strongly dependent on data quality, and so missing data could affect accuracy. Third, machine learning memorizes the derivation set characteristics, which may result in overfitting issues and could affect prediction systems. Fourth, as many previous studies have pointed out, deep learning is known as a “black box” because rather than having rule-based decision criteria based on a domain knowledge, the decision boundary is ‘learned’ using universal approximation function by finding regularities in the given dataset. It is often criticized due to its non-transparent and non-traceable algorithm. Recently there have been many approaches to solve these problems by developing explainable AI or inherently interpretable ML models. However, in this study, we were unsure of the method could possibly summarize what might be going on under the hood of our time dependent LSTM networks. Due to these reasons, we omitted model interpretability in the current study. Although the pDEWS only uses five vital signs, which could be helpful for healthcare providers to guess intuitively the reason for prediction, clear interpretability of the pDEWS remains as a problem that must be solved in the future. Fifth, we used the modified PEWS, which excludes some clinical data and differs from the original PEWS, which could affect its performance results. In the future, further large-scale multi-center external validation studies are required to more accurately assess the performance of the pDEWS.

Conclusion

The pDEWS showed good performance in the accurate prediction of cardiopulmonary arrest and unexpected ward-to-PICU transfers in general-ward-hospitalized pediatric patients compared to the modified PEWS and prediction models by RF or LR. The implementation of the pDEWS could provide more precise and timely detection of critical events and an automatic triggering call for RRT activation with a reduction in false alarms and related workload, which could be helpful to more efficiently operate RRTs and improve clinical outcomes.

Funding

This study was supported by a grant (2019IT0137) from the .

Conflicts of interest

The authors have no financial or ethical conflicts of interest to report.
Table A1

Ranges of outlieroutliers and missing rates of variables in the deep-learning-based pediatric early warning system.

VariableOutlier range
Missing rate (%)
MinimumMaximumDerivation cohortValidation cohort
Respiratory rate03000.1980.151
Heart rate03000.2150.182
Systolic blood pressure103000.2750.229
Diastolic blood pressure101750.2750.229
Body temperature24450.1280.120
Saturation101000.7860.773
Table A2

Modified pediatric early warning score.

Item sub-scores
21012
Age-specific items
 <3 months
 HR<9090–109110–150151–180>180
 RR<2020–2930–6061–80>80
 SBP<5050–5960–8081–100>100
 3–12 months
 HR<8080–99100–150151–170>170
 RR<2020–2425–5051–70>70
 SBP<7070–7980–10099–120>120
 1–4 years
 HR<7070–8990–120121–150>150
 RR<1515–1920–4041–60>60
 SBP<7575–8990–110111–125>125
 4–12 years
 HR<6060–6970-110-111–130>130
 RR<1212–1920–3031–40>40
 SBP<8080–9090–120120–130>130
 >12 years
 HR<5050–5960–100101–120>120
 RR<88–1112–1615–24>24
 SBP<8685–101100–130131–150>150
O2 saturation (%)<8585–95>95
Temperature<3535 < 3636>38.5-< 40>40

Abbreviations: HR: heart rate (beats/min); RR: respiratory rate (breaths/min); SBP: systolic blood pressure (mm Hg).

  39 in total

1.  Long short-term memory.

Authors:  S Hochreiter; J Schmidhuber
Journal:  Neural Comput       Date:  1997-11-15       Impact factor: 2.026

2.  Cost-benefit analysis of implementing a pediatric early warning system at a pediatric oncology hospital in a low-middle income country.

Authors:  Asya Agulnik; Federico Antillon-Klussmann; Dora Judith Soberanis Vasquez; Rosa Arango; Elmer Moran; Victor Lopez; Carlos Rodriguez-Galindo; Nickhill Bhakta
Journal:  Cancer       Date:  2019-08-22       Impact factor: 6.860

Review 3.  Net reclassification improvement: computation, interpretation, and controversies: a literature review and clinician's guide.

Authors:  Maarten J G Leening; Moniek M Vedder; Jacqueline C M Witteman; Michael J Pencina; Ewout W Steyerberg
Journal:  Ann Intern Med       Date:  2014-01-21       Impact factor: 25.391

4.  Promoting care for acutely ill children-development and evaluation of a paediatric early warning tool.

Authors:  Caroline Haines; Marian Perrott; Patricia Weir
Journal:  Intensive Crit Care Nurs       Date:  2005-11-02       Impact factor: 3.072

5.  Recognizing critically ill children with a modified pediatric early warning score at the emergency department, a feasibility study.

Authors:  S J Vredebregt; H A Moll; F J Smit; J J Verhoeven
Journal:  Eur J Pediatr       Date:  2018-11-09       Impact factor: 3.183

6.  A multicenter collaborative approach to reducing pediatric codes outside the ICU.

Authors:  Leslie W Hayes; Emily L Dobyns; Bruno DiGiovine; Ann-Marie Brown; Sharon Jacobson; Kelly H Randall; Beth Wathen; Heather Richard; Carolyn Schwab; Kathy D Duncan; Jodi Thrasher; Tina R Logsdon; Matthew Hall; Barry Markovitz
Journal:  Pediatrics       Date:  2012-02-20       Impact factor: 7.124

7.  The PAWS score: validation of an early warning scoring system for the initial assessment of children in the emergency department.

Authors:  P Egdell; L Finlay; D K Pedley
Journal:  Emerg Med J       Date:  2008-11       Impact factor: 2.740

8.  Validation of the Children's Hospital Early Warning System for Critical Deterioration Recognition.

Authors:  Mary C McLellan; Kimberlee Gauvreau; Jean Anne Connor
Journal:  J Pediatr Nurs       Date:  2016-11-05       Impact factor: 2.145

Review 9.  Paediatric early warning systems for detecting and responding to clinical deterioration in children: a systematic review.

Authors:  Veronica Lambert; Anne Matthews; Rachel MacDonell; John Fitzsimons
Journal:  BMJ Open       Date:  2017-03-13       Impact factor: 2.692

10.  Why the C-statistic is not informative to evaluate early warning scores and what metrics to use.

Authors:  Santiago Romero-Brufau; Jeanne M Huddleston; Gabriel J Escobar; Mark Liebow
Journal:  Crit Care       Date:  2015-08-13       Impact factor: 9.097

View more
  3 in total

1.  Machine Learning-Based Systems for the Anticipation of Adverse Events After Pediatric Cardiac Surgery.

Authors:  Patricia Garcia-Canadilla; Alba Isabel-Roquero; Esther Aurensanz-Clemente; Arnau Valls-Esteve; Francesca Aina Miguel; Daniel Ormazabal; Floren Llanos; Joan Sanchez-de-Toledo
Journal:  Front Pediatr       Date:  2022-06-27       Impact factor: 3.569

2.  Development and External Validation of a Machine Learning Model for Prediction of Potential Transfer to the PICU.

Authors:  Anoop Mayampurath; L Nelson Sanchez-Pinto; Emma Hegermiller; Amarachi Erondu; Kyle Carey; Priti Jani; Robert Gibbons; Dana Edelson; Matthew M Churpek
Journal:  Pediatr Crit Care Med       Date:  2022-04-21       Impact factor: 3.971

3.  About gladiators and a sacred disease.

Authors:  Aila Akosua Kattner
Journal:  Biomed J       Date:  2022-03-23       Impact factor: 7.892

  3 in total

北京卡尤迪生物科技股份有限公司 © 2022-2023.