| Literature DB >> 34880365 |
Naoki Miyaguchi1, Koh Takeuchi2, Hisashi Kashima2, Mizuki Morita3, Hiroshi Morimatsu4.
Abstract
Recently, research has been conducted to automatically control anesthesia using machine learning, with the aim of alleviating the shortage of anesthesiologists. In this study, we address the problem of predicting decisions made by anesthesiologists during surgery using machine learning; specifically, we formulate a decision making problem by increasing the flow rate at each time point in the continuous administration of analgesic remifentanil as a supervised binary classification problem. The experiments were conducted to evaluate the prediction performance using six machine learning models: logistic regression, support vector machine, random forest, LightGBM, artificial neural network, and long short-term memory (LSTM), using 210 case data collected during actual surgeries. The results demonstrated that when predicting the future increase in flow rate of remifentanil after 1 min, the model using LSTM was able to predict with scores of 0.659 for sensitivity, 0.732 for specificity, and 0.753 for ROC-AUC; this demonstrates the potential to predict the decisions made by anesthesiologists using machine learning. Furthermore, we examined the importance and contribution of the features of each model using Shapley additive explanations-a method for interpreting predictions made by machine learning models. The trends indicated by the results were partially consistent with known clinical findings.Entities:
Mesh:
Substances:
Year: 2021 PMID: 34880365 PMCID: PMC8655034 DOI: 10.1038/s41598-021-03112-2
Source DB: PubMed Journal: Sci Rep ISSN: 2045-2322 Impact factor: 4.379
Figure 1Overview of the decision prediction system considered in this study. The model is trained using supervised learning to predict future anesthetic decisions for unknown patients.
Here, we present results to compare prediction performance for different lengths of time intervals when predicting flux increases.
| Prediction horizon (min) | Accuracy | Sensitivity | Specificity | Precision | AUC |
|---|---|---|---|---|---|
| 1 | 0.023 | ||||
| 2 | 0.706 | 0.620 | 0.708 | 0.040 | 0.713 |
| 3 | 0.689 | 0.590 | 0.692 | 0.053 | 0.687 |
| 4 | 0.678 | 0.560 | 0.683 | 0.065 | 0.667 |
| 5 | 0.667 | 0.546 | 0.673 | 0.652 |
Values in bold indicate the best score for the same indicator. With the exception of the precision metric, performance improved as the prediction time becomes shorter. We confirmed statistically significant differences in terms of AUC using t-tests among all problem settings.
Comparison of the performance when the length of the time series feature used for prediction was set to either 3 or 5 min.
| Time series feature length (min.) | Accuracy | Sensitivity | Specificity | Precision | AUC |
|---|---|---|---|---|---|
| 3 | 0.725 | 0.663 | 0.725 | 0.023 | 0.753 |
| 5 | 0.734 | 0.650 | 0.734 | 0.023 | 0.753 |
For all evaluation metrics, the performance was similar, and no significant differences were observed using the t-tests.
Comparison of the different machine learning models. The choice of machine learning model did not have a critical impact on the results.
| Accuracy | Sensitivity | Specificity | Precision | AUC | |
|---|---|---|---|---|---|
| Logistic regression | 0.699 | 0.691 | 0.699 | 0.022 | 0.752 |
| SVM | 0.739 | 0.590 | 0.740 | 0.022 | 0.720 |
| Random forest | 0.749 | 0.563 | 0.751 | 0.022 | 0.713 |
| LightGBM | 0.705 | 0.659 | 0.706 | 0.021 | 0.738 |
| ANN | 0.642 | 0.739 | 0.641 | 0.020 | 0.742 |
| LSTM | 0.731 | 0.659 | 0.732 | 0.023 | 0.753 |
Figure 2Top 10 important features calculated according to mean absolute SHAP values. SBP, MAP, HR, remifentanil flow, and patient weight immediately before prediction are relatively important features for all methods.
Figure 3Contribution of each feature to individual predictions. The x-axis represents the value of the feature, and the y-axis represents the SHAP value. Positive SHAP values indicate the model tends to predict that the flow will increase, whereas negative values indicate that the flow will not increase. BP and HR show correlations with SHAP values, whereas remifentanil flow shows negative correlations.
Details of collected data variables.
| Variable | Description |
|---|---|
| Timestamp (min) | Elapsed time in minutes |
| HR (bpm) | Heart rate per minute |
| SBP (mmHg) | Systolic blood pressure |
| MAP (mmHg) | Mean arterial pressure |
| DBP (mmHg) | Diastolic blood pressure |
| RR (breaths per minute) | Respiratory rate |
| SpO2 (%) | Oxygen saturation |
| EtCO2 (%) | End tidal carbon dioxide |
| Remifentanil flow ( | Remifentanil flow rate |
| One-shot elasped time (min) | Elapsed minutes since the last observed Remifentanil/fentanyl one-shot infusion |
Figure 4Flowchart for data process. In the 210 cases selected by multiple criteria, the data were preprocessed, and then, randomly divided into five parts for cross-validation.
Statistics of the selected 210 patients data.
| Item | Total | Male | Female |
|---|---|---|---|
| Sex ratio | 210 | 103 (49.0%) | 107 (51.0%) |
| Age (mean±sd) | |||
| Height (mean±sd) | |||
| Weight (mean±sd) |
Figure 5LSTM model architecture used in our experiments.