| Literature DB >> 31641162 |
Josef Fagerström1, Magnus Bång2, Daniel Wilhelms3,4, Michelle S Chew3.
Abstract
Sepsis is a major health concern with global estimates of 31.5 million cases per year. Case fatality rates are still unacceptably high, and early detection and treatment is vital since it significantly reduces mortality rates for this condition. Appropriately designed automated detection tools have the potential to reduce the morbidity and mortality of sepsis by providing early and accurate identification of patients who are at risk of developing sepsis. In this paper, we present "LiSep LSTM"; a Long Short-Term Memory neural network designed for early identification of septic shock. LSTM networks are typically well-suited for detecting long-term dependencies in time series data. LiSep LSTM was developed using the machine learning framework Keras with a Google TensorFlow back end. The model was trained with data from the Medical Information Mart for Intensive Care database which contains vital signs, laboratory data, and journal entries from approximately 59,000 ICU patients. We show that LiSep LSTM can outperform a less complex model, using the same features and targets, with an AUROC 0.8306 (95% confidence interval: 0.8236, 0.8376) and median offsets between prediction and septic shock onset up to 40 hours (interquartile range, 20 to 135 hours). Moreover, we discuss how our classifier performs at specific offsets before septic shock onset, and compare it with five state-of-the-art machine learning algorithms for early detection of sepsis.Entities:
Mesh:
Year: 2019 PMID: 31641162 PMCID: PMC6805937 DOI: 10.1038/s41598-019-51219-4
Source DB: PubMed Journal: Sci Rep ISSN: 2045-2322 Impact factor: 4.379
AUROC and HBO for LiSep LSTM and the five state-of-the-art models.
| Model Number | AUROC (95% CI) | HBO Median (IQR) |
|---|---|---|
| LiSep LSTM | 0.83 (0.82, 0.84) | 48 (20.0, 135.0) |
| TREWScore | 0.83 (0.81, 0.85) | 28.2 (10.6, 94.2) |
| InSight | 0.83 (0.80, 0.86) | <3* (N/A) |
| Multitask LSTM | 0.85 (N/A) | N/A (N/A) |
| SepLSTM | 0.93 (N/A) | <3* (N/A) |
| Liu | 0.93 (N/A) | 7.0 (N/A) |
*Measured from the first sustained SIRS event.
Figure 1ROC curve for LiSep LSTM vs. TREWScore. Error bars show 95% CI. LiSep LSTM ROC curve (blue) was computed using test data. Confidence intervals were calculated by bootstraping the evaluation results for the six trained model instances. TREWScore ROC curve (orange) was extracted from the graph presented by Henry et al.
Figure 2AUROC over the 48 hours directly preceding septic shock onset. Area under the ROC curve for LiSep LSTM (blue) when considering only predictions made within a number of hours before septic shock onset as indicated by the x-axis. Error bars show 95% CI and were generated by bootstrapping the evaluation results for the six trained model instances.
Figure 3Overview of an LSTM neural processing unit. x is the input data, h is the hidden state, i, o, and f are gates controlling the flow of information, and c is the cell state. The S-shaped curves represent the application of an activation function. The black crosses represent the element-wise product.