You are currently viewing a new version of our website. To view the old version click .
Sensors
  • Article
  • Open Access

10 January 2022

Robust Assembly Assistance Using Informed Tree Search with Markov Chains

,
and
1
Computer Science and Electrical Engineering Department, Lucian Blaga University of Sibiu, 550025 Sibiu, Romania
2
School of Electronics and Computer Science, University of Southampton, Southampton SO17 1BJ, UK
3
Industrial Engineering and Management Department, Lucian Blaga University of Sibiu, 550025 Sibiu, Romania
*
Author to whom correspondence should be addressed.
This article belongs to the Collection Human-Computer Interaction in Pervasive Computing Environments

Abstract

Manual work accounts for one of the largest workgroups in the European manufacturing sector, and improving the training capacity, quality, and speed brings significant competitive benefits to companies. In this context, this paper presents an informed tree search on top of a Markov chain that suggests possible next assembly steps as a key component of an innovative assembly training station for manual operations. The goal of the next step suggestions is to provide support to inexperienced workers or to assist experienced workers by providing choices for the next assembly step in an automated manner without the involvement of a human trainer on site. Data stemming from 179 experiment participants, 111 factory workers, and 68 students, were used to evaluate different prediction methods. From our analysis, Markov chains fail in new scenarios and, therefore, by using an informed tree search to predict the possible next assembly step in such situations, the prediction capability of the hybrid algorithm increases significantly while providing robust solutions to unseen scenarios. The proposed method proved to be the most efficient for next assembly step prediction among all the evaluated predictors and, thus, the most suitable method for an adaptive assembly support system such as for manual operations in industry.

1. Introduction

To compete successfully in the global market, in recent years, factories have turned their attention to optimize all tasks, including the ones performed by humans, leveraging the progress in information technology with the deployment of artificial intelligence [1,2] and machine learning [3] in various application areas throughout the product life cycle. Industry 4.0 [4] is the coined term used to describe this optimization involving interconnection and collaboration among the factory’s interactants (human and synthetic) towards a human–automation symbiosis.
Nowadays, the adoption process in Industry 4.0 mainly focuses on assisting humans with different technologies in order to ease their tasks and improve productivity, as envisioned in the Operator 4.0 concept [5]. This is because full automation is costly and not effective in all areas due to dexterity, flexibility, and complexity requirements. Thus, assistance systems are required to facilitate interconnection and collaboration between humans and synthetic systems, especially in the case of manual work. Recent assembly assistance systems target multi-modal interaction with the user and are capable of providing adaptive instructions (i.e., type, content, sequence) tailored for different user categories (e.g., experience, age, gender) that take into account the user’s basic emotion and/or mental state. Smart anomaly detection and prediction can significantly reduce unexpected production interruptions [6]. Studies such as in [7] indicate that the impact of assembly assistance systems increases in the case of complex products and untrained persons.
This paper proposes a novel way of tackling assembly assistance prediction problems by improving the accuracy of commonly used Markov chain methods. One of the many problems involved in assembly assistance systems is the spread of the data inside multiple bins with a low amount of data in each bin. This confuses the Markov chain, causing low probabilities of each move due to the spread of the data; it can also cause a low prediction rate during testing when the algorithm meets new scenarios for which it was not trained.
The novelty of the proposed technique is the hybrid approach that combines an informed tree search with a Markov model, as well as the usage of this hybrid method in assembly assistance systems for next manufacturing step prediction. The scope of this paper is to address the problem described above by using an informed tree search on top of the Markov chain prediction to provide a plausible move for the next step when the Markov chain fails its prediction due to insufficient training data or meeting a new scenario. The predictions of the next move will always follow Markovian probability, and when all the probabilities are 0 or the Markov chain does not return any prediction, the following move will be chosen out of the plausible moves ranked by the heuristic function. The main goals are to identify, produce, and test different techniques that improve the prediction generated by Markov chains in scenarios that were not met during the training phase. This paper also aims to produce valid algorithms that can be used in an assembly assistance system, to evaluate the algorithm on the provided dataset and to prove its general usage, and to define any further work that can be done to improve the algorithm.
The rest of this paper is organized as follows. Section 2 presents the related work, Section 3 describes the proposed prediction method, Section 4 discusses the experimental results, and Section 5 concludes the paper.

4. Experimental Results

For the evaluation of the novel predictor and its comparison to other predictors in the assembly assistance context of the project, the accuracy, coverage, and prediction rate measurements were used to obtain comparable results and determine the best approach to solve the problem. The accuracy is measured as correct predictions out of the predictions made. The coverage is measured as correct predictions out of all the possible predictions, and prediction rate is measured as the number of predictions generated out of all the possible predictions. The simulation environment and the architecture of the algorithm were designed using Python for ease of implementation. Several open-source libraries were used, such as sklearn and numpy. The Markov implementation was done manually in Python. The evaluations were done on an average laptop consisting of an i5-7300HQ processor at 2.5 GHz and 8 GB memory.
Before observing the metrics, several important features of the novel hybrid algorithm were discovered when checking the results. First, a new level of robustness is achieved by the algorithm, which is essential during use inside assembly assistance stations in the Industry 4.0 era. The algorithm has a prediction rate of 100%, meaning that for any input, it will have an output; moreover, even if the Markov chain predictor would not return any results, the hybrid algorithm will still propose a correct assembly sequence due to the node expansion functionality built inside the A*. This is one of the most useful points of the algorithm as it can be used on any number of unseen assembly states from the training stage.
The second important feature observed when gathering the results is the error detection capability and the ability to correct wrong assemblies; this is one of the most sought out features in Industry 4.0. If the start would be a tablet that is wrongly assembled, by using negative scores for the incorrectly assembled pieces, the A* algorithm would very easily navigate its way back to a valid assembly sequence by recommending the removal of the piece until it reaches a valid state, where the Markov chain would be able to predict future valid assembly sequences.
The data composition is based on randomly sampled data from a mix of correct assembly sequences from a 68-student cohort and the 111 manufacturing workers used in [35] that assembled the tablet using the same methodology. A mixed dataset was chosen to avoid the bias generated by the factory workers, who tended to assemble the tablets in sequential order, whereas the students took other approaches. This resulted in an increase in the generalization power of the predictor and avoided over-fitting. The evaluations are done on the mixed dataset, as well as on the “Students” and “Workers” datasets individually.
During the development process, several iterations of the heuristic were implemented, starting from the naïve approach. The iterations and progress can be seen in the charts below. The models always have a 100% prediction rate due to the tree search part of the prediction; therefore, both coverage and accuracy will always be the same. The A* algorithm was combined with Markov models of orders 1 ÷ 7, denoted as M1 ÷ M7.
Figure 6 depicts how the underestimating heuristic underperforms the Markov chain used in the prediction process due to the heuristic score being favored over the Markov prediction score even in cases when the Markov prediction was predicting the correct result. After making the heuristic always return the exact length to the final state, we can see from Figure 7 a considerable increase in the amount of prediction power as the prediction will follow the Markov prediction when available and follow the shortest path score when the Markov prediction is missing. Another part of the heuristic obtaining a considerable score is the ordering of the items in the queue as when no Markov score is present, the last item will be the following child, with the lowest state score described in the methodology used in [28].
Figure 6. Predictor coverage graph for underestimating heuristic on the mixed dataset.
Figure 7. Predictor coverage graph for the perfect heuristic on the mixed dataset.
Figure 8 presents a comparison of heuristics on the mixed dataset. The best coverage was provided by the informed tree search algorithm with a first-order Markov model and perfect heuristic.
Figure 8. Heuristic comparison on the mixed dataset.
Analyzing Figure 9 and Figure 10, similar results to [37] were observed, namely, that for the algorithm, it is easier to learn the behavior of the manufacturing workers, which, based on their experience, are more conservative in their assembly patterns. The increase of 14% in the prediction power can also be attributed to the narrower range of unique assemblies available in the manufacturing dataset compared to the students’ dataset, where several unique assemblies were met; whenever the algorithm predicted equal chances for both of them, the first one added in the queue would be picked.
Figure 9. Predictor coverage graph for the perfect heuristic on the “Workers” dataset.
Figure 10. Predictor coverage graph for the perfect heuristic on the “Students” dataset.
The results of the best iterations can be found in Table 3, compared with other predictors used in the same context. The base predictor is a naïve heuristic model, where each move has a score of 1, and the assembly prediction is always the same. The novel A* algorithm applied on the top of a first-order Markov chain was also compared with a first-order Markov chain used alone, the PPMN, GBDT, and LSTM models, respectively.
Table 3. Comparison between different predictors on the mixed dataset.
The evaluations show that the proposed A* algorithm, used together with a first-order Markov model, outperforms all the other models in terms of coverage and prediction rate, making it the most suitable algorithm to be used in the assembly station’s prediction process. While the accuracy is comparable between the first-order Markov predictor and the A* with the order 1 Markov model, the main metric that is used for comparison is the coverage that also adds the prediction rate into the metric, rendering a more useful metric for the Industry 4.0 era, where the prediction rate matters.
Another observation can be made in terms of prediction rate, namely that tree-based predictors as well as neural predictors managed to achieve a prediction rate of 100%, which is desirable when implementing the algorithms in real-world uses. This outcome is expected due to the way the algorithms are built, as they will always output a prediction for any input even though the confidence for the prediction is low; therefore, the accuracy is low (see LSTM accuracy metric in Table 3).
The Markovian-based predictors suffer from not having all the scenarios available in the training data, resulting in a lower prediction rate but higher accuracy. This was also observed in a previous study [37], where the feature importance metrics could be observed from the algorithms. The main feature used for prediction was the state of the tablet, with a representation of over 98% of the splits inside the predictor, at least for the GBDT presented in the study. As can be seen in Table 3, the accuracy is similar to that of the Markov-based predictors, with the added benefit of increased coverage due to the tree-based prediction method.

5. Conclusions and Further Work

In this paper, a new method based on an informed tree search on top of Markov chain prediction was applied to suggest a plausible move for the next assembly step. The novelty of the method is the hybrid approach that combines an informed tree search with a stochastic model, as well as the usage of this hybrid model for next assembly step prediction. When the Markov chain fails in its prediction due to a new scenario, then an informed tree search is performed. The proposed model is intended to be used as a component of our assembly assistance system, which thus is able to guide factory workers and trainees. The algorithm was configured by choosing the most efficient combination in terms of prediction coverage: an informed tree search with a perfect heuristic relying on the predictions generated by a first-order Markov chain. The comparisons with other existing prediction models (e.g., Markov chains, PPMN, GBDT, LSTM) show that the proposed method provides the best results in terms of coverage, which is the most important evaluation metric as it reflects the percentage of correct assembly step predictions. The coverage of this best model was 67.63%, outperforming by 15.83% the first-order Markov chain, by 5.76% the second-order PPMN, by 2.52% the GBDT, and by 19.43% the LSTM.
There were several limitations present during the study; the main one was that data collection was done in a physical manner by using the assembly station. By collecting data in a physical manner, an increased amount of time was necessary to reset the experiment after each use and for the participants to answer the questionnaire. Another impairment was calibrating the sensors used by the machine as it took several iterations in the calibration process to be able to gather accurate data that could be used for machine learning. Yet another limitation was the COVID-19 pandemic situation, as the experiment involving the factory workers was under pandemic conditions and specific special conditions had to be assured for the safety of the participants. As a scheme limitation, we can mention the necessity of training data.
The novel algorithm can be further improved by replacing the simple heuristic used in the model with a hyper-heuristic that can gain more information from the environment, e.g., instead of assigning a basic score to each component, we can assign a Euclidean score based on how close the component is to the last performed move or a score based on the assembly direction. Another approach would be to calculate the score based on the total remaining available pieces, making the system use alternative assembly pieces when two or more pieces can be used for the same module, thus optimizing the module quantities.
As an outlook, we are targeting the development of a web application to gather more data about assembly sequences to further extend the prediction capacity of the machine learning algorithms. Besides this, we plan to execute further on-site studies with technical and professional school students, considering a broader spectrum of user typologies and basic emotion and mental states as well to cover the requirements from future manufacturing operators. Considering the prediction algorithms, further ones will be investigated, such as dynamic Bayesian networks, hybrid stochastic predictors, and hidden Markov models.
In the longer term, from a software training application perspective, we want to better integrate all the microservices within the training application to provide more robust functionalities by supporting more devices and sensors so that the prototypes move from TRL 3 (i.e., technology validated in the lab) to TRL 5 (i.e., technology validated in the relevant environment), focusing on a real ongoing product manufactured by a regional industrial company.

Author Contributions

Conceptualization, A.G., R.S. and B.-C.P.; methodology, A.G. and R.S.; software, R.S.; validation, A.G. and R.S.; formal analysis, A.G., R.S. and B.-C.P.; investigation, A.G. and R.S.; resources, A.G. and B.-C.P.; data curation, R.S.; writing—original draft preparation, A.G., R.S. and B.-C.P.; writing—review and editing, A.G., R.S. and B.-C.P.; visualization, A.G., R.S. and B.-C.P.; supervision, A.G.; project administration, A.G. and B.-C.P.; funding acquisition, A.G. and B.-C.P. All authors have read and agreed to the published version of the manuscript.

Funding

The project was financed by Lucian Blaga University of Sibiu and Hasso Plattner Foundation research grant LBUS-IRG-2021-07 and by the DiFiCIL project (contract no. 69/08.09.2016, ID P_37_771).

Institutional Review Board Statement

All the experiments presented and used in this study were approved by the Research Ethics Committee of Lucian Blaga University of Sibiu (No. 3, on 9 April 2020).

Data Availability Statement

The data presented in this study are available upon request.

Acknowledgments

Many thanks to all the staff and volunteers who made the experiment possible over several long days. Special thanks to Maria Gîță for the scheduling of factory workers, Alex Măgdoiu and Andrei Apostoiu for making the experiment possible within the factory premise, Ștefan Precup for the experiment’s data acquisition, and Radu Popa and Livia Pogan for their advice on the requirements within experiments involving humans.

Conflicts of Interest

The authors declare no conflict of interest.

References

  1. Zamora-Hernández, M.-A.; Castro-Vargas, J.A.; Azorin-Lopez, J.; Garcia-Rodriguez, J. Deep Learning-Based Visual Control Assistant for Assembly in Industry 4.0. Comput. Ind. 2021, 131, 103485. [Google Scholar] [CrossRef]
  2. Prinz, C.; Fahle, S.; Kuhlenkötter, B.; Losacker, N.; Zhang, W.; Cai, W. Human-Centered Artificial Intelligence Application: Recognition of Manual Assembly Movements for Skill-Based Enhancements. In Proceedings of the Conference on Learning Factories (CLF) 2021, Graz, Austria, 1–2 July 2021; pp. 1–6. [Google Scholar]
  3. De Giorgio, A.; Maffei, A.; Onori, M.; Wang, L. Towards Online Reinforced Learning of Assembly Sequence Planning with Interactive Guidance Systems for Industry 4.0 Adaptive Manufacturing. J. Manuf. Syst. 2021, 60, 22–34. [Google Scholar] [CrossRef]
  4. Schuh, G.; Anderl, R.; Dumitrescu, R.; Krüger, A.; ten Hompel, M. Industrie 4.0 Maturity Index—Managing the Digital Transformation of Companies; Acatech: Munich, Germany, 2020. [Google Scholar]
  5. Romero, D.; Bernus, P.; Noran, O.; Stahre, J.; Fast-Berglund, Å. The Operator 4.0: Human Cyber-Physical Systems & Adaptive Automation Towards Human-Automation Symbiosis Work Systems. In Advances in Production Management Systems. Initiatives for a Sustainable World; Nääs, I., Vendrametto, O., Mendes Reis, J., Gonçalves, R.F., Silva, M.T., von Cieminski, G., Kiritsis, D., Eds.; Springer International Publishing: Cham, Switzerland, 2016; pp. 677–686. [Google Scholar]
  6. Tanuska, P.; Spendla, L.; Kebisek, M.; Duris, R.; Stremy, M. Smart Anomaly Detection and Prediction for Assembly Process Maintenance in Compliance with Industry 4.0. Sensors 2021, 21, 2376. [Google Scholar] [CrossRef]
  7. Keller, T.; Behling, M.; Stockinger, C.; Metternich, J.; Schützer, K. Analysis of the Influence of Process Complexity and Employee Competence on the Effect of Digital Assistance in Industrial Assembly. Prod. Eng. 2021, 15, 1–8. [Google Scholar] [CrossRef]
  8. Mark, B.G.; Rauch, E.; Matt, D.T. Worker Assistance Systems in Manufacturing: A Review of the State of the Art and Future Directions. J. Manuf. Syst. 2021, 59, 228–250. [Google Scholar] [CrossRef]
  9. Miqueo, A.; Torralba, M.; Yagüe-Fabra, J.A. Lean Manual Assembly 4.0: A Systematic Review. Appl. Sci. 2020, 10, 8555. [Google Scholar] [CrossRef]
  10. Knoke, B.; Thoben, K.-D. Training Simulators for Manufacturing Processes: Literature Review and Systematisation of Applicability Factors. Comput. Appl. Eng. Educ. 2021, 29, 1191–1207. [Google Scholar] [CrossRef]
  11. Tocu, N.-A.; Gellert, A.; Stefan, I.-R.; Nitescu, T.-M.; Luca, G.-A. The impact of virtual reality simulators in manufacturing industry. In Proceedings of the 12th Annual International Conference on Education and New Learning Technologies, Palma de Mallorca, Spain, 6–8 July 2020. [Google Scholar]
  12. Pratticò, F.G.; Lamberti, F. Towards the Adoption of Virtual Reality Training Systems for the Self-Tuition of Industrial Robot Operators: A Case Study at KUKA. Comput. Ind. 2021, 129, 103446. [Google Scholar] [CrossRef]
  13. Zheng, L.; Liu, X.; An, Z.; Li, S.; Zhang, R. A smart assistance system for cable assembly by combining wearable augmented reality with portable visual inspection. Virtual Real. Intell. Hardw. 2020, 2, 12–27. [Google Scholar] [CrossRef]
  14. Rossi, M.; Papetti, A.; Germani, M.; Marconi, M. An Augmented Reality System for Operator Training in the Footwear Sector. Comput. Des. Appl. 2020, 18, 692–703. [Google Scholar] [CrossRef]
  15. Vanneste, P.; Dekeyser, K.; Kim, J.; Cornillie, F.; Depaepe, F.; Raes, A.; van den Noortgate, W. Personalised AR Instructions to Tailor Cognitive Support During Assembly Work. In Proceedings of the 17th International Conference on Computers Helping People with Special Needs, Lecco, Italy, 9–11 September 2020; Volume 1, pp. 123–130. [Google Scholar]
  16. Kolla, S.; Sanchez, A.; Plapper, P. Comparing Effectiveness of Paper Based and Augmented Reality Instructions for Manual Assembly and Training Tasks. In Proceedings of the Conference on Learning Factories (CLF), Graz, Austria, 1–2 July 2021. [Google Scholar]
  17. Doolani, S.; Wessels, C.; Kanal, V.; Sevastopoulos, C.; Jaiswal, A.; Nambiappan, H.; Makedon, F. A Review of Extended Reality (XR) Technologies for Manufacturing Training. Technologies 2020, 8, 77. [Google Scholar] [CrossRef]
  18. Müller, R.; Hörauf, L.; Bashir, A. Cognitive Assistance Systems for Dynamic Environments. In Proceedings of the 2019 24th IEEE International Conference on Emerging Technologies and Factory Automation, Zaragoza, Spain, 10–13 September 2019; pp. 649–656. [Google Scholar]
  19. Bläsing, D.; Bornewasser, M. Influence of Increasing Task Complexity and Use of Informational Assistance Systems on Mental Workload. Brain Sci. 2021, 11, 102. [Google Scholar] [CrossRef]
  20. Mattsson, S.; Fast-Berglund, Å.; Li, D.; Thorvald, P. Forming a Cognitive Automation Strategy for Operator 4.0 in Complex Assembly. Comput. Ind. Eng. 2020, 139, 105360. [Google Scholar] [CrossRef]
  21. Parmentier, D.D.; Van Acker, B.B.; Detand, J.; Saldien, J. Design for Assembly Meaning: A Framework for Designers to Design Products That Support Operator Cognition during the Assembly Process. Cogn. Technol. Work. 2020, 22, 615–632. [Google Scholar] [CrossRef]
  22. Rupp, S.; Müller, R. Worker assistance systems and assembly process maturity in the prototype and pre-series production. Procedia Manuf. 2020, 51, 1431–1438. [Google Scholar] [CrossRef]
  23. Reisinger, G.; Hold, P.; Sihn, W. Automated Information Supply of Worker Guidance Systems in Smart Assembly Environment. In Smart Technologies for Precision Assembly; Springer International Publishing: Cham, Switzerland, 2021; pp. 235–248. [Google Scholar]
  24. Bertram, P.; Birtel, M.; Quint, F.; Ruskowski, M. Intelligent Manual Working Station through Assistive Systems. In Proceedings of the 16th IFAC Symposium on Information Control Problems in Manufacturing, Bergamo, Italy, 11–13 June 2018; pp. 170–175. [Google Scholar]
  25. Palmas, F.; Labode, D.; Plecher, D.A.; Klinker, G. Comparison of a Gamified and Non-Gamified Virtual Reality Training Assembly Task. In Proceedings of the 2019 11th International Conference on Virtual Worlds and Games for Serious Applications, Vienna, Austria, 4–6 September 2019; pp. 1–8. [Google Scholar]
  26. Ardjmand, E.; Ghalehkhondabi, I.; Young, W.A., II; Sadeghi, A.; Sinaki, R.Y.; Weckman, G.R. A Hybrid Artificial Neural Network, Genetic Algorithm and Column Generation Heuristic for Minimizing Makespan in Manual Order Picking Operations. Expert Syst. Appl. 2020, 159, 113566. [Google Scholar] [CrossRef]
  27. Gellert, A.; Zamfirescu, C.-B. Using Two-Level Context-Based Predictors for Assembly Assistance in Smart Factories, Intelligent Methods in Computing, Communications and Control. In Proceedings of the 8th International Conference on Computers Communications and Control, Oradea, Romania, 11–15 May 2020; Springer: Cham, Switzerland, 2020; pp. 167–176. [Google Scholar]
  28. Gellert, A.; Zamfirescu, C.-B. Assembly support systems with Markov predictors. J. Decis. Syst. 2020, 9, 63–70. [Google Scholar] [CrossRef]
  29. Gellert, A.; Precup, S.-A.; Pirvu, B.-C.; Zamfirescu, C.-B. Prediction-Based Assembly Assistance System. In Proceedings of the 25th International Conference on Emerging Technologies and Factory Automation, Vienna, Austria, 8–11 September 2000; pp. 1065–1068. [Google Scholar]
  30. Srivastava, S.; Baptista, M.S. Markovian language model of the DNA and its information content. R. Soc. Open Sci. 2016, 3, 150527. [Google Scholar] [CrossRef] [Green Version]
  31. Gellert, A. Web Usage Mining by Neural Hybrid Prediction with Markov Chain Components. J. Web Eng. 2021, 20, 1279–1296. [Google Scholar] [CrossRef]
  32. Gellert, A.; Brad, R. Studying the influence of search rule and context shape in filtering impulse noise images with Markov chains. Signal Image Video Process. 2018, 12, 315–322. [Google Scholar] [CrossRef]
  33. Gellert, A.; Brad, R. Image Inpainting with Markov Chains. Signal Image Video Process. 2020, 14, 1335–1343. [Google Scholar] [CrossRef]
  34. Gellert, A.; Florea, A.; Fiore, U.; Palmieri, F.; Zanetti, P. A study on forecasting electricity production and consumption in smart cities and factories. Int. J. Inf. Manag. 2019, 49, 546–556. [Google Scholar] [CrossRef]
  35. Gellert, A.; Precup, S.-A.; Pirvu, B.-C.; Fiore, U.; Zamfirescu, C.-B.; Palmieri, F. An Empirical Evaluation of Prediction by Partial Matching in Assembly Assistance Systems. Appl. Sci. 2021, 11, 3278. [Google Scholar] [CrossRef]
  36. Precup, S.-A.; Gellert, A.; Dorobantiu, A.; Zamfirescu, C.-B. Assembly Process Modeling through Long Short-Term Memory. In Proceedings of the 13th Asian Conference on Intelligent Information and Database Systems, Phuket, Thailand, 7–10 April 2021. [Google Scholar]
  37. Sorostinean, R.; Gellert, A.; Pirvu, B.-C. Assembly Assistance System with Decision Trees and Ensemble Learning. Sensors 2021, 21, 3580. [Google Scholar] [CrossRef]
  38. Zanchettin, A.M.; Casalino, A.; Piroddi, L.; Rocco, P. Prediction of Human Activity Patterns for Human-Robot Collaborative Assembly Tasks. IEEE Trans. Ind. Inform. 2019, 15, 3934–3942. [Google Scholar] [CrossRef]
  39. Péret, L.; Garcia, F. On-line search for solving Markov decision processes via heuristic sampling. In Proceedings of the 16th European Conference on Artificial Intelligence, Valencia, Spain, 22–27 August 2004; IOS Press: Amsterdam, The Netherlands, 2004. [Google Scholar]
  40. Pirvu, B.-C.; Zamfirescu, B.-C.; Gorecky, D. Engineering Insights from an Anthropocentric Cyber-Physical System: A Case Study for an Assembly Station. Mechatronics 2016, 34, 147–159. [Google Scholar] [CrossRef]
  41. Pirvu, B.-C. Conceptual Overview of an Anthropocentric Training Station for Manual Operations in Production. Balk. Reg. Conf. Eng. Bus. Educ. 2019, 1, 362–368. [Google Scholar] [CrossRef]
  42. Govoreanu, V.C.; Neghina, M. Speech Emotion Recognition Method Using Time-Stretching in the Preprocessing Phase and Artificial Neural Network Classifiers. In Proceedings of the 2020 IEEE 16th International Conference on Intelligent Computer Communication and Processing (ICCP), Cluj-Napoca, Romania, 3–5 September 2020; pp. 69–74. [Google Scholar] [CrossRef]
  43. Matei, A.; Tocu, N.-A.; Zamfirescu, C.-B.; Gellert, A.; Neghina, M. Engineering a Digital Twin for Manual Assembling. In Leveraging Applications of Formal Methods, Verification and Validation: Tools and Trends; Springer International Publishing: Cham, Switzerland, 2021; pp. 140–152. [Google Scholar]
Publisher’s Note: MDPI stays neutral with regard to jurisdictional claims in published maps and institutional affiliations.

Article Metrics

Citations

Article Access Statistics

Multiple requests from the same IP address are counted as one view.