Predicting Earthquake Casualties and Emergency Supplies Needs Based on PCA-BO-SVM
Abstract
:1. Introduction
- (1)
- The Principal Component Analysis method introduced by the model has the ability to reduce dimensionality, and PCA can reduce the dimension of input features, reduce the complexity of the model, reduce the risk of overfitting, and improve the computational efficiency, which makes the model more efficient when processing high-dimensional data. Through Principal Component Analysis, the model retains the most important information, avoids feature redundancy, and helps improve prediction accuracy.
- (2)
- Combined with Bayesian Optimization, the constructed PCA-BO-SVM model can be hyperparameter optimized in a lower dimension, reducing the probability of local optimum, and improving the global robustness of the model. The model can flexibly adapt to different feature combinations to improve the accuracy of earthquake casualty prediction.
- (3)
- The proposed model enhances the performance of the Support Vector Machine in earthquake casualty prediction by combining PCA dimensionality reduction technology and Bayesian Optimization hyperparameter selection. PCA plays an important role in reducing dimensions, improving computational efficiency, and improving model interpretability, while Bayesian Optimization ensures the optimization of hyperparameter selection, thereby improving the accuracy and credibility of the prediction results, effectively overcoming the computational complexity and local optimal problems existing in GA-SVM and BO-SVM, and providing a more reliable and efficient solution for earthquake casualty prediction.
2. Research Design
- Step 1: Identify the types of emergency resources to be predicted in the aftermath of an earthquake. To alleviate the survival pressures faced by affected populations and to ensure their basic living needs are met, this study references the “Catalogue of Key Emergency Support Materials (2020)” and selects resources categorized under life rescue and livelihood assistance as the focus of the research.
- Step 2: Develop the earthquake casualty prediction model based on PCA-BO-SVM. By utilizing historical data from 171 destructive earthquakes in China between 1966 and 2023, Principal Component Analysis is employed to reduce the dimensionality of the original data. Subsequently, the Bayesian Optimization algorithm is used to identify the optimal hyperparameters for the Support Vector Machine, thereby establishing the PCA-BO-SVM-based earthquake casualty prediction model.
- Step 3: Determine the typical emergency resources required and their respective demand quantities. Considering the most urgent needs of disaster victims, the resources are categorized into consumable and non-consumable types. Consumable resources include drinking water, compressed biscuits, and medical supply kits, while non-consumable resources consist of tents and clothing. Finally, based on the developed model, this study predicts the number of casualties resulting from an earthquake and estimates the demand for typical emergency resources.
3. Fundamental Principles
3.1. Principal Component Analysis
- (1)
- Assume that X consists of m samples , with each sample being n-dimensional, which corresponds to the following matrix:In Equation (1), denotes the n feature for the m sample.
- (2)
- Feature Parameter Standardization: To eliminate the dimensional and variance differences among different feature parameters and ensure a relatively fair influence of each feature parameter on the results of Principal Component Analysis, standardization is employed. This process enables the data distribution of each feature parameter to have similar scales and variances, thus preventing any feature parameter with a large numerical range or high variance from disproportionately affecting the computation of principal components. Consequently, this approach guarantees the accuracy and reliability of the principal components. The standardized data are more conducive to performing Principal Component Analysis, resulting in outcomes that are more interpretable and stable.
- (3)
- Calculate the correlation coefficient matrix :
- (4)
- Calculate the eigenvalues and contribution rates to determine the principal components.
- (1)
- Dimensionality Reduction and Information Retention: PCA effectively compresses redundant features within high-dimensional datasets, thereby reducing dimensionality while preserving the most critical information. This process not only alleviates computational burdens but also lowers model complexity, consequently reducing the risk of overfitting.
- (2)
- Improved Computational Efficiency: The training process of SVM can become exceedingly time-consuming and complex in high-dimensional spaces. By employing PCA for dimensionality reduction, the number of features input into the SVM is significantly decreased, resulting in reduced training times and enhanced computational efficiency.
- (3)
- Enhanced Model Interpretability: Following dimensionality reduction, the principal components provided by PCA often offer clearer insights into the underlying data structure. This clarity aids researchers in better understanding the key factors influencing earthquake casualties, thereby supporting informed decision-making.
3.2. Bayesian Optimization Algorithm
- (1)
- Building the Surrogate Model: In the initial phase, Bayesian Optimization randomly selects several hyperparameter combinations and evaluates the corresponding model performance metrics (e.g., prediction accuracy). The results of these evaluations are then utilized to construct a surrogate model that approximates the objective function within the hyperparameter space.
- (2)
- Utilization of Acquisition Functions: Based on the existing data, Bayesian Optimization employs acquisition functions (such as expected improvement or upper confidence bound) to determine the next hyperparameter combination to evaluate. These acquisition functions facilitate a balance between exploration (testing new hyperparameter combinations) and exploitation (optimizing known high-performing hyperparameter combinations).
- (3)
- Iterative Optimization: Through the continuous iteration of these steps, Bayesian Optimization progressively narrows the hyperparameter search space and ultimately identifies the optimal hyperparameter combination.
- (1)
- Model Complexity: Hyperparameters, such as the regularization parameter C in SVM, play a crucial role in adjusting model complexity. The selection of C influences the model’s susceptibility to overfitting or underfitting. A high C value may lead to exceptional fit on training data but result in poor generalization to testing data, thereby increasing the risk of overfitting. Conversely, a low C value may prevent the model from capturing complex patterns in the data, manifesting as underfitting. Thus, careful selection of C is essential, and Bayesian Optimization provides a precise mechanism for tuning this parameter.
- (2)
- Kernel Function Selection and Parameters: In SVM, the choice of the kernel function and its parameters (e.g., σ in Gaussian kernels) significantly affect model performance. Different kernel functions and their associated parameters determine the flexibility of the decision boundary. Selecting inappropriate kernel parameters may result in a loss of accuracy when modeling complex data structures. Bayesian Optimization can effectively explore kernel parameters, facilitating the model’s adaptation to underlying data patterns.
- (3)
- Model Generalization Capability: The selection of hyperparameters directly influences the model’s ability to generalize, which refers to its performance on unseen data. Fine-tuning hyperparameters through Bayesian Optimization can enhance the model’s adaptability to new data, thereby reducing its susceptibility to overfitting on a specific training set and improving predictive accuracy.
3.3. Support Vector Machine
4. Earthquake Casualty Prediction Model
- Step 1: Utilize Principal Component Analysis (PCA) to perform dimensionality reduction, correlation analysis, and normalization on the collected raw data, and to determine the principal components.
- Step 2: Select the fitness function. The quality of the parameters is assessed using the Mean Absolute Percentage Error (MAPE) as the criterion for the selection of the fitness function.
- Step 3: Employ the Bayesian Optimization (BO) algorithm to optimize the hyperparameters of the SVM. Set up the Bayesian optimizer to search for the optimal SVM hyperparameters, and optimize the BO-SVM model using the normalized training samples.
- Step 4: Output the best hyperparameters, train the SVM model, and construct the PCA-BO-SVM prediction model for earthquake casualties. Subsequently, perform predictions on the test samples and analyze the results.
- Step 5: Analyze and compare the running efficiency and prediction accuracy of different models to draw conclusions.
4.1. Data Preparation
4.2. Principal Component Analysis
4.3. Model Building
4.4. Prediction Results and Analysis
4.5. Discussion
5. Analysis of Emergency Material Demand for Earthquakes
Estimation of Emergency Supply Demand
6. Conclusions
- (1)
- Principal Component Analysis (PCA) was employed to reduce the dimensionality of the raw data from 171 destructive earthquakes in China, which included seven influential factors: time, earthquake intensity, occurrence timing, magnitude, population density in disaster areas, building seismic resistance, and earthquake forecasting capability. This dimensionality reduction from seven to four dimensions significantly enhanced operational efficiency and reduced model complexity.
- (2)
- The Bayesian Optimization (BO) algorithm exhibits superior convergence and robustness when dealing with high-dimensional data and complex optimization problems. It can more rapidly locate the global optimum and demonstrates exceptional performance in handling noisy data and non-convex optimization issues, making it more adaptable to real-world applications. Through Bayesian Optimization, this study configured the optimizer to search for optimal SVM hyperparameters, thereby improving model performance.
- (3)
- A PCA-BO-SVM earthquake casualty prediction model was constructed. Additionally, a comparison of the predictions from three different models revealed that the model developed in this study had a runtime of 17.42 s, an average accuracy of 94.25%, the shortest processing time, the highest accuracy, and the lowest average error. Compared to the GA-SVM, BO-SVM, and PCA-GA-SVM models, the PCA-BO-SVM model demonstrated improvements in average accuracy and operational efficiency of 10.1%, 7.05%, and 0.325%, as well as 25.5%, 18.4%, and 19.2%, respectively. Simultaneously, the average error was reduced by 12.86%, 9.01%, and 2%. These results indicate that the model effectively captures the nonlinear relationships between various indicators and earthquake casualty numbers, thus meeting practical demands and laying the foundation for subsequent resource demand predictions.
- (4)
- Following an earthquake, the most urgent needs of disaster victims are considered in the demand forecasting for emergency supplies. These supplies can be categorized into consumable and non-consumable types. This study selects drinking water, compressed biscuits, medical supply kits, tents, and clothing from both categories as representative emergency supplies to predict their demand.
6.1. Policy Implications
6.2. Limitation and Future Walker
Author Contributions
Funding
Data Availability Statement
Conflicts of Interest
References
- Biswas, S.; Kumar, D.; Hajiaghaei-Keshteli, M.; Bera, U.K. An AI-based framework for earthquake relief demand forecasting: Acase study in Türkiye. Int. J. Disaster Risk Reduct. 2024, 102, 104287. [Google Scholar] [CrossRef]
- Zarghami, S.A.; Dumrak, J. A system dynamics model for social vulnerability to natural disasters: Disaster risk assessment of an australian city. Int. J. Disaster Risk Reduct. 2021, 60, 102258. [Google Scholar] [CrossRef]
- Balaei, B.; Noy, I.; Wilkinson, S.; Potangaroa, R. Economic factors affecting water supply resilience to disasters. Soc. Econ. Plann Sci. 2020, 76, 100961. [Google Scholar] [CrossRef]
- Altay, N.; Narayanan, A. Forecasting in humanitarian operations: Literature review and research needs. Int. J. Forecast. 2020, 38, 1234–1244. [Google Scholar] [CrossRef]
- Huang, D.; Wang, S.; Liu, Z. A systematic review of prediction methods for emergency management. Int. J. Disaster Risk Reduct. 2021, 62, 102412. [Google Scholar] [CrossRef]
- Abazari, S.R.; Aghsami, A.; Rabbani, M. Prepositioning and distributing relief items in humanitarian logistics with uncertain parameters. Soc. Econ. Plann Sci. 2021, 74, 100933. [Google Scholar] [CrossRef]
- Sheu, J. An emergency logistics distribution approach for quick response to urgent relief demand in disasters. Transp. Res. E Logist. Transp. Rev. 2007, 43, 687–709. [Google Scholar] [CrossRef]
- Sheu, J. Dynamic Relief-Demand Management for Emergency Logistics Operations Under Large-Scale Disasters. Transp. Res. E Logist. Transp. Rev. 2010, 46, 1–17. [Google Scholar] [CrossRef]
- Taskin, S.; Lodree, E.J. A Bayesian decision model with hurricane forecast updates for emergency supplies inventory management. J. Oper. Res. Soc. 2011, 62, 1098–1108. [Google Scholar] [CrossRef]
- Sun, B.Z.; Ma, W.M.; Zhao, H.Y. A fuzzy rough set approach to emergency material demand prediction over two universes. Appl. Math. Model. 2013, 37, 7062–7070. [Google Scholar] [CrossRef]
- Zheng, Y.J.; Yu, S.W.; Song, Q.; Huang, Y.J.; Sheng, W.G.; Chen, S.Y. Co-Evolutionary Fuzzy Deep Transfer Learning for Disaster Relief Demand Forecasting. IEEE Trans. Emerg. Top. Comput. 2022, 10, 1361–1373. [Google Scholar] [CrossRef]
- Basu, S.; Roy, S.; DasBit, S. A Post-Disaster Demand Forecasting System Using Principal Component Regression Analysis and Case-Based Reasoning Over Smartphone-Based DTN. IEEE Trans. Eng. Manag. 2019, 66, 224–239. [Google Scholar] [CrossRef]
- Rawls, C.G.; Turnquist, M.A. Pre-positioning of emergency supplies for disaster response. Transp. Res. Part B Methodol. 2010, 44, 521–534. [Google Scholar] [CrossRef]
- Ma, Z.C.; Zhang, J.; Gao, S.C. Research on emergency material demand based on urgency and satisfaction under public health emergencies. PLoS ONE 2023, 18, e0282796. [Google Scholar] [CrossRef]
- Chen, F.J.; Chen, J.Y.; Liu, J.G. Forecast of flood disaster emergency material demand based on IACO-BP algorithm. Neural Comput. Appl. 2022, 34, 3537–3549. [Google Scholar] [CrossRef]
- Al-Ghamdi, A.; Kamel, S.; Khayyat, M. A hybrid neural network-based approach for forecasting water demand. Comput. Mater. Contin. 2022, 73, 1365–1383. [Google Scholar] [CrossRef]
- Rostami-Tabar, B.; Hasni, M.; Babai, M.Z. On the inventory performance of demand forecasting methods of medical items in humanitarian operations. IFAC-PapersOnLine 2022, 55, 2737–2742. [Google Scholar] [CrossRef]
- Lin, A.Q.; Wu, H.; Liang, G.H.; Cardenas-Tristan, A.; Wu, X.; Zhao, C.; Li, D. A big data-driven dynamic estimation model of relief supplies demand in urban flood disaster. Int. J. Disaster Risk Reduct. 2020, 49, 101682. [Google Scholar] [CrossRef]
- Fei, L.G.; Wang, Y.Q. Demand prediction of emergency materials using case-based reasoning extended by the Dempster-Shafer theory. Soc. Econ. Plann Sci. 2022, 84, 101386. [Google Scholar] [CrossRef]
- Riachy, C.; He, M.; Joneidy, S.; Qin, S.C.; Payne, T.; Boulton, G.; Occhipinti, A.; Angione, C. Enhancing deep learning for demand forecasting to address large data gaps. Expert Syst. Appl. 2024, 268, 126200. [Google Scholar] [CrossRef]
- Dey, B.; Dikshit, P.; Sehgal, S.; Trehan, V.; Sehgal, V.K. Intelligent solutions for earthquake data analysis and prediction for future smart cities. Comput. Ind. Eng. 2022, 170, 108368. [Google Scholar] [CrossRef]
- Wei, H.; Shohet, I.M.; Skibniewski, M.A.; Shapira, S.; Levy, R.; Levi, T.; Salamon, A.; Zohar, M. Assessment of Casualty and Economic Losses from Earthquakes Using Semi-empirical Model. Procedia Eng. 2015, 123, 599–605. [Google Scholar] [CrossRef]
- Horspool, N.; Elwood, K.J.; Johnston, D.; Deely, J.M.; Ardagh, M.W. Factors influencing casualty risk in the 14th November 2016 MW7.8 Kaikōura, New Zealand earthquake. Int. J. Risk Reduct. 2020, 51, 101917. [Google Scholar] [CrossRef]
- Ma, L.; Qin, B.D.; Lu, N. Demand Forecasting Method of Emergency Materials Based on Metabolic Gray Marko. J. Syst. Simul. 2023, 35, 229–240. (In Chinese) [Google Scholar] [CrossRef]
- Chen, X.; Liu, Z. Demand forecast of emergency supplies based on gray model. In Proceedings of the International Conference on Advances in Mechanical Engineering and Industrial, Zhengzhou, China, 11–12 April 2015. [Google Scholar] [CrossRef]
- Wang, F.Y.; Ge, X.F.; Li, Y.; Zheng, W.C. Optimising the distribution of multi-Cycle emergency supplies after a disaster. Sustainability 2023, 15, 902–929. [Google Scholar] [CrossRef]
- Hu, M.Q.; Liu, Q.Y.; Ai, H.Z. Research on Emergency Material Demand Prediction Model Based on Improved Case-Based Reasoning and Neural Network. In Proceedings of the IEEE 3rd International Conference on Civil Aviation Safety and Information Technology (ICCASIT), Changsha, China, 20–22 October 2021; pp. 270–276. [Google Scholar] [CrossRef]
- Wang, C.H.; Liu, L.S.; Ren, J.; Yuan, Y.; Wang, L.B.; Chen, K.N. Application of Support Vector Machine Model Optimized by Principal Component Analysis and Genetic Algorithm in the Prediction of Earthquake Casualties. Earthquake 2020, 40, 142–152. (In Chinese) [Google Scholar] [CrossRef]
- Huang, X.; Zhou, Z.L.; Wang, S.Y. The prediction model of earthquake casuailty based on robust wavelet v-svm. Nat. Hazards 2015, 77, 717–732. [Google Scholar] [CrossRef]
- Snoek, J.; Larochelle, H.; Adams, R.P. Practical Bayesian Optimization of Machine Learning Algorithms. Adv. Neural Inf. Process Syst. 2012, 25, 4. [Google Scholar]
- Tang, H.; Zhong, Q.; Chen, C.; Martek, I. The Adaptive Seismic Resilience of Infrastructure Systems: A Bayesian Networks Analysis. Systems 2023, 11, 84. [Google Scholar] [CrossRef]
- Chen, T.; Xu, Y.R.; Long, H.Y. Demand prediction of emergency supplies for earthquake disaster. J. Shanghai Univ. (Nat. Sci. Ed.) 2022, 28, 946–956. (In Chinese) [Google Scholar] [CrossRef]
NO. | Location | Time | Intensity | Magnitude | Population Density (People/km2) | Seismic Fortification Level | Forecast Level | Hypocenter Depth (km) | Casualties |
---|---|---|---|---|---|---|---|---|---|
1 | He Jian | 2 | VII | 6.3 | 680.0 | 7 | 0 | 30 | 935 |
2 | Yang Jiang | 1 | VIII | 6.4 | 329.1 | 7 | 0 | 5 | 1033 |
3 | Li Yang | 2 | VI | 5.5 | 524.7 | 7 | 1 | 18 | 222 |
4 | Yan Yuan | 1 | VIII | 6.7 | 40.5 | 7 | 2 | 19 | 495 |
5 | He lin Ge Er | 1 | VII | 6.3 | 58.5 | 7 | 0 | 18 | 907 |
6 | Song Pan | 1 | IX | 7.2 | 7.8 | 8 | 2 | 15 | 797 |
7 | Jie Xiu | 2 | VII | 5.2 | 580.6 | 8 | 2 | 9 | 181 |
8 | Wu Yuan | 1 | VII | 6.0 | 87.8 | 7 | 0 | 30 | 108 |
9 | He Ze | 1 | VII | 5.9 | 705.5 | 7 | 2 | 12 | 5184 |
10 | Xun Wu | 2 | VII | 5.5 | 119.1 | 7 | 1 | 13 | 84 |
11 | Da Tong | 1 | VIII | 6.1 | 218.7 | 7 | 1 | 14 | 160 |
12 | Xiao Jin | 1 | VIII | 6.6 | 11.6 | 7 | 1 | 15 | 152 |
13 | Chong Ming | 2 | VI | 5.0 | 506.9 | 8 | 1 | 10 | 73 |
14 | Yao An | 1 | VII | 5.6 | 88.2 | 7 | 2 | 33 | 152 |
15 | Li Jiang | 2 | VII | 5.7 | 60.6 | 8 | 0 | 15 | 142 |
16 | Ning Lang | 1 | VIII | 6.2 | 46.4 | 7 | 1 | 10 | 1980 |
… | … | … | … | … | … | … | … | … | … |
… | … | … | … | … | … | … | … | … | … |
… | … | … | … | … | … | … | … | … | … |
151 | Yong Sheng | 2 | VII | 6.0 | 68.0 | 8 | 1 | 10 | 221 |
152 | Zhao Su | 2 | VIII | 6.1 | 14.0 | 8 | 1 | 18 | 54 |
153 | Ning Er | 1 | VIII | 6.4 | 52.0 | 7 | 2 | 5 | 422 |
154 | Pan Zhi Hua | 2 | VIII | 6.1 | 163.4 | 7 | 1 | 10 | 1051 |
155 | Yao An | 1 | VIII | 6.0 | 88.2 | 7 | 2 | 10 | 373 |
156 | Xiang Ge Li La | 2 | VIII | 5.9 | 16.0 | 7 | 1 | 10 | 41 |
157 | Pi Shan | 2 | VIII | 6.5 | 8.1 | 7 | 1 | 10 | 266 |
158 | Jiu Zhai Gou | 1 | VIII | 7.0 | 12.6 | 8 | 1 | 20 | 550 |
159 | Wei Yuan | 2 | VI | 5.4 | 529.9 | 6 | 1 | 10 | 64 |
160 | Lu Xian | 1 | VIII | 6.0 | 501.2 | 6 | 2 | 10 | 160 |
161 | Lu Shan | 2 | VIII | 6.1 | 99.9 | 7 | 2 | 17 | 47 |
162 | Shi Mian | 2 | VI | 4.2 | 42.6 | 8 | 1 | 15 | 106 |
163 | Ji Shi Shan | 1 | VIII | 6.2 | 262.5 | 7 | 2 | 10 | 1134 |
164 | Yan Jin | 2 | VI | 5.1 | 151.0 | 7 | 1 | 9 | 136 |
165 | Yan Jin | 2 | IV | 5.1 | 151.0 | 7 | 1 | 22 | 69 |
166 | Ying Jiang | 1 | VIII | 5.9 | 59.0 | 7 | 2 | 10 | 173 |
167 | Yong Sheng | 1 | VI | 5.4 | 68.0 | 8 | 1 | 15 | 113 |
168 | Shu Fu | 1 | VII | 6.2 | 103.9 | 8 | 2 | 39 | 139 |
169 | Wu Qia | 1 | VIII | 6.8 | 2.6 | 9 | 1 | 27 | 214 |
170 | Dang Xiong | 2 | V | 6.6 | 3.8 | 9 | 0 | 8 | 103 |
171 | Mei Shan | 2 | VII | 8.0 | 414.7 | 7 | 0 | 14 | 325 |
Component | Normalize Eigenvalues | Contribution Rate/% | Cumulative Contribution Rate/% |
---|---|---|---|
2.3798 | 34.00 | 34.00 | |
1.5739 | 22.48 | 56.48 | |
0.9625 | 13.75 | 70.23 | |
0.8798 | 12.57 | 82.80 | |
0.5584 | 7.98 | 90.78 | |
0.4616 | 6.59 | 97.37 | |
0.1841 | 2.63 | 100.00 |
No. | No. | ||||||||
---|---|---|---|---|---|---|---|---|---|
1 | 0.174 | −0.481 | 3.225 | 0.941 | 153 | −0.263 | −0.464 | −1.603 | −0.213 |
2 | 0.337 | −1.197 | −0.387 | −1.067 | 154 | −0.099 | −0.460 | −0.507 | −0.325 |
3 | 0.159 | −1.253 | 0.413 | 0.246 | 155 | −0.444 | −0.249 | −0.981 | 0.164 |
4 | −0.017 | 0.518 | −0.116 | 0.773 | 156 | −3.493 | 0.235 | −5.786 | 8.287 |
5 | −0.222 | 0.240 | 0.674 | −0.601 | 157 | −0.001 | −0.035 | −0.816 | −0.495 |
6 | 0.741 | 1.316 | −0.831 | 0.475 | 158 | 0.428 | 1.519 | 0.254 | 0.093 |
7 | −1.005 | −0.795 | 0.103 | 0.326 | 159 | −1.284 | −2.428 | 0.653 | −0.094 |
8 | −0.354 | 0.960 | 2.050 | 0.255 | 160 | −0.312 | −2.122 | −0.137 | 0.768 |
9 | −0.312 | −1.806 | 0.611 | 0.921 | 161 | −0.361 | 0.202 | −0.196 | 0.670 |
10 | −0.925 | −0.264 | −0.054 | −0.341 | 162 | −2.037 | 0.740 | 0.216 | −0.621 |
11 | −0.099 | −0.312 | 0.050 | 0.006 | 163 | −0.196 | −0.674 | −0.644 | 0.378 |
12 | 0.078 | 0.299 | −0.268 | −0.136 | 164 | −1.580 | −0.725 | −0.223 | −0.743 |
13 | −1.374 | −0.668 | 0.595 | −0.424 | 165 | −2.364 | −0.028 | 1.575 | −0.111 |
14 | −0.978 | 1.172 | 1.716 | 1.626 | 166 | −0.527 | −0.181 | −1.035 | 0.125 |
15 | −0.546 | 0.871 | 0.364 | −0.989 | 167 | −1.349 | 0.768 | 0.246 | −0.547 |
16 | −0.050 | −0.183 | −0.756 | −0.438 | 168 | −0.527 | 2.446 | 2.377 | 1.944 |
… | … | … | … | … | 169 | 0.404 | 2.868 | 0.991 | 0.418 |
151 | −0.607 | 0.563 | −0.502 | −0.734 | 170 | −1.455 | 1.234 | −0.128 | −1.978 |
152 | −0.117 | 1.324 | 0.063 | −0.087 | 171 | 0.864 | −0.759 | 0.935 | −0.429 |
NO. | Casualties | GA-SVM Running Time = 23.37 s | BO-SVM Running Time = 21.36 s | PCA-GA-SVM Running Time = 21.55 s | PCA-B0-SVM Running Time = 17.42 s | ||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Predicted Value | Accuracy/% | Relative Error/% | Predicted Value | Accuracy/% | Relative Error/% | Predicted Value | Accuracy/% | Relative Error/% | Predicted Value | Accuracy/% | Relative Error/% | ||
164 | 136 | 146 | 93.2 | 7.2 | 133 | 97.8 | 2.4 | 126 | 92.6 | 7.1 | 125 | 91.9 | 7.9 |
165 | 69 | 134 | 51.5 | 93.9 | 126 | 54.8 | 82.5 | 69 | 100 | 0.6 | 61 | 88.4 | 11.7 |
166 | 173 | 178 | 97.2 | 2.8 | 201 | 86.1 | 16.3 | 186 | 93.0 | 7.8 | 190 | 91.1 | 9.9 |
167 | 113 | 82 | 72.6 | 27.8 | 115 | 98.3 | 1.7 | 118 | 95.8 | 4.0 | 113 | 100 | 0.2 |
168 | 139 | 135 | 97.1 | 3.0 | 125 | 89.9 | 10.4 | 152 | 91.4 | 9.5 | 148 | 93.9 | 6.6 |
169 | 214 | 221 | 96.8 | 3.3 | 213 | 99.5 | 0.6 | 205 | 95.8 | 4.2 | 205 | 95.8 | 4.2 |
170 | 103 | 151 | 68.2 | 46.4 | 141 | 73.0 | 37.1 | 109 | 94.5 | 5.9 | 103 | 100 | 0.2 |
171 | 325 | 314 | 96.6 | 3.4 | 319 | 98.2 | 1.8 | 287 | 88.3 | 11.6 | 302 | 92.9 | 7.2 |
Maximum Error/% | 64.76% | 56.91% | 37.75% | 23.48% | |||||||||
Minimal Error/% | 4.18% | 1.30% | 0.38% | 0.19% | |||||||||
Average Error/% | 22.62% | 18.77% | 11.76% | 9.76% | |||||||||
Average Accuracy | 84.15% | 87.20% | 93.925% | 94.25% |
Type of Material | Drinking Water (L) | Compressed Biscuits (kg) | Medical Kits (Sets) | Tents (Sets) | Clothes (Pieces) |
---|---|---|---|---|---|
Demand per capita | 2 | 0.5 | 1 | 0.5 | 3 |
No. | Disaster Site | Actual Casualties | Predict the Number of Casualties |
---|---|---|---|
164 | Yan Jin | 136 | 125 |
165 | Yan Jin | 69 | 61 |
166 | Ying Jiang | 173 | 190 |
167 | Yong Sheng | 113 | 113 |
168 | Shu Fu | 139 | 148 |
169 | Wu Qia | 214 | 205 |
170 | Dang Xiong | 103 | 103 |
171 | Mei Shan | 325 | 302 |
Drinking Water (L) | Compressed Biscuits (kg) | Medical Kits (Sets) | Tents (Sets) | Clothes (Pieces) | |
---|---|---|---|---|---|
Yan Jin | 4050 | 1013 | 2025 | 85 | 507 |
Yan Jin | 1977 | 495 | 989 | 42 | 248 |
Ying Jiang | 6156 | 1539 | 3078 | 129 | 770 |
Yong Sheng | 3662 | 916 | 1831 | 77 | 458 |
Shu Fu | 4796 | 1199 | 2398 | 100 | 600 |
Wu Qia | 6642 | 1661 | 3321 | 139 | 831 |
Dang Xiong | 3338 | 835 | 1669 | 70 | 418 |
Mei Shan | 9785 | 2447 | 4893 | 204 | 1224 |
Disclaimer/Publisher’s Note: The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of MDPI and/or the editor(s). MDPI and/or the editor(s) disclaim responsibility for any injury to people or property resulting from any ideas, methods, instructions or products referred to in the content. |
© 2025 by the authors. Licensee MDPI, Basel, Switzerland. This article is an open access article distributed under the terms and conditions of the Creative Commons Attribution (CC BY) license (https://creativecommons.org/licenses/by/4.0/).
Share and Cite
Wang, F.; Xu, H.; Ye, H.; Li, Y.; Wang, Y. Predicting Earthquake Casualties and Emergency Supplies Needs Based on PCA-BO-SVM. Systems 2025, 13, 24. https://doi.org/10.3390/systems13010024
Wang F, Xu H, Ye H, Li Y, Wang Y. Predicting Earthquake Casualties and Emergency Supplies Needs Based on PCA-BO-SVM. Systems. 2025; 13(1):24. https://doi.org/10.3390/systems13010024
Chicago/Turabian StyleWang, Fuyu, Huiying Xu, Huifen Ye, Yan Li, and Yibo Wang. 2025. "Predicting Earthquake Casualties and Emergency Supplies Needs Based on PCA-BO-SVM" Systems 13, no. 1: 24. https://doi.org/10.3390/systems13010024
APA StyleWang, F., Xu, H., Ye, H., Li, Y., & Wang, Y. (2025). Predicting Earthquake Casualties and Emergency Supplies Needs Based on PCA-BO-SVM. Systems, 13(1), 24. https://doi.org/10.3390/systems13010024