Machine learning for outcome predictions of patients with trauma during emergency department care ================================================================================================= * Joshua David Cardosi * Herman Shen * Jonathan I Groner * Megan Armstrong * Henry Xiang ## Abstract **Objectives** To develop and evaluate a machine learning model for predicting patient with trauma mortality within the US emergency departments. **Methods** This was a retrospective prognostic study using deidentified patient visit data from years 2007 to 2014 of the National Trauma Data Bank. The predictive model intelligence building process is designed based on patient demographics, vital signs, comorbid conditions, arrival mode and hospital transfer status. The mortality prediction model was evaluated on its sensitivity, specificity, area under receiver operating curve (AUC), positive and negative predictive value, and Matthews correlation coefficient. **Results** Our final dataset consisted of 2 007 485 patient visits (36.45% female, mean age of 45), 8198 (0.4%) of which resulted in mortality. Our model achieved AUC and sensitivity-specificity gap of 0.86 (95% CI 0.85 to 0.87), 0.44 for children and 0.85 (95% CI 0.85 to 0.85), 0.44 for adults. The all ages model characteristics indicate it generalised, with an AUC and gap of 0.85 (95% CI 0.85 to 0.85), 0.45. Excluding fall injuries weakened the child model (AUC 0.85, 95% CI 0.84 to 0.86) but strengthened adult (AUC 0.87, 95% CI 0.87 to 0.87) and all ages (AUC 0.86, 95% CI 0.86 to 0.86) models. **Conclusions** Our machine learning model demonstrates similar performance to contemporary machine learning models without requiring restrictive criteria or extensive medical expertise. These results suggest that machine learning models for trauma outcome prediction can generalise to patients with trauma across the USA and may be able to provide decision support to medical providers in any healthcare setting. * machine learning * deep learning ### Summary #### What is already known? * Machine learning methods such as XGBoost and Deep Neural Networks are capable of accurately predicting patient outcomes in complex clinical settings. * Previous works have demonstrated good performance for predicting hospitalisation or critical outcomes (which includes either intensive care unit admission or patient death). #### What does this paper add? * This study presents a new predictive Deep Neural Network which can generate effective and high-fidelity outcome prediction models for patients with trauma across a broader population than previously demonstrated. * With the size of the dataset used, we were able to limit the predicted outcome to patient mortality, which is a relatively rare but highly relevant event in the emergency department. ## Introduction Trauma is a leading cause of death in the USA, and each year, thousands of trauma physicians and other front-line healthcare personnel face a critical triage decision: which patients should be prioritised to prevent major complications or death?1 In 2018 alone, traumatic injuries caused over 240 000 mortalities in the USA.2 3 Evidence-based tools such as Injury Severity Score (ISS) can mislead medical professionals into undertriaging patients or incorrectly classifying a patient’s condition as unsurvivable, and regression models are often limited by restrictive model criteria.4–7 A regression line cannot capture the highly non-linear decision boundary required for accurate patient triage, and with the annual increase of emergency department (ED) visits outpacing the growth of the US population most years,8 a more useful prognostic tool will be necessary to achieve better patient outcomes and resource utilisation.9 Many researchers over the past 30 years have sought to improve the clinical decision-making process for patient care. McGonigal *et al* demonstrated the groundbreaking capabilities of neural networks using only Revised Trauma Score, ISS and patient age to provide more accurate predictions than contemporary logistic regression models.10 Marble and Healy produced a more sophisticated model which could identify sepsis with almost 100% accuracy.11 These studies were only valid for a small subset of patients, though—they narrowed their focus to specific patient conditions. Significant advancements in machine learning (ML) techniques have been made since these papers’ publication, and more effort than ever is pushing towards modelling techniques that generalise across all patients, regardless of age or injury mechanism. Several recent papers have demonstrated the power of ML in predicting patient outcomes in the hospital and ED, but these were formulated without an abundance of nationally representative data sets, with models restricted to certain age groups, or without the verification of model performance across different injury mechanisms.12–14 These issues created a gap in clinical understanding about the models’ generalisability across patient demographics and conditions. There is, therefore, a need to study the capabilities of ML on a sufficiently large and diverse national dataset with a focus on generalisability across clinical scenarios. To the best of our knowledge, no study we searched has used ML solely to predict ED death, despite the clinical relevance of such a risk assessment tool in prioritising and triaging critical patients. With a large dataset that captures patient visit information from across the United States, we hypothesised that an all ages, injury-invariant, generalisable ML model could predict patient mortality in the ED better than current practices. The model’s generalisability across different age groups was validated by examining contemporary mortality prediction models, comparing key performance metrics and analysing performance characteristics across injury types to ensure model invariance. ## Methods ### Study setting This retrospective study used 2007–2014 National Trauma Data Bank (NTDB) data. The American College of Surgeons (ACS) collects trauma registry data from hospitals across the USA every year and compiles it into the NTDB. The ACS has created the National Trauma Data Standard (NTDS) Data Dictionary, which ensures the quality and validity of data used by researchers.12 ### Study samples From 5.8 million patient visits captured in the data, we selected patient with trauma visits with complete ED vitals, a known mode of arrival and transfer status, and a valid outcome (ie, excluding dispositions that were ‘not applicable’, ‘not known/recorded’ or ‘left against medical advice’). Patients not meeting these criteria were removed from the dataset. ### Predictor variables We considered the 77 predictors for mortality shown in table 1, all of which are typically available at the time of patient admission and triage in the ED. Predictors came from the following categories: demographics, ED vitals, comorbidities, injury intent, injury type, injury mechanism, arrival mode and transfer status.4 13 14 Over the years, the NTDS has added and removed certain comorbidities. Chronic conditions not represented across all years were removed from the dataset. NTDS External Injury Codes were transformed into injury type, mechanism and intent based on the International Classification of Diseases, Ninth Revision, Clinical Modification (ICD-9-CM) code recorded for the patient. View this table: [Table 1](http://informatics.bmj.com/content/28/1/e100407/T1) Table 1 Predictor and trauma outcome variables ### Outcome variables The outcome variable being predicted was patient mortality. Patients with a disposition of ‘deceased/expired,’ ‘expired’ or ‘discharged/transferred to hospice care’ were treated as positive cases for patient mortality, as each is explicitly mortality or an expectation of such shortly after discharge.15 16 All other valid outcomes were treated as negative for patient mortality. These included general admission to the hospital, admission to a specialised unit within the hospital (intensive care unit (ICU), step-down, etc), transfer to another hospital or discharge from the ED. ### Model generation Data were preprocessed before being passed to the model for training or prediction. Two separate, non-overlapping datasets were constructed; one contained hospital outcomes and the other contained ED outcomes. For each, a training set was created using 70% of the data available, and the remaining 30% was retained as a test set. As there are relatively few mortalities, we used stratification to sample from the pool of mortality and non-mortality cases individually, ensuring each class is represented proportionally. Categorical data were given binary encodings for each variable in a category (one-hot encoding) and numerical data were standardised.17 We trained an XGBoost model to predict ISS and add it as a feature in the data, as ISS can be very useful in determining the immediacy of a patient’s condition but is not typically available on patient check-in. Our custom PyTorch model architecture shown in figure 1 was composed of four distinct layers: a single input layer, two hidden layers with 300 and 100 neurons, respectively, and a final output layer which predicted patient mortality.18 Batch normalisation and drop-out layers were used to prevent overfitting. The final architecture was made specifically for this study and applied to three different age groupings: children, adults and all ages. ![Figure 1](http://informatics.bmj.com/https://informatics.bmj.com/content/bmjhci/28/1/e100407/F1.medium.gif) [Figure 1](http://informatics.bmj.com/content/28/1/e100407/F1) Figure 1 Model architecture and sample training loss. The model consisted of three layers and used both batch normalisation and dropout to smooth training loss and prevent overfitting of the model to the training set. Figure by JDC. ISS, Injury Severity Score. Because of the scarcity of ED mortality data points, we tried pretraining each model with a coarse learning rate on hospital outcomes to boost its discriminatory capabilities.19 Then, using a finer learning rate, the model was trained again on the dataset containing ED outcomes. The pretrained model’s performance was compared with one with no pretraining, and the better of the two was selected. Models were evaluated on sensitivity, specificity, sensitivity-specificity gap, area under receiver operating characteristic curve (AUC), positive predictive value (PPV), negative predictive value (NPV) and Matthews correlation coefficient (MCC). The sensitivity-specificity gap is the linear distance between these two values and explains how far the model is from having perfect predictive capabilities. It is calculated as shown in equation 1. ![Formula][1] Equation 1: sensitivity-specificity gap MCC is a balanced measure between true positives (TP), false positives (FP), true negatives (TN) and false negatives (FN) whereby the only means of improving the metric is reducing the total number of misclassifications. It is mathematically identical to Pearson correlation coefficient and is calculated as shown in equation 2. ![Formula][2] Equation 2: MCC ### Model verification To validate model performance, we collected results from other modern ML-based outcome prediction tools and compared our performance metrics. Goto *et al* and Raita *et al*’s models predict either patient mortality or admission to the ICU with ED check-in data,20 21 while Hong *et al* used triage data to predict patient hospitalisation.22 These papers did not report a value for MCC. Because no contemporary ML study has tried to generalise to all ages before, we segmented the models into different age groupings. To evaluate model competence in predicting outcomes irrespective of the nature of a patient’s injury, injury mechanisms determined by the reported external injury code were systematically filtered out of the data before training and testing the model. To verify the model architecture’s effectiveness in learning to predict mortality, we created a second set of models which predicted the overall outcome of a patient, whether in the hospital or in the ED. This was an important step in verifying the model due to the scarcity of ED mortality data points and relative abundance of hospital deaths. ### Statistical analysis of excluded patients Because of the reduction of the dataset from 5.8 million patient visits to two million, we examined whether patients meeting our inclusion criteria had the same distribution as those we excluded, with the goal of comparing their baseline characteristics. We applied Student’s t-test to the patient age, Glasgow Coma Score (GCS) total and ISS and the χ2 test to patient gender and presence of comorbidities. For each variable, we calculated a p value with an alpha level of 0.05 to determine whether included and excluded patients were statistically similar. All tests returned a p value of zero, indicating included and excluded patients occupy different distributions. This might imply that excluded patients had a reason some data were missing. ## Results From 2007 to 2014, 5.8 million unique patient with trauma visits were recorded in the NTDB with two million unique visits meeting our inclusion criteria. The data which met these criteria were composed of 300 847 children and 1 706 638 adults. Table 1 shows characteristics of the child and adult populations with respect to the selected predictors and outcomes. From these data, the hospital outcome dataset contained 1 765 545 unique visits, and the ED outcome dataset retained the remaining 245 940. ### Model benchmarking For children, our model achieved similar performance to Goto’s Deep Neural Network (DNN),20 with an improvement in PPV (0.09; 95% CI 0.08 to 0.10), as shown in table 2. Across all other metrics, our model’s performance characteristics fell within the CIs given by the Goto DNN. Additionally, the size of our dataset allows for our 95% CI to be much narrower than the comparison models for children. View this table: [Table 2](http://informatics.bmj.com/content/28/1/e100407/T2) Table 2 Predictor and trauma outcome variables The adults-only model showed similar performance to the comparison models. The sensitivity (0.76; 95% CI 0.76 to 0.76) was higher than the Hong Triage DNN22 (0.70) and fell just below the Raita DNN21 (0.80; 95% CI 0.77 to 0.83) while still achieving high specificity (0.80; 95% CI 0.80 to 0.80). The sensitivity-specificity gap (0.44) demonstrated that the model was balanced similarly to the comparison models. The all ages model’s performance metrics were generally in line with those from our child and adult only models. ### Performance across injury mechanisms The models for all ages and adults-only both saw an increase in predictive performance across all metrics when excluding fall injuries from the test set. Table 3 shows the adult model without fell exhibited better AUC (0.87; 95% CI 0.87 to 0.87), specificity (0.84; 95% CI 0.83 to 0.85), sensitivity-specificity gap (0.39), PPV (0.16; 95% CI 0.15 to 0.17) and MCC (0.659; 95% CI 0.652 to 0.666) while maintaining similar sensitivity (0.77; 95% CI 0.76 to 0.78) and NPV (0.989; 95% CI 0.988 to 0.990). The model for children was weaker when falling injuries were excluded, with a lower sensitivity (0.71; 95% CI 0.70 to 0.72) and MCC (0.569; 95% CI 0.553 to 0.585). These results revealed that the model was invariant to all injury mechanisms in the NTDS except for falling injuries, which might require additional predictors. View this table: [Table 3](http://informatics.bmj.com/content/28/1/e100407/T3) Table 3 Comparison of performance with and without fall injuries ### Architecture verification The second set of models, which predicted patients’ overall outcome, outperformed the ED only models in most respects. For children, it achieved superior AUC (0.91; 95% CI 0.91 to 0.91), sensitivity (0.80 95% CI 0.80 to 0.80), specificity (0.92; 95% CI 0.92 to 0.92), sensitivity-specificity gap (0.28), NPV (0.998; 95% CI 0.998 to 0.998), and MCC (0.746; 95% CI 0.742 to 0.750), as could be seen in table 4. View this table: [Table 4](http://informatics.bmj.com/content/28/1/e100407/T4) Table 4 Model performance for varying outcome predictions Similarly, for adults, the hospital and ED model achieved stronger AUC (0.89; 95% CI 0.89 to 0.89), sensitivity (0.79; 95% CI 0.79 to 0.79), specificity (0.84; 95% CI 0.84 to 0.84), sensitivity-specificity gap (0.37), PPV (0.12; 95% CI 0.12 to 0.12), NPV (0.993; 95% CI 0.993 to 0.993) and MCC (0.689; 95% CI 0.687 to 0.691). The hospital and ED all-ages model achieved AUC (0.90; 95% CI 0.90 to 0.90), sensitivity-specificity gap (0.36), and MCC (0.711; 95% CI 0.709 to 0.713). These general performance characteristics were between the corresponding metrics for child and adult models, indicating it had generalised for both children and adults. ## Discussion Implementation of our ML architecture on the NTDB provided innovative predictive capabilities that generalise to all trauma age groups and most types of injuries. With our dataset of approximately two million unique visits, we created a single neural network architecture and trained unique models for children, adults and all ages. Our models for children and adults achieved similar performance to the comparison models across most metrics, reinforcing the notion that such performance is possible across a more diverse set of patients than previously tested. These results suggest that our models could generalise well across all ages. However, fall injuries have the potential to confound the model, suggesting that the outcome of fall injuries might require more information than the included predictors provide. It is important to note that one study not referenced in table 2, the Trauma Quality Improvement Programme (TQIP),23 24 has built a logistic regression model for child patient mortality that achieved an AUC of 0.996—almost perfect predictive power—but featured much narrower inclusion criteria than this study. Whereas the TQIP report limited their observations to victims of blunt, penetrating, or abuse-related injuries with at least one Abbreviated Injury Score (AIS) of two or greater, we imposed none of these criteria.25 Our study has advantages over prior publications we’ve found in ML trauma outcome prediction, featuring over two million unique patient encounters from across the USA. While previous studies showed the capabilities of ML as a prognostic tool, none captured the diverse healthcare settings across the USA, demonstrated invariance across injury mechanisms, or focused solely on patient mortality, and only one confirmed that additional data would not improve its model further.20–22 ML is a data-driven technique, requiring a multitude of unique data points to maximise the model’s predictive power. With our large, diverse set of trauma data, we are confident that our model is optimised for its current architecture, and the narrow CIs indicate it might generalise to patients with trauma across the USA. While testing model invariance across injury mechanisms, we discovered that excluding fall injuries noticeably affected the model’s predictive capabilities. It is well known that adult fall injuries, especially in the elderly population, can result in hip fractures, leading to complications and death. Current triage guidelines acknowledge the complex nature of ground-level falls on the elderly,26 and at least one study has demonstrated that AIS and GCS are unreliable measures for assessing these patients’ mortality risk levels.27 Although removing these injuries improved the performance of the adult model, the child model achieved slightly worse performance, indicating the model could discern the seriousness of a child’s fall-related injury well. Further investigation will be necessary to find the predictors and ML architecture to overcome this confounding factor. Our model architecture verification process indicates that the architecture of figure 1 can make predictions highly correlated with a patient’s true outcome. The challenge in achieving reliable results for ED only cases lies in the scarcity of ED mortality data points, not the modelling approach. Widening the inclusion criteria may allow for more training examples to be retained, but it will come at the cost of data richness. The main limitation of this study is the need for a complete set of patient vitals. Our dataset had approximately 5.8 million unique patient visits, but only two million met our inclusion criteria. While this is sufficient for training, it signifies that there are many clinical scenarios our model cannot handle. However, our study is broader than similar works, as medical research often limits its inclusion criteria to a small subset of patient characteristics. This specialisation improves model performance but makes it irrelevant to many patients in actual clinical settings. Our methods only filter out patients missing important information, such as vitals or demographics; we do not filter by age, injury mechanism or any other categorical value, and we demonstrate the viability of this approach in predicting patient outcomes. The NTDB provides a variety of pertinent facility-related information, but our study excluded it to ensure a fair comparison to contemporary works, as they did not have access to facility variables. Some facilities, like level 1 trauma centres, will be better equipped than others to handle certain types of patients, and that reality is not captured in this study.28–30 Instead, we based our ML on patient demographics and injury characteristics so prehospital emergency medical services could use the prediction to guide patient with trauma field triage. Finally, the deidentified nature of the data used means our model can only analyse the outcomes of individual visits rather than the patients themselves. A longitudinal study would likely benefit the model, as it could learn the patterns which contribute to patient deterioration over the long-term rather than during a single visit. ### Future work Further research into the defining patient characteristics, model architecture or preprocessing pipeline, which allows the model to differentiate between fatal and survivable fall injuries, is a necessary next step. This will address the performance loss observed when patients who have suffered a fall injury are included in the test set. Additionally, data related to healthcare facilities should be integrated into the predictive model, as this will help discern whether the patient should receive the care necessary to prevent mortality. Finally, the predictor variables selected for this study should be pruned to only include those which aid the model’s performance. This will result in fewer excluded patients and, therefore, more examples of patient mortality for the model to learn from. ## Conclusion A predictive model for patient with trauma mortality from approximately two million unique visits to the US ED was developed, and it achieved similar performance characteristics to contemporary models. However, predictors used in this study did not allow the model to fully differentiate between fatal and survivable fall injuries, as the model saw a significant performance boost when fall injuries were removed from the dataset. Future work will need to determine the predictors or processing methods needed to overcome this confounding factor. Ultimately, this study demonstrates that ML models can make predictions highly correlated with a trauma patient’s true outcome. As a result, healthcare workers in the ED may use them as a risk assessment aid when determining the urgency of a patient’s condition. This approach has the potential to reduce the burden on healthcare personnel, prevent overutilisation of resources due to overtriage and improve the quality of care available to those who truly need it to reduce mortality risk. ## Data availability statement Data may be obtained from a third party and are not publicly available. The National Trauma Data Bank dataset consists of deidentified patient data. It is made available by the American College of Surgeons for researchers meeting their eligibility criteria. ## Ethics statements ### Patient consent for publication Not applicable. ## Footnotes * Contributors JDC, The Ohio State University: Literature search, figures, model design, data analysis, data interpretation, writing. HS, The Ohio State University: Literature search, figures, model design, study design, writing. JIG, Nationwide Children’s Hospital: Study design, data interpretation, writing. MA, Nationwide Children’s Hospital: Literature search, data interpretation, writing. HX, The Ohio State University & Nationwide Children’s Hospital: Literature search, study design, data interpretation, writing. All authors contributed equally. * Funding The authors have not declared a specific grant for this research from any funding agency in the public, commercial or not-for-profit sectors. Efforts by JIG, MA, and HX were supported by Nationwide Children’s Hospital internal funds. * Competing interests None declared. * Provenance and peer review Not commissioned; externally peer reviewed. * Received May 6, 2021. * Accepted September 13, 2021. * © Author(s) (or their employer(s)) 2021. Re-use permitted under CC BY-NC. No commercial re-use. See rights and permissions. Published by BMJ. [http://creativecommons.org/licenses/by-nc/4.0/](http://creativecommons.org/licenses/by-nc/4.0/) This is an open access article distributed in accordance with the Creative Commons Attribution Non Commercial (CC BY-NC 4.0) license, which permits others to distribute, remix, adapt, build upon this work non-commercially, and license their derivative works on different terms, provided the original work is properly cited, appropriate credit is given, any changes made indicated, and the use is non-commercial. See: [http://creativecommons.org/licenses/by-nc/4.0/](http://creativecommons.org/licenses/by-nc/4.0/). ## References 1. Drendel AL, Gray MP, Lerner EB. A systematic review of hospital trauma team activation criteria for children. Pediatr Emerg Care 2019;35:8–15.[doi:10.1097/PEC.0000000000001256](http://dx.doi.org/10.1097/PEC.0000000000001256)pmid:http://www.ncbi.nlm.nih.gov/pubmed/30608908 [PubMed](http://informatics.bmj.com/lookup/external-ref?access_num=http://www.n&link_type=MED&atom=%2Fbmjhci%2F28%2F1%2Fe100407.atom) 2. Centers for Disease Control and Prevention. Web-based injury statistics query and reporting system (WISQARS™). Available: [https://www.cdc.gov/injury/wisqars/index.html](https://www.cdc.gov/injury/wisqars/index.html) [Accessed 13 Apr 2020]. 3. Cunningham RM, Walton MA, Carter PM. The major causes of death in children and adolescents in the United States. N Engl J Med 2018;379:2468–75.[doi:10.1056/NEJMsr1804754](http://dx.doi.org/10.1056/NEJMsr1804754)pmid:http://www.ncbi.nlm.nih.gov/pubmed/30575483 [CrossRef](http://informatics.bmj.com/lookup/external-ref?access_num=10.1056/NEJMsr1804754&link_type=DOI) [PubMed](http://informatics.bmj.com/lookup/external-ref?access_num=30575483&link_type=MED&atom=%2Fbmjhci%2F28%2F1%2Fe100407.atom) 4. Baker SP, O'Neill B, Haddon W, et al. The injury severity score: a method for describing patients with multiple injuries and evaluating emergency care. J Trauma 1974;14:187–96.pmid:http://www.ncbi.nlm.nih.gov/pubmed/4814394 [CrossRef](http://informatics.bmj.com/lookup/external-ref?access_num=10.1097/00005373-197403000-00001&link_type=DOI) [PubMed](http://informatics.bmj.com/lookup/external-ref?access_num=4814394&link_type=MED&atom=%2Fbmjhci%2F28%2F1%2Fe100407.atom) [Web of Science](http://informatics.bmj.com/lookup/external-ref?access_num=A1974S432100001&link_type=ISI) 5. Elgin LB, Appel SJ, Grisham D, et al. Comparisons of trauma outcomes and injury severity score. J Trauma Nurs 2019;26:199–207.[doi:10.1097/JTN.0000000000000449](http://dx.doi.org/10.1097/JTN.0000000000000449)pmid:http://www.ncbi.nlm.nih.gov/pubmed/31283749 [PubMed](http://informatics.bmj.com/lookup/external-ref?access_num=http://www.n&link_type=MED&atom=%2Fbmjhci%2F28%2F1%2Fe100407.atom) 6. Peng J, Xiang H. Trauma undertriage and overtriage rates: are we using the wrong formulas? Am J Emerg Med 2016;34:2191–2.[doi:10.1016/j.ajem.2016.08.061](http://dx.doi.org/10.1016/j.ajem.2016.08.061)pmid:http://www.ncbi.nlm.nih.gov/pubmed/27615156 [PubMed](http://informatics.bmj.com/lookup/external-ref?access_num=http://www.n&link_type=MED&atom=%2Fbmjhci%2F28%2F1%2Fe100407.atom) 7. Saltelli A. A short Comment on statistical versus mathematical modelling. Nat Commun 2019;10:3870. [doi:10.1038/s41467-019-11865-8](http://dx.doi.org/10.1038/s41467-019-11865-8)pmid:http://www.ncbi.nlm.nih.gov/pubmed/31455789 [PubMed](http://informatics.bmj.com/lookup/external-ref?access_num=http://www.n&link_type=MED&atom=%2Fbmjhci%2F28%2F1%2Fe100407.atom) 8. Brian MJ, Stocks C, Owens PL. Trends in emergency department visits, 2006-2014, 2017. 9. Mowry M. The evolution of trauma performance improvement. J Emerg Crit Care Med 2019;3:6.[doi:10.21037/jeccm.2019.01.03](http://dx.doi.org/10.21037/jeccm.2019.01.03) 10. McGonigal MD, Cole J, Schwab W, et al. A new approach to probability of surviving score for trauma quality assurance. J Trauma 1992:863–70.[doi:10.1097/00005373-199306000-00018](http://dx.doi.org/10.1097/00005373-199306000-00018) 11. Marble RP, Healy JC. A neural network approach to the diagnosis of morbidity outcomes in trauma care. Artif Intell Med 1999;15:299–307.[doi:10.1016/S0933-3657(98)00059-1](http://dx.doi.org/10.1016/S0933-3657(98)00059-1)pmid:http://www.ncbi.nlm.nih.gov/pubmed/10206112 [CrossRef](http://informatics.bmj.com/lookup/external-ref?access_num=10.1016/S0933-3657(98)00059-1&link_type=DOI) [PubMed](http://informatics.bmj.com/lookup/external-ref?access_num=10206112&link_type=MED&atom=%2Fbmjhci%2F28%2F1%2Fe100407.atom) [Web of Science](http://informatics.bmj.com/lookup/external-ref?access_num=000079216100005&link_type=ISI) 12. About NTDB. Available: [https://www.facs.org/quality-programs/trauma/tqp/center-programs/ntdb/about](https://www.facs.org/quality-programs/trauma/tqp/center-programs/ntdb/about) 13. Abbreviated injury scale (AIS). Available: [https://www.aaam.org/abbreviated-injury-scale-ais/](https://www.aaam.org/abbreviated-injury-scale-ais/) 14. Teasdale G, Jennett B. Assessment of coma and impaired consciousness. a practical scale. Lancet 1974;2:81–4.[doi:10.1016/s0140-6736(74)91639-0](http://dx.doi.org/10.1016/s0140-6736(74)91639-0)pmid:http://www.ncbi.nlm.nih.gov/pubmed/4136544 [CrossRef](http://informatics.bmj.com/lookup/external-ref?access_num=10.1016/S0140-6736(02)93219-8&link_type=DOI) [PubMed](http://informatics.bmj.com/lookup/external-ref?access_num=4136544&link_type=MED&atom=%2Fbmjhci%2F28%2F1%2Fe100407.atom) [Web of Science](http://informatics.bmj.com/lookup/external-ref?access_num=A1974T535500009&link_type=ISI) 15. Hashmi ZG, Kaji AH, Nathens AB. Practical guide to surgical data sets: National trauma data bank (NTDB). JAMA Surg 2018;153:852–3.[doi:10.1001/jamasurg.2018.0483](http://dx.doi.org/10.1001/jamasurg.2018.0483)pmid:http://www.ncbi.nlm.nih.gov/pubmed/29617536 [PubMed](http://informatics.bmj.com/lookup/external-ref?access_num=http://www.n&link_type=MED&atom=%2Fbmjhci%2F28%2F1%2Fe100407.atom) 16. What are palliative care and hospice care?National Institutes of Health (NIH). Available: [https://www.nia.nih.gov/health/what-are-palliative-care-and-hospice-care](https://www.nia.nih.gov/health/what-are-palliative-care-and-hospice-care) [Accessed 08 Aug 2021]. 17. Pedregosa F, Varoquaux G, Gramfort A, et al. Scikit-learn: machine learning in python. JMLR 2011;12:2825–30 [https://www.jmlr.org/papers/v12/pedregosa11a.html](https://www.jmlr.org/papers/v12/pedregosa11a.html) 18. Paszke A, Gross S, Massa F, et al. Pytorch: an imperative style, high-performance deep learning library. In: Advances in neural information processing systems. 32. Curran Associates, Inc, 2019: 8024–35. [https://papers.nips.cc/paper/2019/hash/bdbca288fee7f92f2bfa9f7012727740-Abstract.html](https://papers.nips.cc/paper/2019/hash/bdbca288fee7f92f2bfa9f7012727740-Abstract.html) 19. Pratt LY. Discriminability-based transfer between neural networks. NIPS Conference: Advances in Neural Information Processing Systems 5, 1993: 204–11. 20. Goto T, Camargo CA, Faridi MK, et al. Machine learning-based prediction of clinical outcomes for children during emergency department triage. JAMA Netw Open 2019;2:e186937. [doi:10.1001/jamanetworkopen.2018.6937](http://dx.doi.org/10.1001/jamanetworkopen.2018.6937)pmid:http://www.ncbi.nlm.nih.gov/pubmed/30646206 [PubMed](http://informatics.bmj.com/lookup/external-ref?access_num=http://www.n&link_type=MED&atom=%2Fbmjhci%2F28%2F1%2Fe100407.atom) 21. Raita Y, Goto T, Faridi MK, et al. Emergency department triage prediction of clinical outcomes using machine learning models. Crit Care 2019;23:64.[doi:10.1186/s13054-019-2351-7](http://dx.doi.org/10.1186/s13054-019-2351-7)pmid:http://www.ncbi.nlm.nih.gov/pubmed/30795786 [PubMed](http://informatics.bmj.com/lookup/external-ref?access_num=http://www.n&link_type=MED&atom=%2Fbmjhci%2F28%2F1%2Fe100407.atom) 22. Hong WS, Haimovich AD, Taylor RA. Predicting hospital admission at emergency department triage using machine learning. PLoS One 2018;13:e0201016. [doi:10.1371/journal.pone.0201016](http://dx.doi.org/10.1371/journal.pone.0201016)pmid:http://www.ncbi.nlm.nih.gov/pubmed/30028888 [CrossRef](http://informatics.bmj.com/lookup/external-ref?access_num=10.1371/journal.pone.0201016&link_type=DOI) [PubMed](http://informatics.bmj.com/lookup/external-ref?access_num=http://www.n&link_type=MED&atom=%2Fbmjhci%2F28%2F1%2Fe100407.atom) 23. Shafi S, Nathens AB, Cryer HG, et al. The trauma quality improvement program of the American College of surgeons committee on trauma. J Am Coll Surg 2009;209:521–30.[doi:10.1016/j.jamcollsurg.2009.07.001](http://dx.doi.org/10.1016/j.jamcollsurg.2009.07.001)pmid:http://www.ncbi.nlm.nih.gov/pubmed/19801325 [CrossRef](http://informatics.bmj.com/lookup/external-ref?access_num=10.1016/j.jamcollsurg.2009.07.001&link_type=DOI) [PubMed](http://informatics.bmj.com/lookup/external-ref?access_num=19801325&link_type=MED&atom=%2Fbmjhci%2F28%2F1%2Fe100407.atom) [Web of Science](http://informatics.bmj.com/lookup/external-ref?access_num=000270749900011&link_type=ISI) 24. Newgard CD, Fildes JJ, Wu L, et al. Methodology and analytic rationale for the American College of surgeons trauma quality improvement program. J Am Coll Surg 2013;216:147–57.[doi:10.1016/j.jamcollsurg.2012.08.017](http://dx.doi.org/10.1016/j.jamcollsurg.2012.08.017)pmid:http://www.ncbi.nlm.nih.gov/pubmed/23062519 [CrossRef](http://informatics.bmj.com/lookup/external-ref?access_num=10.1016/j.jamcollsurg.2012.08.017&link_type=DOI) [PubMed](http://informatics.bmj.com/lookup/external-ref?access_num=23062519&link_type=MED&atom=%2Fbmjhci%2F28%2F1%2Fe100407.atom) 25. American College of SurgeonsTrauma Co. ACS pediatric TQIP aggregate report: spring 2016, 2016: 43. 26. Centers for Disease Control and Prevention. Guidelines for field triage of injured patients: recommendations of the national expert panel on field triage, 2011. 61, 2012: 6–14. 27. Konda SR, Lott A, Egol KA. The coming hip and femur fracture bundle: a new inpatient risk stratification tool for care providers. Geriatr Orthop Surg Rehabil 2018;9:215145931879531.[doi:10.1177/2151459318795311](http://dx.doi.org/10.1177/2151459318795311)pmid:http://www.ncbi.nlm.nih.gov/pubmed/30263869 [PubMed](http://informatics.bmj.com/lookup/external-ref?access_num=http://www.n&link_type=MED&atom=%2Fbmjhci%2F28%2F1%2Fe100407.atom) 28. Amini R, Lavoie A, Moore L, et al. Pediatric trauma mortality by type of designated hospital in a mature inclusive trauma system. J Emerg Trauma Shock 2011;4:7. [doi:10.4103/0974-2700.76824](http://dx.doi.org/10.4103/0974-2700.76824) 29. Shi J, Lu B, Wheeler KK, et al. Unmeasured confounding in observational studies with multiple treatment arms: comparing emergency department mortality of severe trauma patients by trauma center level. Epidemiology 2016;27:8. [doi:10.1097/EDE.0000000000000515](http://dx.doi.org/10.1097/EDE.0000000000000515)pmid:http://www.ncbi.nlm.nih.gov/pubmed/27276025 [PubMed](http://informatics.bmj.com/lookup/external-ref?access_num=http://www.n&link_type=MED&atom=%2Fbmjhci%2F28%2F1%2Fe100407.atom) 30. Nattino G, Lu B, Shi J, et al. Triplet matching for estimating causal effects with three treatment arms: a comparative study of mortality by trauma center level. J Am Stat Assoc 2021;116:44–53.[doi:10.1080/01621459.2020.1737078](http://dx.doi.org/10.1080/01621459.2020.1737078) [1]: /embed/mml-math-1.gif [2]: /embed/mml-math-2.gif