Enhancing Workplace Safety through Personalized Environmental Risk Assessment: An AI-Driven Approach in Industry 5.0
Abstract
:1. Introduction
2. Materials and Methods
- Monitoring devices: They must be clipped to the employees’ clothes to collect measurements and send them encrypted to the server that runs in the cloud.
- Server: Collects and processes data received from the monitoring devices. It hosts a web application to be used by companies to register employees and provide their health information regarding common diseases and symptoms related to the monitored quantities. This information is analyzed to generate alerts for the company, aiming to protect workers’ health through a preventative approach. The entire history of the employee in the company regarding all the positions held is also shown by the referred web application, and a second web application shows graphs with workers’ exposure data.
- Mobile application: It can be used by workers to check their exposure data.
2.1. Monitoring Device
- Dust: The limit is 1,415,000 particles/m3 [32].
- Noise: The limit is 85 dBA [33].
- UV radiation is measured in Standard Erythema Dose (SED). SED is checked every ten minutes, and the total amount per day must not exceed 1.3. So, the sum is registered in a file in the ESP32 [34].
- Flammable gases: The limit is 1000 parts per million (PPM) [35].
2.2. Server Overview
2.3. Recommendation System
2.4. Machine Learning Module
2.4.1. Generation of Training Data
2.4.2. Problem Categorization and Data Variability
2.4.3. Machine Learning Techniques
- SVM: support vector machines (SVMs) are a set of supervised learning methods used for classification, regression, and outliers’ detection. The kernel method seeks to find a hyperplane that best divides the data points according to the target classes. The algorithm maps the training data to a new high-dimensional representation and calculates the maximum distance between the generated hyperplanes and the closest data points for each class. In this work, two variations of the Kernel method were used; SVC (Support Vector Classification) and LinearSVC. The main differences between LinearSVC and SVC lie in the loss function used by default and in the handling of intercept regularization between these two implementations.
- Regression: this is a predictive method that analyzes the relationship between dependent (target) and independent (predictor) variables. Different algorithms are used depending on the type of target variable and/or the relationship between variables (linear or non-linear). Among them, Linear Regression, Logistics, and Bayesian stand out. In this work, the logistic regression algorithm and its variation with the L2 Ridge Classifier regularization function were tested, as well as the SGD Classifier techniques, which implement a plain stochastic gradient descent learning routine that supports different loss functions and penalties for classification. The model it fits can be controlled with the loss parameter. By default, it fits a linear SVM.
- Decision Trees: this is a hierarchical model capable of guiding decision-making about which class a given instance belongs to, resulting in a unique path from the root node to the leaf (target class). The tree model is obtained from the training data using a divide-and-conquer strategy, applied hierarchically. In this category of algorithms, Random Forest and Gradient Boosting Machines currently stand out. In this work, the decision tree-based algorithms Decision Tree Classifier and Extra Tree Classifier were tested.
- Ensemble: these methods combine the predictions of several base estimators built with a given learning algorithm to improve generalizability and robustness over a single estimator. The premise is that each model contributes a different hypothesis space, representation language, and hypothesis evaluation function. The hypothesis space generated by the final model considers optima that are closer to the global ones and reduces the computational cost of training a single model for a complex task. Two widely used ensemble methods are gradient-boosted trees and random forests. More generally, ensemble models can be applied to any base learner beyond trees, in averaging methods such as Bagging methods, model stacking, or Voting, or in boosting, such as AdaBoost. In this work, the models Random Forest Classifier, Ada Boost Classifier, Bagging Classifier, Gradient Boosting Classifier, and XGB Classifier (Extreme Gradient Boosting) were tested.
- Statistical models: predictive algorithms based on statistical methods, divided into (1) generative, whose statistical model used is the joint probability distribution, and (2) discriminative, whose statistical model used is the conditional probability. In this work, tests were carried out using two variations of the Quadratic Discriminant Analysis (QDA) and Linear Discriminant Analysis (LDA) discriminative models. These models differ in terms of the function used to determine the decision surface that divides the data according to classes, with the first function being quadratic and the second being linear, respectively. If the problem data space presents covariance variation, the QDA model tends to present better results due to the use of a quadratic function to divide the space for each class. In this work, a widely known statistical generative classification model called Naive Bayes (Gaussian NB–a simplified implementation that considers normal distribution) was also tested. This method is part of a family of simple “probabilistic classifiers” based on applying Bayes’ theorem with strong independence assumptions between the features.
- Clustering: there are many ways to define classification models, including whether the model has a fixed number of parameters or whether the number of parameters increases with the amount of training data. In the first case, the models are called parametric, and in the second case, non-parametric. Parametric models have the advantage of often being faster to use but have the disadvantage of making stronger assumptions about the nature of data distributions. Non-parametric models are more flexible but often computationally intractable for large datasets. In this work, a simple and well-known parametric model, K Nearest Neighbour (KNN), was tested. This model simply searches for K points in the training set that are closest to the input point, counts how many members of each class are in this set, and returns this empirical fraction as an estimate of the sample’s probability of belonging to the class.
2.4.4. Evaluation Metrics for Machine Learning Models
- Precision: gives the proportion of correct positive predictions. It considers false positives, which are cases that were incorrectly flagged for inclusion.
- Recall: measures the proportion of actual positives that were predicted correctly. It considers false negatives, which are cases that should have been flagged for inclusion but were not.
- F1-score: combines precision and recall in a single number.
- ROC curve: the Receiver Operating Characteristic curve is a two-dimensional curve with the True Positive Rate on the vertical axis and False Positive Rate on the horizontal axis.
- AUC: the area under the ROC curve (AUC) is a global measure of the ability of a model to distinguish between classes, for example, to differentiate whether a given condition is present or not. An AUC of 0.5 represents a model without this ability, while an AUC of 1.0 represents a model with perfect discrimination ability.
2.4.5. Training Methods
- (1)
- Training pipeline generation, where all desired models are loaded.
- (2)
- Each model is trained and validated using the respective sets.
- (3)
- Use of the k-fold = 10 cross-validation technique adapted for the problem considering time series, in which the data is divided into batches of series instead of batches of values.
- (4)
- Collecting metrics during the training phase.
- (5)
- For each generated model, testing and collecting metrics on the test dataset.
- (6)
- For each algorithm, 10 models were generated, one for each test round.
- (7)
- The results were tabulated in terms of average performance, considering the performance of each of the 10 models for each technique when classifying the same set of tests.
- (8)
- For the models that present the best average according to the F1-measure criterion (a metric that represents the balance between recall and precision), the model with the best performance was selected among the 10. The recall metric was chosen as a tiebreaker criterion, as it is considered that the nature of this problem is that it is better to issue a false risk alert than to fail to alert a possible risk.
3. Results
4. Discussion
- There are more accurate and higher-cost sensor options on the market that can be considered for building more robust monitoring devices. This approach was not used in the present work because the choice of more expensive components would make the project unfeasible, considering that it was necessary to produce devices to be tested with a group of workers. However, to scale the system for everyday use in an enterprise, the sensors would need to be reevaluated, and the devices may need to use more precise sensors.
- The system can be easily extended to cover other agents, diseases, and symptoms by adding new sensors to the monitoring devices, adapting the embedded application, inserting such new data, and training the models related to the respective sensors.
- The monitoring devices for everyday use in an enterprise shall undergo tests to ensure compatibility with applicable standards. For commercial use, it would also be necessary to purchase paid versions of some of the same software used to build the prototype.
- The dimensions of the monitoring device are 9.5 × 7.0 × 4.0 cm, and its weight is 250 g. It is expected that the use of the device will not significantly interfere with the workers’ routine and comfort.
- Tests in a real work environment will be conducted in the next stage of this work. During the tests, workers must use the device attached to their clothing throughout the work shift. The usability of the mobile application, monitoring device design, possible discomfort arising from its use, and data privacy concerns will be evaluated. By carrying out these tests, it is expected that other adjustment points will be verified.As mentioned in Section 2.1, communication between monitoring devices and the server is encrypted, and the server does not store names and documents. In a company, it is expected that workers’ data will be stored and managed separately, following company policy and complying with local data protection laws.
5. Conclusions
Author Contributions
Funding
Institutional Review Board Statement
Informed Consent Statement
Data Availability Statement
Conflicts of Interest
Appendix A
Model | UV | Humidity Temperature | ||||||
---|---|---|---|---|---|---|---|---|
P | R | F1 | AUC | P | R | F1 | AUC | |
XGBRegressor | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 0.99 | 0.99 | 0.99 |
LogisticRegression | 1.00 | 1.00 | 1.00 | 1.00 | 0.67 | 0.77 | 0.72 | 0.70 |
RidgeClassifier | 1.00 | 1.00 | 1.00 | 1.00 | 0.67 | 0.77 | 0.72 | 0.70 |
AdaBoostClassifier | 1.00 | 1.00 | 1.00 | 1.00 | 0.97 | 0.95 | 0.96 | 0.96 |
GradientBoostingClassifier | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 0.97 | 0.99 | 0.99 |
SGDClassifier | 1.00 | 1.00 | 1.00 | 1.00 | 0.49 | 0.44 | 0.38 | 0.55 |
BaggingClassifier | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 0.99 | 0.99 | 0.99 |
DecisionTreeClassifier | 1.00 | 1.00 | 1.00 | 1.00 | 0.99 | 0.98 | 0.99 | 0.99 |
ExtraTreeClassifier | 1.00 | 1.00 | 1.00 | 1.00 | 0.97 | 0.96 | 0.96 | 0.99 |
RandomForestClassifier | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 0.99 | 1.00 | 1.00 |
GaussianNB | 1.00 | 1.00 | 1.00 | 1.00 | 0.87 | 0.72 | 0.79 | 0.81 |
LinearDiscriminantAnalysis | 1.00 | 1.00 | 1.00 | 1.00 | 0.67 | 0.77 | 0.72 | 0.70 |
QuadraticDiscriminantAnalysis | 1.00 | 1.00 | 1.00 | 1.00 | 0.88 | 0.96 | 0.92 | 0.92 |
LinearSVC | 1.00 | 1.00 | 1.00 | 1.00 | 0.30 | 0.60 | 0.40 | 0.50 |
SVC | 1.00 | 1.00 | 1.00 | 1.00 | 0.99 | 0.75 | 0.85 | 0.87 |
KNeighborsClassifier | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 0.93 | 0.96 | 0.96 |
Model | Noise | Dust | Light | |||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
P | R | F1 | AUC | P | R | F1 | AUC | P | R | F1 | AUC | |
XGBRegressor | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 |
LogisticRegression | 1.00 | 1.00 | 1.00 | 1.00 | 0.50 | 1.00 | 0.67 | 0.50 | 0.51 | 0.50 | 0.50 | 0.51 |
RidgeClassifier | 0.99 | 1.00 | 0.99 | 0.99 | 1.00 | 0.99 | 0.99 | 0.99 | 0.51 | 0.50 | 0.50 | 0.51 |
AdaBoostClassifier | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 0.78 | 1.00 | 0.87 | 0.86 |
GradientBoostingClassifier | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 |
SGDClassifier | 1.00 | 1.00 | 1.00 | 1.00 | 0.50 | 1.00 | 0.67 | 0.50 | 0.37 | 0.65 | 0.46 | 0.49 |
BaggingClassifier | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 |
DecisionTreeClassifier | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 |
ExtraTreeClassifier | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 |
RandomForestClassifier | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 |
GaussianNB | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 0.79 | 0.80 | 0.79 | 0.79 |
LinearDiscriminantAnalysis | 0.99 | 1.00 | 0.99 | 0.99 | 1.00 | 0.99 | 0.99 | 0.99 | 0.51 | 0.50 | 0.50 | 0.51 |
QuadraticDiscriminantAnalysis | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 0.81 | 0.77 | 0.78 | 0.79 |
LinearSVC | 0.99 | 1.00 | 1.00 | 1.00 | 0.33 | 0.32 | 0.28 | 0.50 | 0.51 | 0.50 | 0.50 | 0.51 |
SVC | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 |
KNeighborsClassifier | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 | 1.00 |
References
- WHO. Available online: https://www.who.int/news/item/17-09-2021-who-ilo-almost-2-million-people-die-from-work-related-causes-each-year (accessed on 28 October 2023).
- Ncube, F.; Kanda, A. Current Status and the Future of Occupational Safety and Health Legislation in Low- and Middle-Income Countries. Saf. Health Work 2018, 9, 365–371. [Google Scholar] [CrossRef] [PubMed]
- Melchior, C.; Zanini, R. Mortality per work accident: A literature mapping. Saf. Sci. 2019, 114, 72–78. [Google Scholar] [CrossRef]
- Jilcha, K.; Kitaw, D. Industrial occupational safety and health innovation for sustainable development. Eng. Sci. Technol. Int. J. 2017, 20, 372–380. [Google Scholar] [CrossRef]
- Teufer, B.; Ebenberger, A.; Affengruber, L.; Kien, C.; Klerings, I.; Szelag, M.; Griebler, U. Evidence-based occupational health and safety interventions: A comprehensive overview of reviews. BMJ Open 2019, 9, e032528. [Google Scholar] [CrossRef] [PubMed]
- Javaid, M.; Haleem, A.; Singh, R.; Rab, S.; Suman, R. Upgrading the manufacturing sector via applications of Industrial Internet of Things (IIoT). Sens. Int. 2021, 2, 100129. [Google Scholar] [CrossRef]
- Yu, F.; Schweisfurth, T. Industry 4.0 technology implementation in SMEs—A survey in the Danish-German border region. Int. J. Innov. Stud. 2020, 4, 76–84. [Google Scholar] [CrossRef]
- Huang, S.; Wang, B.; Li, X.; Zheng, P.; Mourtzis, D.; Wang, L. Industry 5.0 and Society 5.0—Comparison, complementation and co-evolution. J. Manuf. Syst. 2022, 64, 424–428. [Google Scholar] [CrossRef]
- Khan, W.; Rehman, M.; Zangoti, H.; Afzal, M.; Armi, N.; Salah, K. Industrial internet of things: Recent advances, enabling technologies and open challenges. Comput. Electr. Eng. 2020, 81, 106522. [Google Scholar] [CrossRef]
- Lemos, J.; Gaspar, P.D.; Lima, T.M. Environmental Risk Assessment and Management in Industry 4.0: A Review of Technologies and Trends. Machines 2022, 10, 702. [Google Scholar] [CrossRef]
- Jiang, Z.; Bakker, O.; Bartolo, P. Critical Review of Industry 4.0 Technologies’ Applications on Occupational Safety and Health. In Proceedings of the 2022 8th International Conference on Control, Decision and Information Technologies (CoDIT), Istanbul, Turkey, 17–20 May 2022; pp. 1267–1272. [Google Scholar] [CrossRef]
- Babalola, A.; Manu, P.; Cheung, C.; Yunusa-Kaltungo, A.; Bartolo, P. A systematic review of the application of immersive technologies for safety and health management in the construction sector. J. Saf. Res. 2023, 85, 66–85. [Google Scholar] [CrossRef]
- Sánchez, M.; Sergio Rodriguez, C.; Manuel, J. Smart Protective Protection Equipment for an accessible work environment and occupational hazard prevention. In Proceedings of the 2020 10th International Conference on Cloud Computing, Data Science & Engineering (Confluence), Noida, India, 29–31 January 2020; pp. 581–585. [Google Scholar] [CrossRef]
- Yang, K.; Ahn, C.; Kim, H. Deep learning-based classification of work-related physical load levels in construction. Adv. Eng. Inform. 2020, 45, 101104. [Google Scholar] [CrossRef]
- Kim, J.; Jo, B.; Jo, J.; Kim, D. Development of an IoT-Based Construction Worker Physiological Data Monitoring Platform at High Temperatures. Sensors 2020, 20, 5682. [Google Scholar] [CrossRef] [PubMed]
- Campero-Jurado, I.; Márquez-Sánchez, S.; Quintanar-Gómez, J.; Rodríguez, S.; Corchado, J. Smart Helmet 5.0 for Industrial Internet of Things Using Artificial Intelligence. Sensors 2020, 20, 6241. [Google Scholar] [CrossRef] [PubMed]
- Costa, J.; Souto, E. A IoT Device for Monitoring Particulate Matter and Gaseous Pollutants in Indoor Industrial Workstations. In Proceedings of the 2022 IEEE International Conference on Consumer Electronics—Taiwan, Taipei, Taiwan, 6–8 July 2022; pp. 517–518. [Google Scholar] [CrossRef]
- Singh, N.; Gunjan, V.; Chaudhary, G.; Kaluri, R.; Victor, N.; Lakshmanna, K. IoT enabled HELMET to safeguard the health of mine workers. Comput. Commun. 2022, 193, 1–9. [Google Scholar] [CrossRef]
- Rajakumar, J.; Choi, J.-H. Helmet-Mounted Real-Time Toxic Gas Monitoring and Prevention System for Workers in Confined Places. Sensors 2023, 23, 1590. [Google Scholar] [CrossRef] [PubMed]
- Lemos, J.; Gaspar, P.D.; Lima, T.M. Individual Environmental Risk Assessment and Management in Industry 4.0: An IoT-Based Model. Appl. Syst. Innov. 2022, 5, 88. [Google Scholar] [CrossRef]
- Lemos, J.; de Souza, V.B.; Falcetta, F.S.; de Almeida, F.K.; Lima, T.M.; Gaspar, P.D. A System for Individual Environmental Risk Assessment and Management with IoT Based on the Worker’s Health History. Appl. Sci. 2024, 14, 1021. [Google Scholar] [CrossRef]
- Hew, C.; Tan, R.; Lee, C.; Hartanty, T.; Hossain, W.; Lee, Y. Development of Self Sustainable IOT Based Low Cost UV Index Monitoring Station. In Proceedings of the 2022 IEEE 8th International Conference on Smart Instrumentation, Measurement and Applications (ICSIMA), Melaka, Malaysia, 26–28 September 2022; pp. 36–41. [Google Scholar] [CrossRef]
- Failing, J.M.; Abellán-Nebot, J.V.; Benavent Nácher, S.; Rosado Castellano, P.; Romero Subirón, F. A Tool Condition Monitoring System Based on Low-Cost Sensors and an IoT Platform for Rapid Deployment. Processes 2023, 11, 668. [Google Scholar] [CrossRef]
- Marinho, F.; Carvalho, C.; Apolinário, F.; Paulucci, L. Measuring light with light-dependent resistors: An easy approach for optics experiments. Eur. J. Phys. 2019, 40, 035801. [Google Scholar] [CrossRef]
- Jiang, B.; Huacón, C. Cloud-based smart device for environment monitoring. In Proceedings of the 2017 IEEE Conference on Technologies for Sustainability (SusTech), Phoenix, AZ, USA, 12–14 November 2017; pp. 1–6. [Google Scholar] [CrossRef]
- Trisnawan, I.; Jati, A.; Istiqomah, N.; Wasisto, I. Detection of Gas Leaks Using The MQ-2 Gas Sensor on the Autonomous Mobile Sensor. In Proceedings of the 2019 International Conference on Computer, Control, Informatics and its Applications (IC3INA), Tangerang, Indonesia, 23–24 October 2019; pp. 177–180. [Google Scholar] [CrossRef]
- Canu, M.; Galvis, B.; Morales, R.; Ramírez, O.; Madelin, M. Understanding the Shinyei PPD24NS low-cost dust sensor. In Proceedings of the 2018 IEEE International Conference on Environmental Engineering, Milan, Italy, 12–14 March 2018; pp. 1–10. [Google Scholar] [CrossRef]
- Zolkapli, M.; Al-Junid, S.; Othman, Z.; Manut, A.; Mohd Zulkifli, M. High-efficiency dual-axis solar tracking developement using Arduino. In Proceedings of the 2013 International Conference on Technology, Informatics, Management, Engineering and Environment, Bandung, Indonesia, 23–26 June 2013; pp. 43–47. [Google Scholar] [CrossRef]
- ESP32 I/O. ESP 32—Light Sensor. 2018. Available online: https://esp32io.com/tutorials/esp32-light-sensor (accessed on 22 June 2023).
- Hinze, J.; Teizer, J. Visibility-related fatalities related to construction equipment. Saf. Sci. 2011, 49, 709–718. [Google Scholar] [CrossRef]
- ISO 8996:2021; Ergonomics of the Thermal Environment—Determination of Metabolic Rate. International Organization for Standardization: Geneva, Switzerland, 2021.
- OSHA. Particulates not Otherwise Regulated, Total and Respirable Dust. 2023. Available online: https://www.osha.gov/chemicaldata/801 (accessed on 8 August 2023).
- Ministério do Trabalho e da Solidariedade Social. Diário da República n.º 172/2006, Série I de 2006-09-06. Available online: https://data.dre.pt/eli/dec-lei/182/2006/09/06/p/dre/pt/html (accessed on 6 August 2023).
- WHO. Global Solar UV Index: A practical Guide. A Joint Recommendation of the World Health Organization, World Meteorological Organization, United Nations Environment Programme, and the International Commission on Non-Ionizing Radiation. 2002. Available online: https://apps.who.int/iris/handle/10665/42459 (accessed on 8 August 2023).
- NIOSH. Table of IDLH Values—L.P.G. Available online: https://www.cdc.gov/niosh/idlh/68476857.html (accessed on 12 September 2023).
- MQTT Version 5.0. MQTT. Available online: https://docs.oasis-open.org/mqtt/mqtt/v5.0/mqtt-v5.0.html (accessed on 7 September 2023).
- Zamfir, S.; Balan, T.; Iliescu, I.; Sandu, F. A security analysis on standard IoT protocols. In Proceedings of the 2016 International Conference on Applied and Theoretical Electricity (ICATE), Craiova, Romania, 6–8 October 2016; pp. 1–6. [Google Scholar] [CrossRef]
- Ubuntu Server. Available online: https://ubuntu.com/download/server (accessed on 10 September 2023).
- Eclipse. Eclipse Mosquitto. An Open Source MQTT Broker. Available online: https://mosquitto.org (accessed on 12 September 2023).
- Telegraf. Influxdata. Available online: https://www.influxdata.com/time-series-platform/telegraf (accessed on 14 September 2023).
- InfluxDB. Available online: https://www.influxdata.com/products/influxdb (accessed on 14 September 2023).
- Grafana OSS. Available online: https://grafana.com/oss/grafana (accessed on 15 September 2023).
- MongoDB. Available online: https://www.mongodb.com (accessed on 15 September 2023).
- Burström, L.; Järvholm, B.; Nilsson, T.; Wahlström, J. Back and neck pain due to working in a cold environment: A cross-sectional study of male construction workers. Int. Arch. Occup. Environ. Health 2013, 86, 809–813. [Google Scholar] [CrossRef] [PubMed]
- Kim, J.L.; Henneberger, P.K.; Lohman, S.; Olin, L.-C.; Dahlman-Höglund, A.; Andersson, E.; Torén, K.; Holm, M. Impact of occupational exposures on exacerbation of asthma: A population-based asthma cohort study. BMC Pulm. Med. 2016, 16, 148. [Google Scholar] [CrossRef]
- Pettersson, H.; Olsson, D.; Järvholm, B. Occupational exposure to noise and cold environment and the risk of death due to myocardial infarction and stroke. Int. Arch. Occup. Env. Health 2020, 93, 571–575. [Google Scholar] [CrossRef] [PubMed]
- Karthick, S.; Kermanshachi, S.; Loganathan, K. Effect of Cold Temperatures on Health and Safety of Construction Workers. In Proceedings of the Transportation Consortium of South-Central States (Tran-SET) Conference, Austin, TX, USA, 31 August 31–2 September 2022. [Google Scholar] [CrossRef]
- Poinen-Rughooputh, S.; Rughooputh, M.S.; Guo, Y.; Rong, Y.; Chen, W. Occupational exposure to silica dust and risk of lung cancer: An updated meta-analysis of epidemiological studies. BMC Public Health 2016, 16, 1137. [Google Scholar] [CrossRef]
- Kratzke, P.; Kratzke, R.A. Asbestos-Related Disease. J. Radiol. Nurs. 2018, 37, 21–26. [Google Scholar] [CrossRef]
- Varghese, B.; Hansen, A.; Bi, P.; Pisaniello, D. Are workers at risk of occupational injuries due to heat exposure? A comprehensive literature review. Saf. Sci. 2018, 110, 380–392. [Google Scholar] [CrossRef]
- Moon, J. The effect of the heatwave on the morbidity and mortality of diabetes patients; a meta-analysis for the era of the climate crisis. Environ. Res. 2021, 195, 110762. [Google Scholar] [CrossRef] [PubMed]
- Tyrovolas, S.; Chalkias, C.; Morena, M.; Kalogeropoulos, K.; Tsakountakis, N.; Zeimbekis, A.; Gotsis, E.; Metallinos, G.; Bountziouka, V.; Lionis, C.; et al. High relative environmental humidity is associated with diabetes among elders living in Mediterranean islands. J. Diabetes Metab. Disord. 2014, 13, 25. [Google Scholar] [CrossRef]
- Zhang, H.; Liu, S.; Chen, Z.; Zu, B.; Zhao, Y. Effects of variations in meteorological factors on daily hospital visits for asthma: A time-series study. Environ. Res. 2020, 182, 109115. [Google Scholar] [CrossRef]
- Wang, W. Progress in the impact of polluted meteorological conditions on the incidence of asthma. J. Thorac. Dis. 2016, 8, E57–E61. [Google Scholar] [CrossRef]
- Arcenal, K.; Carmen, M.; Garcia, R. Effects of Low Humidity and High Humidity on the Nasal Area of the People. In Proceedings of the 2023 IEEE IAS Global Conference on Emerging Technologies (GlobConET), London, UK, 19–21 May 2023; pp. 1–6. [Google Scholar] [CrossRef]
- Hong, O.; Kerr, M.; Poling, G.; Dhar, S. Understanding and preventing noise-induced hearing loss. Dis.-A-Mon. 2013, 54, 110–118. [Google Scholar] [CrossRef] [PubMed]
- Lie, A.; Skogstad, M.; Johannessen, H.A.; Tynes, T.; Mehlum, I.S.; Nordby, K.-C.; Engdahl, B.; Tambs, K. Occupational noise exposure and hearing: A systematic review. Int. Arch. Occup. Env. Health 2016, 89, 351–372. [Google Scholar] [CrossRef] [PubMed]
- Yam, J.; Kwok, A. Ultraviolet light and ocular diseases. Int. Ophthalmol. 2014, 34, 383–400. [Google Scholar] [CrossRef] [PubMed]
- Modenese, A.; Korpinen, L.; Gobba, F. Solar Radiation Exposure and Outdoor Work: An Underestimated Occupational Risk. Int. J. Environ. Res. Public Health 2018, 15, 2063. [Google Scholar] [CrossRef] [PubMed]
- Bernard, J.; Gallo, R.; Krutmann, J. Photoimmunology: How ultraviolet radiation affects the immune system. Nat. Rev. Immunol. 2019, 19, 688–701. [Google Scholar] [CrossRef] [PubMed]
- European Parliament. Directive 2003/10/EC of the European Parliament and of the Council of 6 February 2003 on the Minimum Health and Safety Requirements Regarding the Exposure of Workers to the Risks Arising from Physical Agents (Noise). Available online: https://eur-lex.europa.eu/eli/dir/2003/10/2019-07-26 (accessed on 1 November 2023).
- Brazil. Norma Regulamentadora No. 15 (NR-15). Available online: https://www.gov.br/trabalho-e-emprego/pt-br/acesso-a-informacao/participacao-social/conselhos-e-orgaos-colegiados/comissao-tripartite-partitaria-permanente/arquivos/normas-regulamentadoras/nr-15-atualizada-2022.pdf (accessed on 4 November 2023).
- Lee, S.C.; Kim, J.; Hong, J. Characterizing perceived aspects of adverse impact of noise on construction managers on construction sites. Build. Environ. 2019, 152, 17–27. [Google Scholar] [CrossRef]
- INMET. Sistema Tempo. Available online: https://tempo.inmet.gov.br/TabelaEstacoes/A00 (accessed on 28 May 2023).
- Postgresql. Available online: https://www.postgresql.org (accessed on 10 October 2023).
- Scikit-learn. Cross-Validation: Evaluating Estimator Performance. Available online: https://scikit-learn.org/stable/modules/cross_validation.html (accessed on 20 November 2023).
- Murphy, K.P. Machine Learning: A Probabilistic Perspective; The MIT Press: Cambridge, MA, USA, 2012. [Google Scholar]
- Souza, V.; Nobre, J.; Becker, K. DAC Stacking: A Deep Learning Ensemble to Classify Anxiety, Depression, and Their Comorbidity from Reddit Texts. IEEE J. Biomed. Health Inform. 2022, 26, 3303–3311. [Google Scholar] [CrossRef] [PubMed]
- Zheng, A. Available online: https://www.oreilly.com/content/evaluating-machine-learning-models (accessed on 15 February 2024).
- Measures of Variability. Available online: https://medium.com/@madhuri15/day-03-measures-of-variability-7-days-of-statistics-for-data-science-6bb7168b9300 (accessed on 26 February 2024).
- Patel, V.; Chesmore, A.; Legner, C.M.; Pandey, S. Trends in Workplace Wearable Technologies and Connected-Worker Solutions for Next-Generation Occupational Safety, Health, and Productivity. Adv. Intell. Syst. 2022, 4, 2100099. [Google Scholar] [CrossRef]
- Varandas, L.; Faria, J.; Gaspar, P.D.; Aguiar, M.L. Low-Cost IoT Remote Sensor Mesh for Large-Scale Orchard Monitorization. J. Sens. Actuator Netw. 2020, 9, 44. [Google Scholar] [CrossRef]
- Gaspar, P.D.; Fernandez, C.M.; Soares, V.N.G.J.; Caldeira, J.M.L.P.; Silva, H. Development of Technological Capabilities through the Internet of Things (IoT): Survey of Opportunities and Barriers for IoT Implementation in Portugal’s Agro-Industry. Appl. Sci. 2021, 11, 3454. [Google Scholar] [CrossRef]
- Gaspar, P.D.; Soares, V.N.G.J.; Caldeira, J.M.L.P.; Andrade, L.P.; Soares, C.D. Technological modernization and innovation of traditional agri-food companies based on ICT solutions—The Portuguese case study. J. Food Process Preserv. 2022, 46, e14271. [Google Scholar] [CrossRef]
Sensor | Specifications |
---|---|
DHT 11 (humidity and temperature) | Voltage: 3–5 VDC Humidity range: 20 to 90% relative humidity Temperature range: 0° to 50 °C Dimensions: 23 × 12 × 5 mm3 |
GUVA-S12SD (UV) | Voltage: 2.5–5 V UV wave size: 240–370 nm Dimensions: 11 × 27 mm |
KY-038 (noise) | Voltage: 4–6 VDC Frequency: 50 Hz to 20 kHz Dimensions: 37 × 15 × 13.7 mm3 |
LDR (illuminance) | Voltage: up to 150 VDC Spectrum: 540 nm Dimensions: diameter: 5 mm, length: 32 mm |
MQ-2 (gas) | Voltage: 5 V Concentration detected: 300–10,000 ppm Dimensions: 32 × 20 × 15 mm3 |
Shinyei PPD42NS (dust) | Voltage: 4.75~5.75 VDC Detecting the particle diameter > 1 μm Detectable concentration: 0–28,000 particles/m3 Dimensions: 45 × 59 × 22 mm3 |
Agents | Pre-Diagnosed Diseases | Symptoms |
---|---|---|
Cold [44,45,46,47] | Asthma Hypertension Rheumatic diseases Spinal disorders Respiratory diseases Previous allergic diseases and reactions | Chest pain Cough Dyspnea (shortness of breath) Headache Hemoptysis (blood cough) Skin lesions Skin rash Weight loss Neck, low back pain, joint pain |
Dust [45,48,49] | Asthma Lung cancer Respiratory diseases Previous tuberculosis infection Smoker | Chest pain Cough Dyspnea (shortness of breath) Fever Hemoptysis (blood cough) Weight loss |
Heat [50,51] | Diabetes Heart disease Hypertension Hypotension Kidney disease | Chest pain Dyspnea (shortness of breath) Fainting (syncope) Headache Increased thirst Increased urinary volume Weight loss |
High humidity [45,52,53] | Asthma Diabetes Respiratory diseases Previous allergic diseases and reactions | Chest pain Cough Dyspnea (shortness of breath) Hemoptysis (blood cough) Increased thirst Increased urinary volume Weight loss |
Low humidity [53,54,55] | Asthma Respiratory diseases Previous allergic diseases and reactions | Chest pain Cough Dyspnea (shortness of breath) Hemoptysis (blood cough) Skin lesions Skin rash |
Noise [46,56,57] | Diabetes type 2 Hearing disorders Hypertension Smoker | Difficulty understanding conversation in situations with background noise Feeling that the ears are plugged up Speech or other sounds muffled after exposure to loud noise Transient tinnitus |
UV radiation [58,59,60] | Eye disease Heart disease Skin cancer Skin diseases | Chest pain Dyspnea (shortness of breath) History of resection of skin lesions Skin lesions Skin rash |
Agents with Risky Exposures | Related Occupational Diseases and Accidents |
---|---|
Cold [44,45,46,47] | Worsening of respiratory diseases Increase in musculoskeletal disorders |
Dust [45,48,49] | Pulmonary fibrosis (asbestosis) Lung cancer (due to inhalation of asbestos dust) |
Heat [50,51] | Dehydration (favours the occurrence of kidney problems) Heart attack Stroke Dryness of the nasal mucosa (favours the emergence of respiratory infections) |
High humidity [45,52,53] | Worsening of respiratory diseases |
Low humidity [53,54,55] | Worsening of respiratory diseases |
Noise [46,56,57] | Hearing loss Hypertension |
UV radiation [58,59,60] | Dehydration Skin lesions Heat stroke Burns Skin cancer Photosensitization Erythema Acute inflammatory eye reactions Increased risk of cataracts Suppression of the immune system (favours the occurrence of infections and cancer) |
Illuminance [28] | Abrupt variations in illuminance can cause “temporary blindness” and it can lead to accidents |
Sensor | Rule | Class |
---|---|---|
Dust | Value > 999,999 particles/m3 | Risk |
Humidity | Value < 50% or value > 70% | Risk |
Temperature | Value < 10 °C or value > 30 °C | Risk |
Illuminance | Difference between two readings > 2 | Risk |
Noise | Value > 84 dB | Risk |
UV radiation | Value > 0.5 SED | Risk |
Dataset | Readings | Series | Risk | Normal | |
---|---|---|---|---|---|
Sensor 1 | Train | 12,960 | 2160 | 1080 | 1080 |
Validation | 12,960 | 2160 | 1080 | 1080 | |
Test | 12,960 | 2160 | 1080 | 1080 | |
Total | All | 38,880 | 6480 | 3240 | 3240 |
Sensor | Dataset | F1 | AUC | Notes |
---|---|---|---|---|
UV radiation | Train | 1 | 1 | All models presented a perfect performance in both the training and testing sets. |
Test | 1 | 1 | ||
Noise | Train | 0.99 and 1 | 0.99 and 1 | The models PassiveAggressive, RidgeClassifier, LogisticRegression, SGDClassifier, KNeighbors, LinearSVC, SVC, and LinearDiscriminantAnalysis presented 99%, while the others presented 100%. |
Test | 0.99 and 1 | 0.99 and 1 | The models ExtraTreeClassifier, Kneighbors, LinearDiscriminantAnalysis, LinearSVC, PassiveAggressive, RidgeClassifier, and SGDClassifier presented 99%, while the other models presented 100%. | |
Illuminance | Train | 0 to 1 | 0 to 1 | Large variation in performance, from 0 to 100%. The best models were: XGBRegressor, Kneighbors, DecisionTree, ExtraTree, SVC, BaggingClassifier, RandomForest, and GradientBoosting. |
Test | 0 to 1 | 0 to 1 | ||
Humidity and temperature | Train | 0 to 1 | 0 to 1 | Only RandomForest achieved 100%. XGBRegressor, DecisionTree, BaggingClassifier, and GradientBoosting presented with 99%. |
Test | <1 | <1 | XGBRegressor, BaggingClassifier, and RandomForest had 99%. | |
Dust | Train | 0 to 1 | 0 to 1 | 100% for XGBRegressor, RidgeClassifer, Kneighbors, DecisionTree, ExtraTree, SVC, GaussianNB, AdaBoost, BaggingClassifier, RandomForest, GradientBoosting, and QuadraticDiscriminant. |
Test | 0 to 1 | 0 to 1 |
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. |
© 2024 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
Lemos, J.; de Souza, V.B.; Falcetta, F.S.; de Almeida, F.K.; Lima, T.M.; Gaspar, P.D. Enhancing Workplace Safety through Personalized Environmental Risk Assessment: An AI-Driven Approach in Industry 5.0. Computers 2024, 13, 120. https://doi.org/10.3390/computers13050120
Lemos J, de Souza VB, Falcetta FS, de Almeida FK, Lima TM, Gaspar PD. Enhancing Workplace Safety through Personalized Environmental Risk Assessment: An AI-Driven Approach in Industry 5.0. Computers. 2024; 13(5):120. https://doi.org/10.3390/computers13050120
Chicago/Turabian StyleLemos, Janaína, Vanessa Borba de Souza, Frederico Soares Falcetta, Fernando Kude de Almeida, Tânia M. Lima, and Pedro Dinis Gaspar. 2024. "Enhancing Workplace Safety through Personalized Environmental Risk Assessment: An AI-Driven Approach in Industry 5.0" Computers 13, no. 5: 120. https://doi.org/10.3390/computers13050120
APA StyleLemos, J., de Souza, V. B., Falcetta, F. S., de Almeida, F. K., Lima, T. M., & Gaspar, P. D. (2024). Enhancing Workplace Safety through Personalized Environmental Risk Assessment: An AI-Driven Approach in Industry 5.0. Computers, 13(5), 120. https://doi.org/10.3390/computers13050120