Information

  • Author Services

Initiatives

You are accessing a machine-readable page. In order to be human-readable, please install an RSS reader.

All articles published by MDPI are made immediately available worldwide under an open access license. No special permission is required to reuse all or part of the article published by MDPI, including figures and tables. For articles published under an open access Creative Common CC BY license, any part of the article may be reused without permission provided that the original article is clearly cited. For more information, please refer to https://www.mdpi.com/openaccess .

Feature papers represent the most advanced research with significant potential for high impact in the field. A Feature Paper should be a substantial original Article that involves several techniques or approaches, provides an outlook for future research directions and describes possible research applications.

Feature papers are submitted upon individual invitation or recommendation by the scientific editors and must receive positive feedback from the reviewers.

Editor’s Choice articles are based on recommendations by the scientific editors of MDPI journals from around the world. Editors select a small number of articles recently published in the journal that they believe will be particularly interesting to readers, or important in the respective research area. The aim is to provide a snapshot of some of the most exciting work published in the various research areas of the journal.

Original Submission Date Received: .

  • Active Journals
  • Find a Journal
  • Proceedings Series
  • For Authors
  • For Reviewers
  • For Editors
  • For Librarians
  • For Publishers
  • For Societies
  • For Conference Organizers
  • Open Access Policy
  • Institutional Open Access Program
  • Special Issues Guidelines
  • Editorial Process
  • Research and Publication Ethics
  • Article Processing Charges
  • Testimonials
  • Preprints.org
  • SciProfiles
  • Encyclopedia

applsci-logo

Article Menu

machine learning in manufacturing research paper

  • Subscribe SciFeed
  • Recommended Articles
  • Google Scholar
  • on Google Scholar
  • Table of Contents

Find support for a specific problem in the support section of our website.

Please let us know what you think of our products and services.

Visit our dedicated information section to learn more about MDPI.

JSmol Viewer

Machine learning in manufacturing towards industry 4.0: from ‘for now’ to ‘four-know’.

machine learning in manufacturing research paper

1. Introduction

  • RQ1: How does ML benefit manufacturing, and what are the typical ML application cases?
  • RQ2: How are ML-based solutions developed for problems in manufacturing engineering?
  • RQ3: What are the challenges and opportunities in applying ML in manufacturing contexts?

2. Overview of Machine Learning in Manufacturing

2.1. introduction of four-know and four-level.

  • Know-what deals with understanding of the current states of machines, processes, or production systems, which can help in rapid decision-making. It should be noted that Know-what goes beyond visualization of real-time data. Instead, data should be processed, analyzed, and distilled into information which enables decision-making. For instance, typical examples of Know-what in manufacturing are defect detection in quality control [ 17 , 18 ], fault detection in process/machine monitoring [ 19 , 20 ], and soft sensor modelling [ 21 , 22 ].
  • Know-why , based on the information from Know-what, aims to identify inner patterns from historical data, thereby discovering the reasons for a thing happening. Know-why includes the identification of interactions among different variables [ 23 ] and the discovery of cause-effect relationship between an event and other variables [ 24 , 25 ]. On one hand, Know-why can indicate most important factors for understanding Know-what. On the other hand, Know-why is the prerequisite for Know-when, as the reliability of predictions is heavily dependent upon the quality of casual inference.
  • Know-when , built on Know-why, involves timely predictions of events or prediction of key variables based on historical data, allowing the decision-maker can take actions at early stages. For instance, Know-when in manufacturing includes quality prediction based on relevant variables [ 26 , 27 ], predictive maintenance via detection of incipient anomalies before break-down [ 28 , 29 ], and predicting Remaining Useful Life (RUL) [ 30 , 31 ].
  • Know-how , on the foundation of Know-when, can recommend decisions that help adapt to expected disturbance and can aid in self-optimization. Examples in manufacturing include prediction-based process control [ 27 , 32 ], scheduling of predictive maintenance tasks [ 33 , 34 ], dynamic scheduling in the flexible production [ 35 , 36 ], and inventory control [ 34 ].

2.2. Literature Review Methodology

  • The study dealt with the context of manufacturing;
  • The study dealt with ML applications in specific fields.

3. Pipeline of Applying Machine Learning in Manufacturing

3.1. data collection.

  • Image data , matrices of pixels with two or more dimensions, such as gray-scale images or colored images. Image data can acquired by with vision systems, through data transformations such as simple concatenation of several one-dimensional vectors with same length, or by the transformation of images from the spatial domain to the frequency domain.
  • Tabular data organized in a table, where normally one axis represents attributes and another axis represents observations. Tabular data are typically observed in production data, where the attributes of events of interest are collected. Though tabular data share a similar data structure with image data, the latter are more focused on one-dimensional interaction among attributes, while image data typically stress spatial interactions in both dimensions.
  • Time series data , sequences of one or more attributes over time, with the former corresponding to univariate time series and the latter multivariate time series. In manufacturing, time series data are normally acquired with sensors whenever there is a need for monitoring time flow changes of data.
  • Text data , including written documents with words, sentences or paragraphs. Examples of text data in manufacturing include maintenance reports on machines and descriptions of unexpected disturbances or events in production.

3.2. Data Cleaning

3.3. data transformation, 3.4. model training, 3.5. model analysis, 3.6. model push, 4. machine learning methods and applications, 4.1. supervised learning methods, 4.2. unsupervised learning methods.

  • Say we wish to condense d features in our data matrix X to k features. The first step is to standardize the input data: z = x − μ / σ where μ is the mean and σ is the standard deviation.
  • Next, it is necessary to find the covariance matrix of the standardized input data. The covariance of variables X and Y can be written as follows: cov ( X , Y ) = 1 n − 1 ∑ i = 1 n ( X i − x → ) ( Y i − y ¯ ) . (1)
  • The third steps is to find all of the eigenvalues and eigenvectors of the covariance matrix: A v → = λ v → (2) A v → − λ v → = 0 (3) v → ( A − λ I ) = 0 . (4)
  • Then, the eigenvector corresponding to the largest eigenvalue is the direction with the maximum variance, the eigenvector corresponding to second-largest eigenvalue is the direction with the second maximum variance, etc.
  • To obtain k features, it is necessary to multiply the original data matrix by the matrix of eigenvectors corresponding to the k largest eigenvalues.
  • Quality improvement (Know-why, product level): by analyzing the variations of a product’s features, PCA can be used to identify the causes of product defects [ 122 ].
  • Machine monitoring (Know-why, machine level): by analyzing sensor data from a machine, PCA can be used to detect incipient patterns in the data that indicate potential issues with the machinery, such as wear and tear [ 123 ].
  • Process optimization (Know-why, process level): by analyzing variations in the process data, PCA can be used to identify the most important factors that affect the process, allowing the manufacturer to optimize the process and thereby reduce costs [ 124 ].
  • Anomaly detection (Know-what): an AE can be trained to reconstruct normal data and detect abnormal data by measuring the reconstruction error, which allows the manufacturer to detect and address issues such as product defects [ 124 ] and machinery failure [ 127 ].
  • Feature selection (Know-why): an AE can be used to identify the most important features in the data and remove the noise and irrelevant information, which can be used for diagnosis of product defects or to detect events of interests [ 128 ].
  • Dimensionality reduction: an AE can be used to reduce the dimensionality of large and complex datasets, making it easier to identify patterns and trends [ 129 ].

4.3. Semi-Supervised Learning Methods

4.4. reinforcement learning methods, 5. challenges and future directions.

  • Lack of data . Preparing the data used for ML is not a simple task, as the scale and the quality of data can greatly affect the performance of ML models. The most common challenge involves preparing a large amount of organized input data, and ensuring high-quality labels if labels are needed. Despite manufacturing data becoming increasingly more accessible due to the development of sensors and the Internet of Things, gathering meaningful data is time-consuming and costly in many cases, for example, fault detection and RUL prediction. This issue might be alleviated by the Synthetic Minority Over-sampling Technique (SMOTE) [ 162 ]. However, SMOTE cannot capture complex representative data, as it often relies on interpolation [ 163 ]. Data augmentation [ 139 , 164 ] or transfer learning [ 165 ] may address this problem. The aim of data augmentation is to enlarge dataset by means of transforming data [ 139 ], by transforming both data and labels, as with MixUp [ 166 ], or by generating synthetic data using generative models [ 167 , 168 ]. On the contrary, instead of focusing on expanding data, transfer learning aims to leverage knowledge from similar external datasets. A typically used method in transfer learning is parameter transfer, where a pretrained model from a similar dataset is employed for initialization [ 165 ]. Another situation involving lack of data is that certain data cannot be shared due to data privacy and security issues. In confronting this problem, Federated Learning (FL) [ 169 ] might be a potential opportunity to enable model training across multiple decentralized devices while holding local data privately.
  • Limited computing resources . The high performance of ML models always comes with high computational complexity. In particular, obtaining high accuracy with a neural network requires on millions or even billions of parameters [ 170 ]. However, limited computing resources in industries makes it a challenge to deploy heavy ML models in real-time industrial environments. Possible approaches include model compression via pruning and sharing of model parameters [ 171 ] and knowledge distillation [ 172 ]. Parameter pruning aims to reduce the number of model parameters by removing redundant parameters without any effect on model performance. By contrast, seeking the same goal, knowledge distillation focuses on distilling knowledge from a cumbersome neural network to a lightweight network to allow it to be deployed more easily with limited computing resources.
  • Changing circumstances . Most ML applications in manufacturing focus only on model development and verification in off-line environments. However, when deploying these models in running production, their performance may be degraded due to changing circumstances, leading to changes in data distribution, that is, drift [ 173 , 174 ]. Therefore, manual model adjustment over time, which is time-consuming, is usually unavoidable [ 175 ]. However, this could be addressed in the future by automatic model adaption [ 174 ], in which data drifts are automatically detected and handled with less resources.
  • Interpretability of results . Many expectations have been placed on ML to overcome all types of problems without the need for prior knowledge. In particular, ML models are expected to directly learn higher level knowledge such as Know-when and Know-how, which is difficult for human beings to obtain in manufacturing. However, without the foundations of early-stage knowledge and an understanding of the data, the results inferred from big data by black-box ML models are meaningless and unreliable. For instance, predictions blindly obtained from all data, including both relevant and irrelevant data, might even degrade performance due to the GIGO (garbage in, garbage out) phenomenon [ 176 ]. To overcome this problem, future directions within ML development might include incorporating physical models into ML models [ 177 ] or obtaining Four-know knowledge successively.
  • Uncertainty of results . Related to the challenge of interpretability is the challenge of uncertain results. The success of manufacturing depends heavily on the quality of the resulting products. As every manufacturing process has a degree of variability, almost all industrial manufacturers use statistical process control (SPC) to ensure a stable and defined quality of products [ 178 ]. A central element of statistical process control is the determination and handling of statistical uncertainty. The uncertainty of ML results often cannot be quantified reliably and efficiently, even with today’s state-of-the-art [ 179 , 180 , 181 ]. Furthermore, model complexity and severe non-linearity in ML can hinder the evaluation of uncertainty [ 182 ]. Although there are promising approaches, e.g., Gaussian mixture models for NN [ 183 , 184 ] and Probabilistic Neural Network (PNN) [ 184 ], or the use of Baysian Networks [ 180 ], there are several limitations limiting potential applications, such as high computational cost and simplified assumptions [ 184 ]. Therefore, future research needs to make progress on the general theory of integrating uncertainty into ML methods to allow manufacturing in order to ensure high quality and stability in production.

6. Conclusions

Author contributions, institutional review board statement, informed consent statement, data availability statement, acknowledgments, conflicts of interest.

Ref.YearLevelKnow-
What
Know-
Why
Know-
When
Know-
How
Data TypeMethod TypeCaseField
[ ]2018Product ImageKernelDefect detectionMetallic powder bed fusion
[ ]2018Product TabularKernelProduct monitoringMetal frame process in mobile device manufacturing
[ ]2020Process Time series, ImageKernelTemperature prediction and potential anomaly detectionAdditive manufacturing
[ ]2022Product,
Process
TabularKernelFault detection and classificationSemiconductor Etch Equipment
[ ]2022Product TabularKernelQuality predictionAdditive manufacturing
[ ]2022Machine Time seriesKernelWear predictionMetal forming
[ ]2022System Time seriesKernelContent predictionSteel making
[ ]2018Machine Time series (Image)NNFault diagnosisMotor bearning and pump
[ ]2020System ImageNNCost estimation
[ ]2020Product ImageNNDefect detectionBattery manufacturing
[ ]2022Product Time seriesNNQuality assuranceFused deposition modeling
[ ]2022Process Time seriesNNProcess optimizationWire arc additive manufacturing
[ ]2022Process TabularNNParameter optimizationLaser powder bed fusion
[ ]2022Process ImageNNObject detectionRobotic grasp
[ ]2022Product ImageNN, kernelDefect detectionRoller manufacturing
[ ]2022Machine Time series (Image)NN, kernelTool condition monitoringMachining
[ ]2019Product Time seriesTreeMaterial removal predictionRobotic grinding
[ ]2022Product Image (Tabular)TreePorosity predictionPowder-bed additive manufacturing
[ ]2019Product ImageProbabilisticOnline quality inspectionPowder-bed additive manufacturing
[ ]2018System TabularHybridSchedulingFlexible Manufacturing Systems (FMSs)
Ref.YearLevelKnow-
What
Know-
Why
Know-
When
Know-
How
Data TypeMethod TypeCaseField
[ ]2021Machine Time seriesClusteringTool Condition clusteringAutonomous manufacturing
[ ]2021Machine Time seriesClusteringTool health monitoringMachine tool health Monitoring
[ ]2019Machine Time seriesClusteringDefect IdentificationManufacturing systems
[ ]2021Process Tabular, Time seriesClusteringCondition monitoringManufacturing Condition monitoring
[ ]2020System Time seriesClusteringCondition monitoringManufacturing Condition monitoring
[ ]2018Product Image, TextAutoencoderDefect IdentificationFabric industry
[ ]2019Product ImageAutoencoderDefect IdentificationAutomatic Optical Inspection
[ ]2021Product ImageAutoencoderDefect IdentificationPrinted circuit board manufacturing
[ ]2022Machine Tabular, Time seriesAutoencoderAnomaly detectionSteel rolling Process
[ ]2022Process ImageAutoencoderAnomaly detectionIndustrial Anomaly detection
[ ]2022Process Image, TextAutoencoderAnomaly detectionSemi conductor manufacturing
[ ]2022Machine Time seriesPCAPredictive maintenanceFan-motor system
[ ]2022Machine Time seriesPCAAnomaly detectionProgrammable logic controllers
[ ]2015Process TabularAssociation rulePredictive maintenanceWooden door manufacturing
Ref.YearLevelKnow-
What
Know-
Why
Know-
When
Know-
How
Data TypeMethod TypeCaseField
[ ]2020Product ImageData augmentationQuality controlAutomated Surface Inspection
[ ]2021Process ImageData augmentationMeasurement in processPositioning of welding seams
[ ]2019System TabularData augmentationEnergy consumption modellingSteel industry
[ ]2020Product,
System
Time seriesData augmentationQuality predictionContinuous-flow manufacturing.
[ ]2021Machine Time seriesConsistency-basedPredictive quality controlSemiconductor manufacturing
[ ]2020Product ImageConsistency-basedQuality monitoringMetal additive manufacturing
[ ]2021Product ImageGraph-basedQuality controlAutomated Surface Inspection
[ ]2022Machine Time seriesGraph-basedMachine health state diagnosisManipulator
[ ]2022Machine TabularGraph-basedPredict tool tip dynamicsMachine tool
[ ]2021Product ImageGenerative-basedAssessing manufacturability of cellular structuresDirect metal laser sintering process
[ ]2019Product Time seriesGenerative-basedQuality inferred from processlaser powder-bed fusion
[ ]2020Product ImageGenerative-basedQuality diagnosisWafer fabrication
[ ]2021Product ImageGenerative-basedQuality controlAutomated Surface Inspection
[ ]2020Machine Time seriesGenerative-basedRemaining useful life prognosticsTurbofan engine and rolling bearing
[ ]2021Machine TabularGenerative-basedMachine condition monitoringVacuum system in styrene petrochemical plant
[ ]2021Machine Time seriesGenerative-basedAnomaly detection for predictive maintenancePress machine
[ ]2022Process Time series (image)Generative-basedProcess fault detectionDie casting process
Ref.YearLevelKnow-
What
Know-
Why
Know-
When
Know-
How
Data TypeMethod TypeCaseField
[ ]2021Process TabularValue-basedQuality controlStatistical Process Control
[ ]2022System TabularValue-basedSchedulingSemiconductor fab
[ ]2021System TabularValue-basedThroughput controlFlow shop
[ ]2021Machine TabularValue-basedScheduling & MaintenanceMulti-state single machine
[ ]2020System TabularValue-basedQuality Control & MaintenanceProduction system
[ ]2022System TabularValue-basedLead time managementFlow shop
[ ]2020Process TabularValue-basedRobotic arm controlSoft fabric manufacturing
[ ]2021System TabularValue-basedLayout planningGreenfield factories
[ ]2020Machine TabularValue-basedMaintenance schedulingPreventive maintenance
[ ]2022Machine TabularPolicy-basedMaintenance schedulingParallel machines
[ ]2021Process TabularPolicy-basedImproving efficiencyAutomated product disassembly
[ ]2021System TabularPolicy-basedDispatchingJob shop
[ ]2022System TabularPolicy-basedScheduling & maintenanceSemiconductor fab
[ ]2022System TabularPolicy-basedYield optimizationMulti-agent RL
[ ]2022System TabularPolicy-basedHuman Worker ControlFlow shop
[ ]2022System TabularPolicy-basedScheduling & dispatchingDisassembly job shop
[ ]2021Product TabularPolicy-basedMulti-agent production controlJob shop
[ ]2022Process TabularBothParameter optimisationManufacturing processes
[ ]2019Process TabularBothOnline parameter optimisationInjection molding
[ ]2022System TabularBothschedulingMatrix production system
  • Abele, E.; Reinhart, G. Zukunft der Produktion: Herausforderungen, Forschungsfelder, Chancen ; Hanser: München, Germany, 2011. [ Google Scholar ]
  • Zizic, M.C.; Mladineo, M.; Gjeldum, N.; Celent, L. From industry 4.0 towards industry 5.0: A review and analysis of paradigm shift for the people, organization and technology. Energies 2022 , 15 , 5221. [ 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 ]
  • Vukovic, M.; Mazzei, D.; Chessa, S.; Fantoni, G. Digital Twins in Industrial IoT: A survey of the state of the art and of relevant standards. In Proceedings of the 2021 IEEE International Conference on Communications Workshops (ICC Workshops), Montreal, QC, Canada, 14–23 June 2021. [ Google Scholar ] [ CrossRef ]
  • Mourtzis, D.; Fotia, S.; Boli, N.; Vlachou, E. Modelling and quantification of industry 4.0 manufacturing complexity based on information theory: A robotics case study. Int. J. Prod. Res. 2019 , 57 , 6908–6921. [ Google Scholar ] [ CrossRef ]
  • Galin, R.; Meshcheryakov, R.; Kamesheva, S.; Samoshina, A. Cobots and the benefits of their implementation in intelligent manufacturing. IOP Conf. Ser. Mater. Sci. Eng. 2020 , 862 , 032075. [ Google Scholar ] [ CrossRef ]
  • May, M.C.; Schmidt, S.; Kuhnle, A.; Stricker, N.; Lanza, G. Product Generation Module: Automated Production Planning for optimized workload and increased efficiency in Matrix Production Systems. Procedia CIRP 2020 , 96 , 45–50. [ Google Scholar ] [ CrossRef ]
  • Lu, Y. Industry 4.0: A survey on technologies, applications and open research issues. J. Ind. Inf. Integr. 2017 , 6 , 1–10. [ Google Scholar ] [ CrossRef ]
  • 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 ]
  • Wuest, T.; Weimer, D.; Irgens, C.; Thoben, K.D. Machine learning in manufacturing: Advantages, challenges, and applications. Prod. Manuf. Res. 2016 , 4 , 23–45. [ Google Scholar ] [ CrossRef ]
  • Rai, R.; Tiwari, M.K.; Ivanov, D.; Dolgui, A. Machine learning in manufacturing and industry 4.0 applications. Int. J. Prod. Res. 2021 , 59 , 4773–4778. [ Google Scholar ] [ CrossRef ]
  • Bertolini, M.; Mezzogori, D.; Neroni, M.; Zammori, F. Machine Learning for industrial applications: A comprehensive literature review. Expert Syst. Appl. 2021 , 175 , 114820. [ Google Scholar ] [ CrossRef ]
  • Wang, J.; Ma, Y.; Zhang, L.; Gao, R.X.; Wu, D. Deep learning for smart manufacturing: Methods and applications. J. Manuf. Syst. 2018 , 48 , 144–156. [ Google Scholar ] [ CrossRef ]
  • Dogan, A.; Birant, D. Machine learning and data mining in manufacturing. Expert Syst. Appl. 2021 , 166 , 114060. [ Google Scholar ] [ CrossRef ]
  • Alshangiti, M.; Sapkota, H.; Murukannaiah, P.K.; Liu, X.; Yu, Q. Why is developing machine learning applications challenging? a study on stack overflow posts. In Proceedings of the 2019 ACM/IEEE International Symposium on Empirical Software Engineering and Measurement (ESEM), Porto de Galinhas, Brazil, 19–20 September 2019; pp. 1–11. [ Google Scholar ]
  • Zeller, V.; Hocken, C.; Stich, V. Acatech Industrie 4.0 maturity index—A multidimensional maturity model. In Proceedings of the IFIP International Conference on Advances in Production Management Systems, Seoul, Republic of Korea, 26–30 August 2018; Springer: Cham, Switzerland, 2018; pp. 105–113. [ Google Scholar ]
  • Yang, L.; Fan, J.; Huo, B.; Li, E.; Liu, Y. A nondestructive automatic defect detection method with pixelwise segmentation. Knowl.-Based Syst. 2022 , 242 , 108338. [ Google Scholar ] [ CrossRef ]
  • Wang, Y.; Gao, L.; Gao, Y.; Li, X. A new graph-based semi-supervised method for surface defect classification. Robot. Comput. Integr. Manuf. 2021 , 68 , 102083. [ Google Scholar ] [ CrossRef ]
  • Kim, S.H.; Kim, C.Y.; Seol, D.H.; Choi, J.E.; Hong, S.J. Machine Learning-Based Process-Level Fault Detection and Part-Level Fault Classification in Semiconductor Etch Equipment. IEEE Trans. Semicond. Manuf. 2022 , 35 , 174–185. [ Google Scholar ] [ CrossRef ]
  • Peng, S.; Feng, Q.M. Reinforcement learning with Gaussian processes for condition-based maintenance. Comput. Ind. Eng. 2021 , 158 , 107321. [ Google Scholar ] [ CrossRef ]
  • Zheng, W.; Liu, Y.; Gao, Z.; Yang, J. Just-in-time semi-supervised soft sensor for quality prediction in industrial rubber mixers. Chemom. Intell. Lab. Syst. 2018 , 180 , 36–41. [ Google Scholar ] [ CrossRef ]
  • Kang, P.; Kim, D.; Cho, S. Semi-supervised support vector regression based on self-training with label uncertainty: An application to virtual metrology in semiconductor manufacturing. Expert Syst. Appl. 2016 , 51 , 85–106. [ Google Scholar ] [ CrossRef ]
  • Srivastava, A.K.; Patra, P.K.; Jha, R. AHSS applications in Industry 4.0: Determination of optimum processing parameters during coiling process through unsupervised machine learning approach. Mater. Today Commun. 2022 , 31 , 103625. [ Google Scholar ] [ CrossRef ]
  • Antomarioni, S.; Ciarapica, F.E.; Bevilacqua, M. Association rules and social network analysis for supporting failure mode effects and criticality analysis: Framework development and insights from an onshore platform. Saf. Sci. 2022 , 150 , 105711. [ Google Scholar ] [ CrossRef ]
  • Pan, R.; Li, X.; Chakrabarty, K. Semi-Supervised Root-Cause Analysis with Co-Training for Integrated Systems. In Proceedings of the 2022 IEEE 40th VLSI Test Symposium (VTS), San Diego, CA, USA, 25–27 April 2022. [ Google Scholar ] [ CrossRef ]
  • Chen, R.; Lu, Y.; Witherell, P.; Simpson, T.W.; Kumara, S.; Yang, H. Ontology-Driven Learning of Bayesian Network for Causal Inference and Quality Assurance in Additive Manufacturing. IEEE Robot. Autom. Lett. 2021 , 6 , 6032–6038. [ Google Scholar ] [ CrossRef ]
  • Sikder, S.; Mukherjee, I.; Panja, S.C. A synergistic Mahalanobis–Taguchi system and support vector regression based predictive multivariate manufacturing process quality control approach. J. Manuf. Syst. 2020 , 57 , 323–337. [ Google Scholar ] [ CrossRef ]
  • Cerquitelli, T.; Ventura, F.; Apiletti, D.; Baralis, E.; Macii, E.; Poncino, M. Enhancing manufacturing intelligence through an unsupervised data-driven methodology for cyclic industrial processes. Expert Syst. Appl. 2021 , 182 , 115269. [ Google Scholar ] [ CrossRef ]
  • Kolokas, N.; Vafeiadis, T.; Ioannidis, D.; Tzovaras, D. A generic fault prognostics algorithm for manufacturing industries using unsupervised machine learning classifiers. Simul. Model. Pract. Theory 2020 , 103 , 102109. [ Google Scholar ] [ CrossRef ]
  • Verstraete, D.; Droguett, E.; Modarres, M. A deep adversarial approach based on multisensor fusion for remaining useful life prognostics. In Proceedings of the 29th European Safety and Reliability Conference (ESREL 2019), Hannover, Germany, 22–26 September 2020; pp. 1072–1077. [ Google Scholar ] [ CrossRef ]
  • Wu, D.; Jennings, C.; Terpenny, J.; Gao, R.X.; Kumara, S. A Comparative Study on Machine Learning Algorithms for Smart Manufacturing: Tool Wear Prediction Using Random Forests. J. Manuf. Sci. Eng. Trans. ASME 2017 , 139 , 071018. [ Google Scholar ] [ CrossRef ]
  • Viharos, Z.J.; Jakab, R. Reinforcement Learning for Statistical Process Control in Manufacturing. Meas. J. Int. Meas. Confed. 2021 , 182 , 109616. [ Google Scholar ] [ CrossRef ]
  • Luis, M.; Rodríguez, R.; Kubler, S.; Giorgio, A.D.; Cordy, M.; Robert, J.; Le, Y. Multi-agent deep reinforcement learning based Predictive Maintenance on parallel machines. Robot. Comput. Integr. Manuf. 2022 , 78 , 102406. [ Google Scholar ]
  • Paraschos, P.D.; Koulinas, G.K.; Koulouriotis, D.E. Reinforcement learning for combined production-maintenance and quality control of a manufacturing system with deterioration failures. J. Manuf. Syst. 2020 , 56 , 470–483. [ Google Scholar ] [ CrossRef ]
  • Liu, Y.H.; Huang, H.P.; Lin, Y.S. Dynamic scheduling of flexible manufacturing system using support vector machines. In Proceedings of the 2005 IEEE Conference on Automation Science and Engineering, IEEE-CASE 2005, Edmonton, AB, Canada, 1–2 August 2005; Volume 2005, pp. 387–392. [ Google Scholar ] [ CrossRef ]
  • Zhou, G.; Chen, Z.; Zhang, C.; Chang, F. An adaptive ensemble deep forest based dynamic scheduling strategy for low carbon flexible job shop under recessive disturbance. J. Clean. Prod. 2022 , 337 , 130541. [ Google Scholar ] [ CrossRef ]
  • de la Rosa, F.L.; Gómez-Sirvent, J.L.; Sánchez-Reolid, R.; Morales, R.; Fernández-Caballero, A. Geometric transformation-based data augmentation on defect classification of segmented images of semiconductor materials using a ResNet50 convolutional neural network. Expert Syst. Appl. 2022 , 206 , 117731. [ Google Scholar ] [ CrossRef ]
  • Krahe, C.; Marinov, M.; Schmutz, T.; Hermann, Y.; Bonny, M.; May, M.; Lanza, G. AI based geometric similarity search supporting component reuse in engineering design. Procedia CIRP 2022 , 109 , 275–280. [ Google Scholar ] [ CrossRef ]
  • Onler, R.; Koca, A.S.; Kirim, B.; Soylemez, E. Multi-objective optimization of binder jet additive manufacturing of Co-Cr-Mo using machine learning. Int. J. Adv. Manuf. Technol. 2022 , 119 , 1091–1108. [ Google Scholar ] [ CrossRef ]
  • Jadidi, A.; Mi, Y.; Sikström, F.; Nilsen, M.; Ancona, A. Beam Offset Detection in Laser Stake Welding of Tee Joints Using Machine Learning and Spectrometer Measurements. Sensors 2022 , 22 , 3881. [ Google Scholar ] [ CrossRef ]
  • Sanchez, S.; Rengasamy, D.; Hyde, C.J.; Figueredo, G.P.; Rothwell, B. Machine learning to determine the main factors affecting creep rates in laser powder bed fusion. J. Intell. Manuf. 2021 , 32 , 2353–2373. [ Google Scholar ] [ CrossRef ]
  • Verma, S.; Misra, J.P.; Popli, D. Modeling of friction stir welding of aviation grade aluminium alloy using machine learning approaches. Int. J. Model. Simul. 2022 , 42 , 1–8. [ Google Scholar ] [ CrossRef ]
  • Gerling, A.; Ziekow, H.; Hess, A.; Schreier, U.; Seiffer, C.; Abdeslam, D.O. Comparison of algorithms for error prediction in manufacturing with automl and a cost-based metric. J. Intell. Manuf. 2022 , 33 , 555–573. [ Google Scholar ] [ CrossRef ]
  • Akbari, P.; Ogoke, F.; Kao, N.Y.; Meidani, K.; Yeh, C.Y.; Lee, W.; Farimani, A.B. MeltpoolNet: Melt pool characteristic prediction in Metal Additive Manufacturing using machine learning. Addit. Manuf. 2022 , 55 , 102817. [ Google Scholar ] [ CrossRef ]
  • Dittrich, M.A.; Uhlich, F.; Denkena, B. Self-optimizing tool path generation for 5-axis machining processes. CIRP J. Manuf. Sci. Technol. 2019 , 24 , 49–54. [ Google Scholar ] [ CrossRef ]
  • Xi, Z. Model predictive control of melt pool size for the laser powder bed fusion process under process uncertainty. ASCE-ASME J. Risk Uncertain. Eng. Syst. Part B Mech. Eng. 2022 , 8 , 011103. [ Google Scholar ] [ CrossRef ]
  • Li, X.; Liu, X.; Yue, C.; Liu, S.; Zhang, B.; Li, R.; Liang, S.Y.; Wang, L. A data-driven approach for tool wear recognition and quantitative prediction based on radar map feature fusion. Measurement 2021 , 185 , 110072. [ Google Scholar ] [ CrossRef ]
  • Xia, B.; Wang, K.; Xu, A.; Zeng, P.; Yang, N.; Li, B. Intelligent Fault Diagnosis for Bearings of Industrial Robot Joints Under Varying Working Conditions Based on Deep Adversarial Domain Adaptation. IEEE Trans. Instrum. Meas. 2022 , 71 , 1–13. [ Google Scholar ] [ CrossRef ]
  • May, M.C.; Neidhöfer, J.; Körner, T.; Schäfer, L.; Lanza, G. Applying Natural Language Processing in Manufacturing. Procedia CIRP 2022 , 115 , 184–189. [ Google Scholar ] [ CrossRef ]
  • Xu, X.; Li, X.; Ming, W.; Chen, M. A novel multi-scale CNN and attention mechanism method with multi-sensor signal for remaining useful life prediction. Comput. Ind. Eng. 2022 , 169 , 108204. [ Google Scholar ] [ CrossRef ]
  • Shah, M.; Vakharia, V.; Chaudhari, R.; Vora, J.; Pimenov, D.Y.; Giasin, K. Tool wear prediction in face milling of stainless steel using singular generative adversarial network and LSTM deep learning models. Int. J. Adv. Manuf. Technol. 2022 , 121 , 723–736. [ Google Scholar ] [ CrossRef ]
  • Verl, A.; Steinle, L. Adaptive compensation of the transmission errors in rack-and-pinion drives. CIRP Ann. 2022 , 71 , 345–348. [ Google Scholar ] [ CrossRef ]
  • Frigerio, N.; Cornaggia, C.F.; Matta, A. An adaptive policy for on-line Energy-Efficient Control of machine tools under throughput constraint. J. Clean. Prod. 2021 , 287 , 125367. [ Google Scholar ] [ CrossRef ]
  • Bozcan, I.; Korndorfer, C.; Madsen, M.W.; Kayacan, E. Score-Based Anomaly Detection for Smart Manufacturing Systems. IEEE/ASME Trans. Mechatron. 2022 , 27 , 5233–5242. [ Google Scholar ] [ CrossRef ]
  • Bokrantz, J.; Skoogh, A.; Nawcki, M.; Ito, A.; Hagstr, M.; Gandhi, K.; Bergsj, D. Improved root cause analysis supporting resilient production systems. J. Manuf. Syst. 2022 , 64 , 468–478. [ Google Scholar ] [ CrossRef ]
  • Long, T.; Li, Y.; Chen, J. Productivity prediction in aircraft final assembly lines: Comparisons and insights in different productivity ranges. J. Manuf. Syst. 2022 , 62 , 377–389. [ Google Scholar ] [ CrossRef ]
  • Overbeck, L.; Hugues, A.; May, M.C.; Kuhnle, A.; Lanza, G. Reinforcement Learning Based Production Control of Semi-automated Manufacturing Systems. Procedia CIRP 2021 , 103 , 170–175. [ Google Scholar ] [ CrossRef ]
  • May, M.C.; Behnen, L.; Holzer, A.; Kuhnle, A.; Lanza, G. Multi-variate time-series for time constraint adherence prediction in complex job shops. Procedia CIRP 2021 , 103 , 55–60. [ Google Scholar ] [ CrossRef ]
  • Wurster, M.; Michel, M.; May, M.C.; Kuhnle, A.; Stricker, N.; Lanza, G. Modelling and condition-based control of a flexible and hybrid disassembly system with manual and autonomous workstations using reinforcement learning. J. Intell. Manuf. 2022 , 33 , 575–591. [ Google Scholar ] [ CrossRef ]
  • Liberati, A.; Altman, D.G.; Tetzlaff, J.; Mulrow, C.; Gøtzsche, P.C.; Ioannidis, J.P.; Clarke, M.; Devereaux, P.J.; Kleijnen, J.; Moher, D. The PRISMA statement for reporting systematic reviews and meta-analyses of studies that evaluate health care interventions: Explanation and elaboration. J. Clin. Epidemiol. 2009 , 62 , e1–e34. [ Google Scholar ] [ CrossRef ]
  • Sampath, V.; Maurtua, I.; Aguilar Martín, J.J.; Gutierrez, A. A survey on generative adversarial networks for imbalance problems in computer vision tasks. J. Big Data 2021 , 8 , 27. [ Google Scholar ] [ CrossRef ]
  • Polyzotis, N.; Roy, S.; Whang, S.E.; Zinkevich, M. Data lifecycle challenges in production machine learning: A survey. ACM Sigmod Rec. 2018 , 47 , 17–28. [ Google Scholar ] [ CrossRef ]
  • Wang, Z.; Oates, T. Imaging time-series to improve classification and imputation. In Proceedings of the Twenty-Fourth International Joint Conference on Artificial Intelligence, Buenos Aires, Argentina, 25–31 July 2015. [ Google Scholar ]
  • Lee, G.; Flowers, M.; Dyer, M. Learning distributed representations of conceptual knowledge. In Proceedings of the International 1989 Joint Conference on Neural Networks, Washington, DC, USA, 18–22 June 1989. [ Google Scholar ] [ CrossRef ]
  • Zhu, Y.; Brettin, T.; Xia, F.; Partin, A.; Shukla, M.; Yoo, H.; Evrard, Y.A.; Doroshow, J.H.; Stevens, R.L. Converting tabular data into images for deep learning with convolutional neural networks. Sci. Rep. 2021 , 11 , 11325. [ Google Scholar ] [ CrossRef ]
  • Sharma, A.; Vans, E.; Shigemizu, D.; Boroevich, K.A.; Tsunoda, T. DeepInsight: A methodology to transform a non-image data to an image for convolution neural network architecture. Sci. Rep. 2019 , 9 , 11399. [ Google Scholar ] [ CrossRef ]
  • LeCun, Y.; Bottou, L.; Bengio, Y.; Haffner, P. Gradient-based learning applied to document recognition. Proc. IEEE 1998 , 86 , 2278–2324. [ Google Scholar ] [ CrossRef ]
  • Nanni, L.; Ghidoni, S.; Brahnam, S. Handcrafted vs. non-handcrafted features for computer vision classification. Pattern Recognit. 2017 , 71 , 158–172. [ Google Scholar ] [ CrossRef ]
  • Alkinani, M.H.; Khan, W.Z.; Arshad, Q.; Raza, M. HSDDD: A Hybrid Scheme for the Detection of Distracted Driving through Fusion of Deep Learning and Handcrafted Features. Sensors 2022 , 22 , 1864. [ Google Scholar ] [ CrossRef ]
  • Chen, Z.; Zhang, L.; Cao, Z.; Guo, J. Distilling the Knowledge from Handcrafted Features for Human Activity Recognition. IEEE Trans. Ind. Inform. 2018 , 14 , 4334–4342. [ Google Scholar ] [ CrossRef ]
  • Albawi, S.; Mohammed, T.A.; Al-Zawi, S. Understanding of a convolutional neural network. In Proceedings of the 2017 International Conference on Engineering and Technology (ICET), Antalya, Turkey, 21–23 August 2017; pp. 1–6. [ Google Scholar ]
  • Pearson, K. LIII. On lines and planes of closest fit to systems of points in space. Lond. Edinb. Dublin Philos. Mag. J. Sci. 1901 , 2 , 559–572. [ Google Scholar ] [ CrossRef ]
  • Comon, P. Independent component analysis, a new concept? Signal Process. 1994 , 36 , 287–314. [ Google Scholar ] [ CrossRef ]
  • LeCun, Y.; Boser, B.; Denker, J.S.; Henderson, D.; Howard, R.E.; Hubbard, W.; Jackel, L.D. Backpropagation applied to handwritten zip code recognition. Neural Comput. 1989 , 1 , 541–551. [ Google Scholar ] [ CrossRef ]
  • Mikolov, T.; Karafiát, M.; Burget, L.; Cernockỳ, J.; Khudanpur, S. Recurrent neural network based language model. In Interspeech ; Makuhari: Chiba-city, Japan, 2010; Volume 2, pp. 1045–1048. [ Google Scholar ]
  • Ojala, T.; Pietikainen, M.; Maenpaa, T. Multiresolution gray-scale and rotation invariant texture classification with local binary patterns. IEEE Trans. Pattern Anal. Mach. Intell. 2002 , 24 , 971–987. [ Google Scholar ] [ CrossRef ]
  • Lowe, D.G. Distinctive image features from scale-invariant keypoints. Int. J. Comput. Vis. 2004 , 60 , 91–110. [ Google Scholar ] [ CrossRef ]
  • Dalal, N.; Triggs, B. Histograms of oriented gradients for human detection. In Proceedings of the 2005 IEEE Computer Society Conference on Computer Vision and Pattern Recognition (CVPR’05), San Diego, CA, USA, 20–26 June 2005; Volume 1, pp. 886–893. [ Google Scholar ]
  • Shensa, M.J. The discrete wavelet transform: Wedding the a trous and Mallat algorithms. IEEE Trans. Signal Process. 1992 , 40 , 2464–2482. [ Google Scholar ] [ CrossRef ]
  • Gröchenig, K. The short-time Fourier transform. In Foundations of Time-Frequency Analysis ; Springer Science & Business Media: Berlin/Heidelberg, Germany, 2001; pp. 37–58. [ Google Scholar ]
  • Harris, Z.S. Distributional structure. Word 1954 , 10 , 146–162. [ Google Scholar ] [ CrossRef ]
  • Mikolov, T.; Chen, K.; Corrado, G.; Dean, J. Efficient estimation of word representations in vector space. arXiv 2013 , arXiv:1301.3781. [ Google Scholar ]
  • Liu, D.; Kong, H.; Luo, X.; Liu, W.; Subramaniam, R. Bringing AI to edge: From deep learning’s perspective. Neurocomputing 2021 , 485 , 297–320. [ Google Scholar ] [ CrossRef ]
  • Gray, R.M.; Neuhoff, D.L. Quantization. IEEE Trans. Inf. Theory 1998 , 44 , 2325–2383. [ Google Scholar ] [ CrossRef ]
  • Sampath, V.; Maurtua, I.; Aguilar Martín, J.J.; Iriondo, A.; Lluvia, I.; Rivera, A. Vision Transformer based knowledge distillation for fasteners defect detection. In Proceedings of the 2022 International Conference on Electrical, Computer and Energy Technologies (ICECET), Prague, Czech Republic, 20–22 July 2022; pp. 1–6. [ Google Scholar ]
  • Shelden, R. Decision Tree. Chem. Eng. Prog. 1970 , 66 , 8. [ Google Scholar ]
  • Breiman, L. Bagging predictors. Mach. Learn. 1996 , 24 , 123–140. [ Google Scholar ] [ CrossRef ]
  • Freund, Y.; Schapire, R.E. Experiments with a new boosting algorithm. In Proceedings of the Thirteenth International Conference on International Conference on Machine Learning (ICML’96), Bari, Italy, 3–6 July 1996; Volume 96, pp. 148–156. [ Google Scholar ]
  • Ho, T.K. Random decision forests. In Proceedings of the 3rd International Conference on Document Analysis and Recognition, Montreal, QC, Canada, 14–16 August 1995; Volume 1, pp. 278–282. [ Google Scholar ]
  • Chen, T.; Guestrin, C. XGBoost. In Proceedings of the 22nd ACM SIGKDD International Conference on Knowledge Discovery and Data Mining, San Francisco, CA, USA, 13–17 August 2016. [ Google Scholar ] [ CrossRef ]
  • Choi, S.; Battulga, L.; Nasridinov, A.; Yoo, K.H. A decision tree approach for identifying defective products in the manufacturing process. Int. J. Contents 2017 , 13 , 57–65. [ Google Scholar ]
  • Sugumaran, V.; Muralidharan, V.; Ramachandran, K. Feature selection using decision tree and classification through proximal support vector machine for fault diagnostics of roller bearing. Mech. Syst. Signal Process. 2007 , 21 , 930–942. [ Google Scholar ] [ CrossRef ]
  • Hung, Y.H. Improved ensemble-learning algorithm for predictive maintenance in the manufacturing process. Appl. Sci. 2021 , 11 , 6832. [ Google Scholar ] [ CrossRef ]
  • Močkus, J. On bayesian methods for seeking the extremum. In Optimization Techniques IFIP Technical Conference Novosibirsk, Novosibirsk, Russia, 1–7 July 1974 ; Marchuk, G.I., Ed.; Springer: Berlin/Heidelberg, Germany, 1975; pp. 400–404. [ Google Scholar ]
  • Baum, L.E.; Petrie, T. Statistical inference for probabilistic functions of finite state Markov chains. Ann. Math. Stat. 1966 , 37 , 1554–1563. [ Google Scholar ] [ CrossRef ]
  • Papananias, M.; McLeay, T.E.; Mahfouf, M.; Kadirkamanathan, V. A Bayesian framework to estimate part quality and associated uncertainties in multistage manufacturing. Comput. Ind. 2019 , 105 , 35–47. [ Google Scholar ] [ CrossRef ]
  • Patange, A.D.; Jegadeeshwaran, R. Application of bayesian family classifiers for cutting tool inserts health monitoring on CNC milling. Int. J. Progn. Health Manag. 2020 , 11 . [ Google Scholar ] [ CrossRef ]
  • Pandita, P.; Ghosh, S.; Gupta, V.K.; Meshkov, A.; Wang, L. Application of Deep Transfer Learning and Uncertainty Quantification for Process Identification in Powder Bed Fusion. ASME J. Risk Uncertain. Part B Mech. Eng. 2022 , 8 , 011106. [ Google Scholar ] [ CrossRef ]
  • Farahani, A.; Tohidi, H.; Shoja, A. An integrated optimization of quality control chart parameters and preventive maintenance using Markov chain. Adv. Prod. Eng. Manag. 2019 , 14 , 5–14. [ Google Scholar ] [ CrossRef ]
  • El Haoud, N.; Bachiri, Z. Stochastic artificial intelligence benefits and supply chain management inventory prediction. In Proceedings of the 2019 International Colloquium on Logistics and Supply Chain Management (LOGISTIQUA), Paris, France, 12–14 June 2019; pp. 1–5. [ Google Scholar ]
  • Feng, M.; Li, Y. Predictive Maintenance Decision Making Based on Reinforcement Learning in Multistage Production Systems. IEEE Access 2022 , 10 , 18910–18921. [ Google Scholar ] [ CrossRef ]
  • Sobaszek, Ł.; Gola, A.; Kozłowski, E. Predictive scheduling with Markov chains and ARIMA models. Appl. Sci. 2020 , 10 , 6121. [ Google Scholar ] [ CrossRef ]
  • Hofmann, T.; Schölkopf, B.; Smola, A.J. Kernel methods in machine learning. Ann. Stat. 2008 , 36 , 1171–1220. [ Google Scholar ] [ CrossRef ]
  • Gobert, C.; Reutzel, E.W.; Petrich, J.; Nassar, A.R.; Phoha, S. Application of supervised machine learning for defect detection during metallic powder bed fusion additive manufacturing using high resolution imaging. Addit. Manuf. 2018 , 21 , 517–528. [ Google Scholar ] [ CrossRef ]
  • McGregor, D.J.; Bimrose, M.V.; Shao, C.; Tawfick, S.; King, W.P. Using machine learning to predict dimensions and qualify diverse part designs across multiple additive machines and materials. Addit. Manuf. 2022 , 55 , 102848. [ Google Scholar ] [ CrossRef ]
  • Kubik, C.; Knauer, S.M.; Groche, P. Smart sheet metal forming: Importance of data acquisition, preprocessing and transformation on the performance of a multiclass support vector machine for predicting wear states during blanking. J. Intell. Manuf. 2022 , 33 , 259–282. [ Google Scholar ] [ CrossRef ]
  • Cortes, C.; Vapnik, V. Support-vector networks. Mach. Learn. 1995 , 20 , 273–297. [ Google Scholar ] [ CrossRef ]
  • Mika, S.; Ratsch, G.; Weston, J.; Scholkopf, B.; Mullers, K. Fisher discriminant analysis with kernels. In Proceedings of the Neural Networks for Signal Processing IX: Proceedings of the 1999 IEEE Signal Processing Society Workshop (Cat. No.98TH8468), Madison, WI, USA, 25 August 1999; pp. 41–48. [ Google Scholar ] [ CrossRef ]
  • Fukushima, K.; Miyake, S. Neocognitron: A self-organizing neural network model for a mechanism of visual pattern recognition. In Competition and Cooperation in Neural Nets ; Springer: Berlin/Heidelberg, Germany, 1982; pp. 267–285. [ Google Scholar ]
  • Rumelhart, D.E.; Hinton, G.E.; Williams, R.J. Learning representations by back-propagating errors. Nature 1986 , 323 , 533–536. [ Google Scholar ] [ CrossRef ]
  • Hinton, G.E. Deep belief networks. Scholarpedia 2009 , 4 , 5947. [ Google Scholar ] [ CrossRef ]
  • Badmos, O.; Kopp, A.; Bernthaler, T.; Schneider, G. Image-based defect detection in lithium-ion battery electrode using convolutional neural networks. J. Intell. Manuf. 2020 , 31 , 885–897. [ Google Scholar ] [ CrossRef ]
  • Ho, S.; Zhang, W.; Young, W.; Buchholz, M.; Al Jufout, S.; Dajani, K.; Bian, L.; Mozumdar, M. DLAM: Deep Learning Based Real-Time Porosity Prediction for Additive Manufacturing Using Thermal Images of the Melt Pool. IEEE Access 2021 , 9 , 115100–115114. [ Google Scholar ] [ CrossRef ]
  • Wen, L.; Li, X.; Gao, L.; Zhang, Y. A new convolutional neural network-based data-driven fault diagnosis method. IEEE Trans. Ind. Electron. 2017 , 65 , 5990–5998. [ Google Scholar ] [ CrossRef ]
  • Al-Dulaimi, A.; Zabihi, S.; Asif, A.; Mohammadi, A. A multimodal and hybrid deep neural network model for remaining useful life estimation. Comput. Ind. 2019 , 108 , 186–196. [ Google Scholar ] [ CrossRef ]
  • Huang, J.; Segura, L.J.; Wang, T.; Zhao, G.; Sun, H.; Zhou, C. Unsupervised learning for the droplet evolution prediction and process dynamics understanding in inkjet printing. Addit. Manuf. 2020 , 35 , 101197. [ Google Scholar ] [ CrossRef ]
  • Huang, J.; Chang, Q.; Arinez, J. Product completion time prediction using a hybrid approach combining deep learning and system model. J. Manuf. Syst. 2020 , 57 , 311–322. [ Google Scholar ] [ CrossRef ]
  • Cohen, J.; Jiang, B.; Ni, J. Machine Learning for Diagnosis of Event Synchronization Faults in Discrete Manufacturing Systems. J. Manuf. Sci. Eng. 2022 , 144 , 071006. [ Google Scholar ] [ CrossRef ]
  • Mujeeb, A.; Dai, W.; Erdt, M.; Sourin, A. One class based feature learning approach for defect detection using deep autoencoders. Adv. Eng. Inform. 2019 , 42 , 100933. [ Google Scholar ] [ CrossRef ]
  • Kasim, N.; Nuawi, M.; Ghani, J.; Rizal, M.; Ngatiman, N.; Haron, C. Enhancing Clustering Algorithm with Initial Centroids in Tool Wear Region Recognition. Int. J. Precis. Eng. Manuf. 2021 , 22 , 843–863. [ Google Scholar ] [ CrossRef ]
  • Djatna, T.; Alitu, I.M. An application of association rule mining in total productive maintenance strategy: An analysis and modelling in wooden door manufacturing industry. Procedia Manuf. 2015 , 4 , 336–343. [ Google Scholar ] [ CrossRef ]
  • Chiang, L.H.; Colegrove, L.F. Industrial implementation of on-line multivariate quality control. Chemom. Intell. Lab. Syst. 2007 , 88 , 143–153. [ Google Scholar ] [ CrossRef ]
  • You, D.; Gao, X.; Katayama, S. WPD-PCA-based laser welding process monitoring and defects diagnosis by using FNN and SVM. IEEE Trans. Ind. Electron. 2014 , 62 , 628–636. [ Google Scholar ] [ CrossRef ]
  • Moshat, S.; Datta, S.; Bandyopadhyay, A.; Pal, P. Optimization of CNC end milling process parameters using PCA-based Taguchi method. Int. J. Eng. Sci. Technol. 2010 , 2 , 95–102. [ Google Scholar ] [ CrossRef ]
  • Mei, S.; Wang, Y.; Wen, G. Automatic fabric defect detection with a multi-scale convolutional denoising autoencoder network model. Sensors 2018 , 18 , 1064. [ Google Scholar ] [ CrossRef ] [ PubMed ]
  • Maggipinto, M.; Beghi, A.; Susto, G.A. A Deep Convolutional Autoencoder-Based Approach for Anomaly Detection With Industrial, Non-Images, 2-Dimensional Data: A Semiconductor Manufacturing Case Study. IEEE Trans. Autom. Sci. Eng. 2022 . [ Google Scholar ] [ CrossRef ]
  • Yang, Z.; Gjorgjevikj, D.; Long, J.; Zi, Y.; Zhang, S.; Li, C. Sparse autoencoder-based multi-head deep neural networks for machinery fault diagnostics with detection of novelties. Chin. J. Mech. Eng. 2021 , 34 , 54. [ Google Scholar ] [ CrossRef ]
  • Cheng, R.C.; Chen, K.S. Ball bearing multiple failure diagnosis using feature-selected autoencoder model. Int. J. Adv. Manuf. Technol. 2022 , 120 , 4803–4819. [ Google Scholar ] [ CrossRef ]
  • Ramamurthy, M.; Robinson, Y.H.; Vimal, S.; Suresh, A. Auto encoder based dimensionality reduction and classification using convolutional neural networks for hyperspectral images. Microprocess. Microsyst. 2020 , 79 , 103280. [ Google Scholar ] [ CrossRef ]
  • Angelopoulos, A.; Michailidis, E.T.; Nomikos, N.; Trakadas, P.; Hatziefremidis, A.; Voliotis, S.; Zahariadis, T. Tackling faults in the industry 4.0 era—A survey of machine-learning solutions and key aspects. Sensors 2019 , 20 , 109. [ Google Scholar ] [ CrossRef ]
  • de Lima, M.J.; Crovato, C.D.P.; Mejia, R.I.G.; da Rosa Righi, R.; de Oliveira Ramos, G.; da Costa, C.A.; Pesenti, G. HealthMon: An approach for monitoring machines degradation using time-series decomposition, clustering, and metaheuristics. Comput. Ind. Eng. 2021 , 162 , 107709. [ Google Scholar ] [ CrossRef ]
  • Song, W.; Wen, L.; Gao, L.; Li, X. Unsupervised fault diagnosis method based on iterative multi-manifold spectral clustering. IET Collab. Intell. Manuf. 2019 , 1 , 48–55. [ Google Scholar ] [ CrossRef ]
  • Subramaniyan, M.; Skoogh, A.; Muhammad, A.S.; Bokrantz, J.; Johansson, B.; Roser, C. A generic hierarchical clustering approach for detecting bottlenecks in manufacturing. J. Manuf. Syst. 2020 , 55 , 143–158. [ Google Scholar ] [ CrossRef ]
  • Srinivasan, M.; Moon, Y.B. A comprehensive clustering algorithm for strategic analysis of supply chain networks. Comput. Ind. Eng. 1999 , 36 , 615–633. [ Google Scholar ] [ CrossRef ]
  • Das, J.N.; Tiwari, M.K.; Sinha, A.K.; Khanzode, V. Integrated warehouse assignment and carton configuration optimization using deep clustering-based evolutionary algorithms. Expert Syst. Appl. 2023 , 212 , 118680. [ Google Scholar ] [ CrossRef ]
  • Stojanovic, L.; Dinic, M.; Stojanovic, N.; Stojadinovic, A. Big-data-driven anomaly detection in industry (4.0): An approach and a case study. In Proceedings of the 2016 IEEE International Conference on Big Data (Big Data), Washington, DC, USA, 5–8 December 2016; pp. 1647–1652. [ Google Scholar ]
  • Saldivar, A.A.F.; Goh, C.; Li, Y.; Chen, Y.; Yu, H. Identifying smart design attributes for Industry 4.0 customization using a clustering Genetic Algorithm. In Proceedings of the 2016 22nd International Conference on Automation and Computing (ICAC), Colchester, UK, 7–8 September 2016; pp. 408–414. [ Google Scholar ]
  • Chen, W.C.; Tseng, S.S.; Wang, C.Y. A novel manufacturing defect detection method using association rule mining techniques. Expert Syst. Appl. 2005 , 29 , 807–815. [ Google Scholar ] [ CrossRef ]
  • Shorten, C.; Khoshgoftaar, T.M. A survey on image data augmentation for deep learning. J. Big Data 2019 , 6 , 60. [ Google Scholar ] [ CrossRef ]
  • Iwana, B.K.; Uchida, S. An empirical survey of data augmentation for time series classification with neural networks. PLoS ONE 2021 , 16 , e0254841. [ Google Scholar ] [ CrossRef ]
  • Goodfellow, I.; Pouget-Abadie, J.; Mirza, M.; Xu, B.; Warde-Farley, D.; Ozair, S.; Courville, A.; Bengio, Y. Generative adversarial networks. Commun. ACM 2020 , 63 , 139–144. [ Google Scholar ] [ CrossRef ]
  • Kingma, D.P.; Welling, M. Auto-encoding variational bayes. arXiv 2013 , arXiv:1312.6114. [ Google Scholar ]
  • Wong, S.C.; Gatt, A.; Stamatescu, V.; McDonnell, M.D. Understanding data augmentation for classification: When to warp? In Proceedings of the 2016 International Conference on Digital Image Computing: Techniques and Applications (DICTA), Gold Coast, Australia, 30 November–2 December 2016; pp. 1–6. [ Google Scholar ]
  • Berthelot, D.; Carlini, N.; Goodfellow, I.; Papernot, N.; Oliver, A.; Raffel, C.A. Mixmatch: A holistic approach to semi-supervised learning. Adv. Neural Inf. Process. Syst. 2019 , 32 , 5049–5059. [ Google Scholar ]
  • Sohn, K.; Berthelot, D.; Carlini, N.; Zhang, Z.; Zhang, H.; Raffel, C.A.; Cubuk, E.D.; Kurakin, A.; Li, C.L. Fixmatch: Simplifying semi-supervised learning with consistency and confidence. Adv. Neural Inf. Process. Syst. 2020 , 33 , 596–608. [ Google Scholar ]
  • Yang, X.; Song, Z.; King, I.; Xu, Z. A Survey on Deep Semi-supervised Learning. arXiv 2021 , arXiv:2103.00550. [ Google Scholar ] [ CrossRef ]
  • Sajjadi, M.; Javanmardi, M.; Tasdizen, T. Regularization with stochastic transformations and perturbations for deep semi-supervised learning. Adv. Neural Inf. Process. Syst. 2016 , 29 , 1171–1179. [ Google Scholar ]
  • Tarvainen, A.; Valpola, H. Mean teachers are better role models: Weight-averaged consistency targets improve semi-supervised deep learning results. Adv. Neural Inf. Process. Syst. 2017 , 30 , 1195–1204. [ Google Scholar ]
  • Li, X.; Jia, X.; Yang, Q.; Lee, J. Quality analysis in metal additive manufacturing with deep learning. J. Intell. Manuf. 2020 , 31 , 2003–2017. [ Google Scholar ] [ CrossRef ]
  • Zhao, B.; Zhang, X.; Zhan, Z.; Wu, Q.; Zhang, H. A Novel Semi-Supervised Graph-Guided Approach for Intelligent Health State Diagnosis of a 3-PRR Planar Parallel Manipulator. IEEE/ASME Trans. Mechatron. 2022 , 27 , 4786–4797. [ Google Scholar ] [ CrossRef ]
  • Gilmer, J.; Schoenholz, S.S.; Riley, P.F.; Vinyals, O.; Dahl, G.E. Neural message passing for quantum chemistry. In Proceedings of the International Conference on Machine Learning, Sydney, Australia, 6–11 August 2017; pp. 1263–1272. [ Google Scholar ]
  • Kipf, T.N.; Welling, M. Semi-supervised classification with graph convolutional networks. arXiv 2016 , arXiv:1609.02907. [ Google Scholar ]
  • Serradilla, O.; Zugasti, E.; Ramirez de Okariz, J.; Rodriguez, J.; Zurutuza, U. Adaptable and explainable predictive maintenance: Semi-supervised deep learning for anomaly detection and diagnosis in press machine data. Appl. Sci. 2021 , 11 , 7376. [ Google Scholar ] [ CrossRef ]
  • Song, J.; Lee, Y.C.; Lee, J. Deep generative model with time series-image encoding for manufacturing fault detection in die casting process. J. Intell. Manuf. 2022 , 1–14. [ Google Scholar ] [ CrossRef ]
  • Springenberg, J.T. Unsupervised and semi-supervised learning with categorical generative adversarial networks. arXiv 2015 , arXiv:1511.06390. [ Google Scholar ]
  • Salimans, T.; Goodfellow, I.; Zaremba, W.; Cheung, V.; Radford, A.; Chen, X. Improved techniques for training gans. Adv. Neural Inf. Process. Syst. 2016 , 29 , 2234–2242. [ Google Scholar ]
  • Kingma, D.P.; Mohamed, S.; Jimenez Rezende, D.; Welling, M. Semi-supervised learning with deep generative models. Adv. Neural Inf. Process. Syst. 2014 , 27 , 3581–3589. [ Google Scholar ]
  • Sutton, R.S.; Barto, A.G. Reinforcement Learning: An Introduction ; MIT Press: Cambridge, MA, USA, 2018. [ Google Scholar ]
  • May, M.C.; Overbeck, L.; Wurster, M.; Kuhnle, A.; Lanza, G. Foresighted digital twin for situational agent selection in production control. Procedia CIRP 2021 , 99 , 27–32. [ Google Scholar ] [ CrossRef ]
  • May, M.C.; Kiefer, L.; Kuhnle, A.; Stricker, N.; Lanza, G. Decentralized multi-agent production control through economic model bidding for matrix production systems. Procedia Cirp 2021 , 96 , 3–8. [ Google Scholar ] [ CrossRef ]
  • Yao, M. Breakthrough Research In Reinforcement Learning From 2019. 2019. Available online: https://www.topbots.com/top-ai-reinforcement-learning-research-papers-2019 (accessed on 1 September 2022).
  • Gao, R.X.; Wang, L.; Helu, M.; Teti, R. Big data analytics for smart factories of the future. CIRP Ann. 2020 , 69 , 668–692. [ Google Scholar ] [ CrossRef ]
  • Kozjek, D.; Vrabič, R.; Kralj, D.; Butala, P. Interpretative identification of the faulty conditions in a cyclic manufacturing process. J. Manuf. Syst. 2017 , 43 , 214–224. [ Google Scholar ] [ CrossRef ] [ Green Version ]
  • Wen, Q.; Sun, L.; Yang, F.; Song, X.; Gao, J.; Wang, X.; Xu, H. Time series data augmentation for deep learning: A survey. arXiv 2020 , arXiv:2002.12478. [ Google Scholar ]
  • Pan, S.J.; Yang, Q. A survey on transfer learning. IEEE Trans. Knowl. Data Eng. 2009 , 22 , 1345–1359. [ Google Scholar ] [ CrossRef ]
  • Zhang, H.; Cisse, M.; Dauphin, Y.N.; Lopez-Paz, D. mixup: Beyond empirical risk minimization. arXiv 2017 , arXiv:1710.09412. [ Google Scholar ]
  • Bao, J.; Chen, D.; Wen, F.; Li, H.; Hua, G. CVAE-GAN: Fine-grained image generation through asymmetric training. In Proceedings of the IEEE International Conference on Computer Vision, Venice, Italy, 22–29 October 2017; pp. 2745–2754. [ Google Scholar ]
  • Yoon, J.; Jarrett, D.; Van der Schaar, M. Time-series generative adversarial networks. Adv. Neural Inf. Process. Syst. 2019 , 32 , 5508–5518. [ Google Scholar ]
  • McMahan, B.; Moore, E.; Ramage, D.; Hampson, S.; y Arcas, B.A. Communication-efficient learning of deep networks from decentralized data. In Proceedings of the Artificial Intelligence and Statistics, Fort Lauderdale, FL, USA, 20–22 April 2017; pp. 1273–1282. [ Google Scholar ]
  • Cheng, Y.; Wang, D.; Zhou, P.; Zhang, T. Model compression and acceleration for deep neural networks: The principles, progress, and challenges. IEEE Signal Process. Mag. 2018 , 35 , 126–136. [ Google Scholar ] [ CrossRef ]
  • Gou, J.; Yu, B.; Maybank, S.J.; Tao, D. Knowledge distillation: A survey. Int. J. Comput. Vis. 2021 , 129 , 1789–1819. [ Google Scholar ] [ CrossRef ]
  • Hinton, G.; Vinyals, O.; Dean, J. Distilling the knowledge in a neural network. arXiv 2015 , arXiv:1503.02531. [ Google Scholar ]
  • Schlimmer, J.C.; Granger, R.H. Incremental learning from noisy data. Mach. Learn. 1986 , 1 , 317–354. [ Google Scholar ] [ CrossRef ]
  • Gama, J.; Žliobaitė, I.; Bifet, A.; Pechenizkiy, M.; Bouchachia, A. A survey on concept drift adaptation. ACM Comput. Surv. 2014 , 46 , 44. [ Google Scholar ] [ CrossRef ]
  • Baier, L.; Jöhren, F.; Seebacher, S. Challenges in the Deployment and Operation of Machine Learning in Practice. In Proceedings of the ECIS 2019 27th European Conference on Information Systems, Stockholm, Sweden, 8–14 June 2019. [ Google Scholar ]
  • Canbek, G. Gaining insights in datasets in the shade of “garbage in, garbage out” rationale: Feature space distribution fitting. Wiley Interdiscip. Rev. Data Min. Knowl. Discov. 2022 , 12 , e1456. [ Google Scholar ] [ CrossRef ]
  • Moges, T.; Yang, Z.; Jones, K.; Feng, S.; Witherell, P.; Lu, Y. Hybrid modeling approach for melt-pool prediction in laser powder bed fusion additive manufacturing. J. Comput. Inf. Sci. Eng. 2021 , 21 , 050902. [ Google Scholar ] [ CrossRef ]
  • Colledani, M. Statistical Process Control. In CIRP Encyclopedia of Production Engineering ; Laperrière, L., Reinhart, G., Eds.; Springer: Berlin/Heidelberg, Germany, 2014; pp. 1150–1157. [ Google Scholar ] [ CrossRef ]
  • Abdar, M.; Pourpanah, F.; Hussain, S.; Rezazadegan, D.; Liu, L.; Ghavamzadeh, M.; Fieguth, P.; Cao, X.; Khosravi, A.; Acharya, U.R.; et al. A review of uncertainty quantification in deep learning: Techniques, applications and challenges. Inf. Fusion 2021 , 76 , 243–297. [ Google Scholar ] [ CrossRef ]
  • Yong, B.X.; Brintrup, A. Multi Agent System for Machine Learning Under Uncertainty in Cyber Physical Manufacturing System. In Service Oriented, Holonic and Multi-Agent Manufacturing Systems for Industry of the Future ; Borangiu, T., Trentesaux, D., Leitão, P., Giret Boggino, A., Botti, V., Eds.; Studies in Computational Intelligence; Springer International Publishing: Cham, Switzerland, 2020; Volume 853, pp. 244–257. [ Google Scholar ] [ CrossRef ]
  • Tavazza, F.; DeCost, B.; Choudhary, K. Uncertainty Prediction for Machine Learning Models of Material Properties. ACS Omega 2021 , 6 , 32431–32440. [ Google Scholar ] [ CrossRef ]
  • Arkov, V. Uncertainty Estimation in Machine Learning. arXiv 2022 . [ Google Scholar ] [ CrossRef ]
  • Zhang, B. Data-Driven Uncertainty Analysis in Neural Networks with Applications to Manufacturing Process Monitoring. Ph.D. Thesis, Purdue University Graduate School, West Lafayette, IN, USA, 2021. [ Google Scholar ] [ CrossRef ]
  • Zhang, B.; Shin, Y.C. A probabilistic neural network for uncertainty prediction with applications to manufacturing process monitoring. Appl. Soft Comput. 2022 , 124 , 108995. [ Google Scholar ] [ CrossRef ]
  • Lee, S.; Kim, S.B. Time-adaptive support vector data description for nonstationary process monitoring. Eng. Appl. Artif. Intell. 2018 , 68 , 18–31. [ Google Scholar ] [ CrossRef ]
  • Gaikwad, A.; Yavari, R.; Montazeri, M.; Cole, K.; Bian, L.; Rao, P. Toward the digital twin of additive manufacturing: Integrating thermal simulations, sensing, and analytics to detect process faults. IISE Trans. 2020 , 52 , 1204–1217. [ Google Scholar ] [ CrossRef ]
  • Zhang, C.J.; Zhang, Y.C.; Han, Y. Industrial cyber-physical system driven intelligent prediction model for converter end carbon content in steelmaking plants. J. Ind. Inf. Integr. 2022 , 28 , 100356. [ Google Scholar ] [ CrossRef ]
  • Ning, F.; Shi, Y.; Cai, M.; Xu, W.; Zhang, X. Manufacturing cost estimation based on the machining process and deep-learning method. J. Manuf. Syst. 2020 , 56 , 11–22. [ Google Scholar ] [ CrossRef ]
  • Westphal, E.; Seitz, H. Machine learning for the intelligent analysis of 3D printing conditions using environmental sensor data to support quality assurance. Addit. Manuf. 2022 , 50 , 102535. [ Google Scholar ] [ CrossRef ]
  • Qin, J.; Wang, Y.; Ding, J.; Williams, S. Optimal droplet transfer mode maintenance for wire+ arc additive manufacturing (WAAM) based on deep learning. J. Intell. Manuf. 2022 , 33 , 2179–2191. [ Google Scholar ] [ CrossRef ]
  • Lapointe, S.; Guss, G.; Reese, Z.; Strantza, M.; Matthews, M.; Druzgalski, C. Photodiode-based machine learning for optimization of laser powder bed fusion parameters in complex geometries. Addit. Manuf. 2022 , 53 , 102687. [ Google Scholar ] [ CrossRef ]
  • Zhang, T.; Zhang, C.; Hu, T. A robotic grasp detection method based on auto-annotated dataset in disordered manufacturing scenarios. Robot. Comput. Integr. Manuf. 2022 , 76 , 102329. [ Google Scholar ] [ CrossRef ]
  • Singh, S.A.; Desai, K. Automated surface defect detection framework using machine vision and convolutional neural networks. J. Intell. Manuf. 2022 , 1–17. [ Google Scholar ] [ CrossRef ]
  • Duan, J.; Hu, C.; Zhan, X.; Zhou, H.; Liao, G.; Shi, T. MS-SSPCANet: A powerful deep learning framework for tool wear prediction. Robot. Comput. Integr. Manuf. 2022 , 78 , 102391. [ Google Scholar ] [ CrossRef ]
  • Gao, K.; Chen, H.; Zhang, X.; Ren, X.; Chen, J.; Chen, X. A novel material removal prediction method based on acoustic sensing and ensemble XGBoost learning algorithm for robotic belt grinding of Inconel 718. Int. J. Adv. Manuf. Technol. 2019 , 105 , 217–232. [ Google Scholar ] [ CrossRef ]
  • Gawade, V.; Singh, V.; Guo, W. Leveraging simulated and empirical data-driven insight to supervised-learning for porosity prediction in laser metal deposition. J. Manuf. Syst. 2022 , 62 , 875–885. [ Google Scholar ] [ CrossRef ]
  • Aminzadeh, M.; Kurfess, T.R. Online quality inspection using Bayesian classification in powder-bed additive manufacturing from high-resolution visual camera images. J. Intell. Manuf. 2019 , 30 , 2505–2523. [ Google Scholar ] [ CrossRef ]
  • Priore, P.; Ponte, B.; Puente, J.; Gómez, A. Learning-based scheduling of flexible manufacturing systems using ensemble methods. Comput. Ind. Eng. 2018 , 126 , 282–291. [ Google Scholar ] [ CrossRef ]
  • Guo, S.; Chen, M.; Abolhassani, A.; Kalamdani, R.; Guo, W.G. Identifying manufacturing operational conditions by physics-based feature extraction and ensemble clustering. J. Manuf. Syst. 2021 , 60 , 162–175. [ Google Scholar ] [ CrossRef ]
  • Kim, J.; Ko, J.; Choi, H.; Kim, H. Printed circuit board defect detection using deep learning via a skip-connected convolutional autoencoder. Sensors 2021 , 21 , 4968. [ Google Scholar ] [ CrossRef ]
  • Jakubowski, J.; Stanisz, P.; Bobek, S.; Nalepa, G.J. Anomaly Detection in Asset Degradation Process Using Variational Autoencoder and Explanations. Sensors 2021 , 22 , 291. [ Google Scholar ] [ CrossRef ]
  • Sarita, K.; Devarapalli, R.; Kumar, S.; Malik, H.; Garcia Marquez, F.P.; Rai, P. Principal component analysis technique for early fault detection. J. Intell. Fuzzy Syst. 2022 , 42 , 861–872. [ Google Scholar ] [ CrossRef ]
  • Zheng, X.; Wang, H.; Chen, J.; Kong, Y.; Zheng, S. A generic semi-supervised deep learning-based approach for automated surface inspection. IEEE Access 2020 , 8 , 114088–114099. [ Google Scholar ] [ CrossRef ]
  • Zhang, W.; Lang, J. Semi-supervised training for positioning of welding seams. Sensors 2021 , 21 , 7309. [ Google Scholar ] [ CrossRef ]
  • Chen, C.; Liu, Y.; Kumar, M.; Qin, J.; Ren, Y. Energy consumption modelling using deep learning embedded semi-supervised learning. Comput. Ind. Eng. 2019 , 135 , 757–765. [ Google Scholar ] [ CrossRef ]
  • Jun, J.h.; Chang, T.W.; Jun, S. Quality prediction and yield improvement in process manufacturing based on data analytics. Processes 2020 , 8 , 1068. [ Google Scholar ] [ CrossRef ]
  • Shim, J.; Cho, S.; Kum, E.; Jeong, S. Adaptive fault detection framework for recipe transition in semiconductor manufacturing. Comput. Ind. Eng. 2021 , 161 , 107632. [ Google Scholar ] [ CrossRef ]
  • Qiu, C.; Li, K.; Li, B.; Mao, X.; He, S.; Hao, C.; Yin, L. Semi-supervised graph convolutional network to predict position-and speed-dependent tool tip dynamics with limited labeled data. Mech. Syst. Signal Process. 2022 , 164 , 108225. [ Google Scholar ] [ CrossRef ]
  • Guo, Y.; Lu, W.F.; Fuh, J.Y.H. Semi-supervised deep learning based framework for assessing manufacturability of cellular structures in direct metal laser sintering process. J. Intell. Manuf. 2021 , 32 , 347–359. [ Google Scholar ] [ CrossRef ]
  • Okaro, I.A.; Jayasinghe, S.; Sutcliffe, C.; Black, K.; Paoletti, P.; Green, P.L. Automatic fault detection for laser powder-bed fusion using semi-supervised machine learning. Addit. Manuf. 2019 , 27 , 42–53. [ Google Scholar ] [ CrossRef ]
  • Lee, H.; Kim, H. Semi-supervised multi-label learning for classification of wafer bin maps with mixed-type defect patterns. IEEE Trans. Semicond. Manuf. 2020 , 33 , 653–662. [ Google Scholar ] [ CrossRef ]
  • Liu, J.; Song, K.; Feng, M.; Yan, Y.; Tu, Z.; Zhu, L. Semi-supervised anomaly detection with dual prototypes autoencoder for industrial surface inspection. Opt. Lasers Eng. 2021 , 136 , 106324. [ Google Scholar ] [ CrossRef ]
  • Verstraete, D.; Droguett, E.; Modarres, M. A deep adversarial approach based on multi-sensor fusion for semi-supervised remaining useful life prognostics. Sensors 2019 , 20 , 176. [ Google Scholar ] [ CrossRef ]
  • Souza, M.L.H.; da Costa, C.A.; de Oliveira Ramos, G.; da Rosa Righi, R. A feature identification method to explain anomalies in condition monitoring. Comput. Ind. 2021 , 133 , 103528. [ Google Scholar ] [ CrossRef ]
  • Lee, Y.H.; Lee, S. Deep reinforcement learning based scheduling within production plan in semiconductor fabrication. Expert Syst. Appl. 2022 , 191 , 116222. [ Google Scholar ] [ CrossRef ]
  • Marchesano, M.G.; Guizzi, G.; Santillo, L.C.; Vespoli, S. A deep reinforcement learning approach for the throughput control of a flow-shop production system. IFAC-PapersOnLine 2021 , 54 , 61–66. [ Google Scholar ] [ CrossRef ]
  • Yang, H.; Li, W.; Wang, B. Joint optimization of preventive maintenance and production scheduling for multi-state production systems based on reinforcement learning. Reliab. Eng. Syst. Saf. 2021 , 214 , 107713. [ Google Scholar ] [ CrossRef ]
  • Schneckenreither, M.; Haeussler, S.; Peiró, J. Average reward adjusted deep reinforcement learning for order release planning in manufacturing. Knowl.-Based Syst. 2022 , 247 , 108765. [ Google Scholar ] [ CrossRef ]
  • Tsai, Y.T.; Lee, C.H.; Liu, T.Y.; Chang, T.J.; Wang, C.S.; Pawar, S.J.; Huang, P.H.; Huang, J.H. Utilization of a reinforcement learning algorithm for the accurate alignment of a robotic arm in a complete soft fabric shoe tongues automation process. J. Manuf. Syst. 2020 , 56 , 501–513. [ Google Scholar ] [ CrossRef ]
  • Klar, M.; Glatt, M.; Aurich, J.C. An implementation of a reinforcement learning based algorithm for factory layout planning. Manuf. Lett. 2021 , 30 , 1–4. [ Google Scholar ] [ CrossRef ]
  • Huang, J.; Chang, Q.; Arinez, J. Deep reinforcement learning based preventive maintenance policy for serial production lines. Expert Syst. Appl. 2020 , 160 , 113701. [ Google Scholar ] [ CrossRef ]
  • Zhang, H.; Peng, Q.; Zhang, J.; Gu, P. Planning for automatic product assembly using reinforcement learning. Comput. Ind. 2021 , 130 , 103471. [ Google Scholar ] [ CrossRef ]
  • Kuhnle, A.; May, M.C.; Schaefer, L.; Lanza, G. Explainable reinforcement learning in production control of job shop manufacturing system. Int. J. Prod. Res. 2021 , 60 , 5812–5834. [ Google Scholar ] [ CrossRef ]
  • Valet, A.; Altenmüller, T.; Waschneck, B.; May, M.C.; Kuhnle, A.; Lanza, G. Opportunistic maintenance scheduling with deep reinforcement learning. J. Manuf. Syst. 2022 , 64 , 518–534. [ Google Scholar ] [ CrossRef ]
  • Huang, J.; Su, J.; Chang, Q. Graph neural network and multi-agent reinforcement learning for machine-process-system integrated control to optimize production yield. J. Manuf. Syst. 2022 , 64 , 81–93. [ Google Scholar ] [ CrossRef ]
  • Zimmerling, C.; Poppe, C.; Stein, O.; Kärger, L. Optimisation of manufacturing process parameters for variable component geometries using reinforcement learning. Mater. Des. 2022 , 214 , 110423. [ Google Scholar ] [ CrossRef ]
  • Guo, F.; Zhou, X.; Liu, J.; Zhang, Y.; Li, D.; Zhou, H. A reinforcement learning decision model for online process parameters optimization from offline data in injection molding. Appl. Soft Comput. J. 2019 , 85 , 105828. [ Google Scholar ] [ CrossRef ]
  • Hofmann, C.; Liu, X.; May, M.; Lanza, G. Hybrid Monte Carlo tree search based multi-objective scheduling. Prod. Eng. 2022 , 17 , 133–144. [ Google Scholar ] [ CrossRef ]

Click here to enlarge figure

LevelKnow-WhatKnow-WhyKnow-WhenKnow-How
ProductDefect detection [ ], Product design [ ]Correlation between process and quality [ ]Quality prediction [ ]Quality improvement [ ]
ProcessProcess monitoring [ ]Root cause analysis of process failure [ ], Process modelling [ ]Process fault prediction [ ], Process characteristics prediction [ ]Self-optimizing process planning [ ], Adaptive process control [ ]
MachineMachine tool monitoring [ ]Fault diagnosis [ ], Downtime prediction [ ]RUL prediction [ ], Tool wear prediction [ ]Adaptive compensation of errors [ , ],
SystemAnomaly detection [ ]Root cause analysis of production disturbances or casual-relationship discovery  [ ]Production performance prediction [ ], Human behavior control [ ]Predictive scheduling [ ], Adaptive production control [ ]
ItemDescription
Query string( “manufacturing” OR “industry 4.0” OR “industrie 4.0” ) AND ( “machine learning” OR “deep learning” OR “supervised learning” OR “semi-supervised learning” OR “unsupervised learning” OR “reinforcement learning” )
YearPublished from 2018 to 2022
LanguageEnglish
Subject/Research areaEngineering
Document typeArticle
Data TypeHandcrafted FeaturesAutomatic Features
Image dataLBP [ ], SIFT [ ], HOG [ ]ICA, CNNs
Tabular datafeature selectionPCA, ICA, ANNs
Time series dataTime domain: mean, min, max, etc.
Frequency domain: power spectrum [ ]
Time-frequency domain: DWT [ ], STFT [ ]
ICA, RNNs
Text dataBag of Words (BoW) [ ]Word2vec [ ]
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.

Share and Cite

Chen, T.; Sampath, V.; May, M.C.; Shan, S.; Jorg, O.J.; Aguilar Martín, J.J.; Stamer, F.; Fantoni, G.; Tosello, G.; Calaon, M. Machine Learning in Manufacturing towards Industry 4.0: From ‘For Now’ to ‘Four-Know’. Appl. Sci. 2023 , 13 , 1903. https://doi.org/10.3390/app13031903

Chen T, Sampath V, May MC, Shan S, Jorg OJ, Aguilar Martín JJ, Stamer F, Fantoni G, Tosello G, Calaon M. Machine Learning in Manufacturing towards Industry 4.0: From ‘For Now’ to ‘Four-Know’. Applied Sciences . 2023; 13(3):1903. https://doi.org/10.3390/app13031903

Chen, Tingting, Vignesh Sampath, Marvin Carl May, Shuo Shan, Oliver Jonas Jorg, Juan José Aguilar Martín, Florian Stamer, Gualtiero Fantoni, Guido Tosello, and Matteo Calaon. 2023. "Machine Learning in Manufacturing towards Industry 4.0: From ‘For Now’ to ‘Four-Know’" Applied Sciences 13, no. 3: 1903. https://doi.org/10.3390/app13031903

Article Metrics

Article access statistics, further information, mdpi initiatives, follow mdpi.

MDPI

Subscribe to receive issue release notifications and newsletters from MDPI journals

  • DOI: 10.1080/21693277.2016.1192517
  • Corpus ID: 52037185

Machine learning in manufacturing: advantages, challenges, and applications

  • Thorsten Wuest , Daniel Weimer , +1 author K. Thoben
  • Published 1 January 2016
  • Engineering, Computer Science
  • Production & Manufacturing Research

897 Citations

Analysis of non-traditional machining processes using machine learning, identification and characterization of challenges in the future of manufacturing for the application of machine learning, applications of artificial intelligence in engineering and manufacturing: a systematic review.

  • Highly Influenced

An Example of Machine Learning Applied in Additive Manufacturing

Artificial intelligence in advanced manufacturing: current status and future outlook, an integrated machine learning model for manufacturing industry.

  • 11 Excerpts

Machine learning techniques in additive manufacturing: a state of the art review on design, processes and production control

Machine learning in precision manufacturing: a collaborative computer and mechanical engineering perspective, machine learning for industrial applications: a comprehensive literature review, machine learning in manufacturing towards industry 4.0: from ‘for now’ to ‘four-know’, 119 references, machine learning approaches to manufacturing, machine-learning techniques and their applications in manufacturing.

  • Highly Influential
  • 19 Excerpts

Machine Learning Algorithms in Heavy Process Manufacturing

Recognizing yield patterns through hybrid applications of machine learning techniques, ai and machine learning techniques for managing complexity, changes and uncertainties in manufacturing, using inductive machine learning to support decision making in machining processes, an approach to monitoring quality in manufacturing using supervised machine learning on product state data, predicting defects in disk drive manufacturing: a case study in high-dimensional classification, a step towards intelligent manufacturing: modelling and monitoring of manufacturing processes through artificial neural networks, hybrid ai approaches to intelligent manufacturing, related papers.

Showing 1 through 3 of 0 Related Papers

IEEE Account

  • Change Username/Password
  • Update Address

Purchase Details

  • Payment Options
  • Order History
  • View Purchased Documents

Profile Information

  • Communications Preferences
  • Profession and Education
  • Technical Interests
  • US & Canada: +1 800 678 4333
  • Worldwide: +1 732 981 0060
  • Contact & Support
  • About IEEE Xplore
  • Accessibility
  • Terms of Use
  • Nondiscrimination Policy
  • Privacy & Opting Out of Cookies

A not-for-profit organization, IEEE is the world's largest technical professional organization dedicated to advancing technology for the benefit of humanity. © Copyright 2024 IEEE - All rights reserved. Use of this web site signifies your agreement to the terms and conditions.

Suggestions or feedback?

MIT News | Massachusetts Institute of Technology

  • Machine learning
  • Sustainability
  • Black holes
  • Classes and programs

Departments

  • Aeronautics and Astronautics
  • Brain and Cognitive Sciences
  • Architecture
  • Political Science
  • Mechanical Engineering

Centers, Labs, & Programs

  • Abdul Latif Jameel Poverty Action Lab (J-PAL)
  • Picower Institute for Learning and Memory
  • Lincoln Laboratory
  • School of Architecture + Planning
  • School of Engineering
  • School of Humanities, Arts, and Social Sciences
  • Sloan School of Management
  • School of Science
  • MIT Schwarzman College of Computing

Study examines how machine learning boosts manufacturing

Two images of a defective syringe stopper. The top one, in visible light, shows a small pit in one end. The bottom one has a color highlight indicating how a machine sees the same defect.

Previous image Next image

Which companies deploy machine intelligence (MI) and data analytics successfully for manufacturing and operations? Why are those leading adopters so far ahead — and what can others learn from them?

MIT Machine Intelligence for Manufacturing and Operations (MIMO) and McKinsey and Company have the answer, revealed in a first-of-its-kind  Harvard Business Review article. The piece chronicles how MIMO and McKinsey partnered for a sweeping 100-company survey to explain how high-performing companies successfully wield machine learning technologies (and where others could improve).

Created by the MIT Leaders for Global Operations (LGO) program, MIMO is a research and educational program designed to boost industrial competitiveness by accelerating machine intelligence’s deployment and understanding. The goal is to “find the shortest path from data to impact,” says managing director Bruce Lawler SM ’92.

As such, the McKinsey project encapsulates MIMO’s mission of demystifying effective machine-learning use. The survey studied companies across sectors, probing their digital, data analytics, and MI tech usage; goals (ranging from efficiency to customer experience to environmental impact); and tracking. Respondents were drawn from MIT and McKinsey’s wide-ranging networks.

“The study is probably the broadest that anybody has done in the space: 100 companies and 21 performance indicators,” says Vijay D’Silva SM ’92, a senior partner at McKinsey and Company who collaborated with MIMO on the project.

Overall, those who extracted the biggest gains from digital technologies had strong governance, deployment, partnerships, MI-trained employees, and data availability. They also spent up to 60 percent more on machine learning than their competitors.

One standout company is biopharmaceutical giant Amgen, which uses deep-learning image-augmentation to maximize efficiency of visual inspection systems. This technique pays off by increasing particle detection by 70 percent and reduces the need for manual inspections. AJ Tan PhD ’19, MBA ’21, SM ’21 was instrumental in the effort: He wrote his LGO thesis about the project, winning last year’s Best Thesis Award at graduation.

Lawler says Tan’s work exemplifies MIMO’s mission of bridging the gap between machine learning and manufacturing before it’s too late.

“We saw a need to bring these powerful new technologies into manufacturing more quickly. In the next 20 to 30 years, we’re going to add another 3 billion people to the globe, and they're going to want the lifestyles that you and I enjoy. Those typically require manufactured things. How do we get better at translating natural resources into human well-being? One of the big vehicles for doing that is manufacturing, and one of the newest tools is AI and machine learning,” he says.

For the survey, MIMO issued each company a 30-page playbook analyzing how they compared against other companies across a range of categories and metrics, from strategy to governance to data execution. This will help them to target areas of opportunity or where to invest. Lawler hopes that this will be a longitudinal study with a wider scope and playbook each year — a vast but impactful undertaking with LGO brainpower as the driving engine.

“MIT was hugely important and critical to the piece of work and an amazing partner for us. We had talented MIT students on the team who did most of the analysis jointly with McKinsey, which improved the quality of the work as a result,” says D’Silva.

This collaborative approach is central to MIMO’s philosophy as an information convener and partner for the private sector. The goal is drive “an effective transformation in industries that achieve not just technical goals, but also business goals and social goals,” says Duane Boning, engineering faculty director at MIT LGO, and faculty lead at MIMO.

This fusion of research and collaboration is the logical next step for LGO, he says, because it’s always been at the forefront of problem-solving for global operations. Machine learning is definitely the latest big knowledge gap for many businesses, but not the first, and MIMO can teach companies how to apply it.

“[I liken] it to 30 years ago when LGO got started, when it was all about lean manufacturing principles. About 15 years ago, it was the supply chain idea. That sparked us to think — not just for our LGO students, but for the benefit of industry more broadly — for understanding this big change, for facilitating it, for doing research and getting connections into other actual research activities, we need some effort to catalyze this,” Boning says. “That’s [MIMO’s] real excitement: What are ideas that work? What are methodologies that work? What are technologies that work? And LGO students, in some sense, are the perfect vehicle to discover some of that.”

Share this news article on:

Related links.

  • Machine Intelligence for Manufacturing and Operations
  • Leaders for Global Operations
  • MIT Sloan School of Management

Related Topics

  • Artificial intelligence
  • Digital technology
  • Computer vision
  • Computer science and technology
  • Manufacturing
  • Business and management
  • Technology and society
  • Leaders for Global Operations (LGO)

Related Articles

Delta Electronics Professor of Computer Science Regina Barzilay (left) gives a tutorial on the fundamentals of machine learning.

Applying machine learning to challenges in the pharmaceutical industry

"As the momentum builds, developers will be able to set up a ML [machine learning] apparatus just as they set up a database," says Max Kanter, CEO at Feature Labs. "It will be that simple."

ML 2.0: Machine learning for many

To solve complex problems, data scientists must shepherd their raw data through a series of steps, each one requiring many human-driven decisions. The last step in the process, deciding on a modeling technique, is particularly crucial.

Auto-tuning data science: New research streamlines machine learning

Previous item Next item

More MIT News

Five square slices show glimpse of LLMs, and the final one is green with a thumbs up.

Study: Transparency is often lacking in datasets used to train large language models

Read full story →

Charalampos Sampalis wears a headset while looking at the camera

How MIT’s online resources provide a “highly motivating, even transformative experience”

A small model shows a wooden man in a sparse room, with dramatic lighting from the windows.

Students learn theater design through the power of play

Illustration of 5 spheres with purple and brown swirls. Below that, a white koala with insets showing just its head. Each koala has one purple point on either the forehead, ears, and nose.

A framework for solving parabolic partial differential equations

Feyisayo Eweje wears lab coat and gloves while sitting in a lab.

Designing better delivery for medical therapies

Saeed Miganeh poses standing in a hallway. A street scene is visible through windows in the background

Making a measurable economic impact

  • More news on MIT News homepage →

Massachusetts Institute of Technology 77 Massachusetts Avenue, Cambridge, MA, USA

  • Map (opens in new window)
  • Events (opens in new window)
  • People (opens in new window)
  • Careers (opens in new window)
  • Accessibility
  • Social Media Hub
  • MIT on Facebook
  • MIT on YouTube
  • MIT on Instagram

arXiv's Accessibility Forum starts next month!

Help | Advanced Search

Condensed Matter > Materials Science

Title: consistent machine learning for topology optimization with microstructure-dependent neural network material models.

Abstract: Additive manufacturing methods together with topology optimization have enabled the creation of multiscale structures with controlled spatially-varying material microstructure. However, topology optimization or inverse design of such structures in the presence of nonlinearities remains a challenge due to the expense of computational homogenization methods and the complexity of differentiably parameterizing the microstructural response. A solution to this challenge lies in machine learning techniques that offer efficient, differentiable mappings between the material response and its microstructural descriptors. This work presents a framework for designing multiscale heterogeneous structures with spatially varying microstructures by merging a homogenization-based topology optimization strategy with a consistent machine learning approach grounded in hyperelasticity theory. We leverage neural architectures that adhere to critical physical principles such as polyconvexity, objectivity, material symmetry, and thermodynamic consistency to supply the framework with a reliable constitutive model that is dependent on material microstructural descriptors. Our findings highlight the potential of integrating consistent machine learning models with density-based topology optimization for enhancing design optimization of heterogeneous hyperelastic structures under finite deformations.
Subjects: Materials Science (cond-mat.mtrl-sci); Machine Learning (cs.LG); Numerical Analysis (math.NA)
Cite as: [cond-mat.mtrl-sci]
  (or [cond-mat.mtrl-sci] for this version)
  Focus to learn more arXiv-issued DOI via DataCite

Submission history

Access paper:.

  • Other Formats

license icon

References & Citations

  • Google Scholar
  • Semantic Scholar

BibTeX formatted citation

BibSonomy logo

Bibliographic and Citation Tools

Code, data and media associated with this article, recommenders and search tools.

  • Institution

arXivLabs: experimental projects with community collaborators

arXivLabs is a framework that allows collaborators to develop and share new arXiv features directly on our website.

Both individuals and organizations that work with arXivLabs have embraced and accepted our values of openness, community, excellence, and user data privacy. arXiv is committed to these values and only works with partners that adhere to them.

Have an idea for a project that will add value for arXiv's community? Learn more about arXivLabs .

Machine learning-assisted prediction modeling for anisotropic flexural strength variations in fused filament fabrication of graphene reinforced poly-lactic acid composites

  • Full Research Article
  • Published: 26 August 2024

Cite this article

machine learning in manufacturing research paper

  • Tapish Raj   ORCID: orcid.org/0009-0005-6844-9749 1 ,
  • Amrit Tiwary 1 ,
  • Akash Jain   ORCID: orcid.org/0000-0003-0003-6567 1 ,
  • Gaurang Swarup Sharma 2 ,
  • Prem Prakash Vuppuluri 2 ,
  • Ankit Sahai   ORCID: orcid.org/0000-0001-7333-8967 1 &
  • Rahul Swarup Sharma   ORCID: orcid.org/0000-0001-8874-4685 1  

16 Accesses

Explore all metrics

The objective of this study is to conduct a comparative analysis of various machine learning algorithms on the flexural properties of graphene-reinforced poly-lactic acid fabricated through fused filament fabrication. The selected process parameters include raster orientation (0°, 45°, 90°), layer thickness (0.05 mm, 0.1 mm, 0.15 mm, 0.2 mm, 0.25 mm, 0.3 mm), and feed rate (20 mm/s, 40 mm/s, 60 mm/s). The fabricated specimens underwent flexural testing, and fractography was performed after the testing. The flexural strength variations depicted maximum and minimum values of 129.511 MPa and 59.959 MPa, respectively. Further, the flexural testing data is used for the evaluation of the effectiveness of various machine learning algorithms, namely linear regression, random forest regression, gradient boosting regression, extreme gradient boosting regression, voting regression algorithms, and artificial neural networks. The results show that linear regression outperforms all other alternatives, obtaining a coefficient of determination of 98.9%, as compared to 95.7%, 96.8%, 97.3%, and 97.8%, respectively, for random forest regression, gradient boosting regression, extreme gradient boosting regression, and artificial neural network. Consistently superior performance is observed for linear regression over other performance metrics as well, i.e., mean absolute error and root mean square error. By demonstrating the efficacy of machine learning in conjunction with optimization techniques inspired by nature, this study advances predictive methodology in material science, especially in the field of additive manufacturing.

This is a preview of subscription content, log in via an institution to check access.

Access this article

Subscribe and save.

  • Get 10 units per month
  • Download Article/Chapter or eBook
  • 1 Unit = 1 Article or 1 Chapter
  • Cancel anytime

Price includes VAT (Russian Federation)

Instant access to the full article PDF.

Rent this article via DeepDyve

Institutional subscriptions

machine learning in manufacturing research paper

Similar content being viewed by others

machine learning in manufacturing research paper

Comparing the Predictability of Soft Computing and Statistical Techniques for the Prediction of Tensile Strength of Additively Manufactured Carbon Fiber Polylactic Acid Parts

machine learning in manufacturing research paper

Data-driven prediction on critical mechanical properties of engineered cementitious composites based on machine learning

machine learning in manufacturing research paper

Optimizing flexural strength of fused deposition modelling using supervised machine learning algorithms

Explore related subjects.

  • Artificial Intelligence

Data availability

Data available on request from the authors, upon reasonable request.

Tura AD, Lemu HG, Mamo HB, Santhosh AJ (2023) Prediction of tensile strength in fused deposition modeling process using artificial neural network and fuzzy logic. Prog Addit Manuf 8:529–539. https://doi.org/10.1007/s40964-022-00346-y

Article   Google Scholar  

Jain A, Mishra A, Dubey AK et al (2022) Mechanical characteristics and failure morphology of FFF-printed poly lactic acid composites reinforced with carbon fibre, graphene and MWCNTs. J Thermoplast Compos Mater. https://doi.org/10.1177/08927057221133089

Hartig S, Hildebrandt L, Fette M et al (2022) Process parameter determination for small recycling plants for the production of filament for FFF printing using the Taguchi method. Prog Addit Manuf 7:87–97. https://doi.org/10.1007/s40964-021-00218-x

Silva C, Pais AI, Caldas G et al (2021) Study on 3D printing of gyroid-based structures for superior structural behaviour. Prog Addit Manuf 6:689–703. https://doi.org/10.1007/s40964-021-00191-5

Mahesh V (2021) Experimental investigation on the dynamic response of additive manufactured PETG composite beams reinforced with organically modified montmorillonite nanoclay and short carbon fiber. Polym Compos 42:5021–5034. https://doi.org/10.1002/pc.26201

Jain A, Kant K, Singh SK et al (2023) Process parameter tailored evaluation of FFF-fabricated carbon fibre based poly-lactic-acid composites. J Thermoplast Compos Mater 36:4365–4387. https://doi.org/10.1177/08927057231155858

Kamaal M, Anas M, Rastogi H et al (2021) Effect of FDM process parameters on mechanical properties of 3D-printed carbon fibre–PLA composite. Prog Addit Manuf 6:63–69. https://doi.org/10.1007/s40964-020-00145-3

Mahesh V, Joseph AS, Mahesh V et al (2021) Investigation on the mechanical properties of additively manufactured PETG composites reinforced with OMMT nanoclay and carbon fibers. Polym Compos 42:2380–2395. https://doi.org/10.1002/pc.25985

Saad MS, Mohd Nor A, Zakaria MZ et al (2021) Modelling and evolutionary computation optimization on FDM process for flexural strength using integrated approach RSM and PSO. Prog Addit Manuf 6:143–154. https://doi.org/10.1007/s40964-020-00157-z

Bikiaris ND, Koumentakou I, Samiotaki C et al (2023) Recent Advances in the investigation of poly(lactic acid) (PLA) nanocomposites: incorporation of various nanofillers and their properties and applications. Polymers (Basel). https://doi.org/10.3390/polym15051196

Jain A, Upadhyay S, Sahai A, Sharma RS (2023) Comparing the flexural and morphological properties of dissimilar FFF-fabricated polymer composites. J Thermoplast Compos Mater 37:167–191. https://doi.org/10.1177/08927057231170790

Gritsch L, Askanian H, Bednarzig V et al (2023) Investigation and characterization of the additive manufacturing of polycaprolactone/bioactive glass hybrid scaffolds for bone tissue engineering via material extrusion processing. Prog Addit Manuf. https://doi.org/10.1007/s40964-023-00505-9

Tyagi B, Raj A, Chandrakar AS et al (2024) Fabrication of transfemoral prosthesis utilizing additive manufacturing and reverse engineering: a scoping review. Int J Interact Des Manuf. https://doi.org/10.1007/s12008-024-01974-0

Singhal I, Tyagi B, Raj A et al (2023) Analysis of multiple print-head displacement mechanisms in 3D space for material extrusion machine. 3D Print Addit Manuf. https://doi.org/10.1089/3dp.2023.0096

Raj A, Chandrakar AS, Tyagi B et al (2024) Advancements in material extrusion based three-dimensional printing of sensors: a review. Int J Interact Des Manuf. https://doi.org/10.1007/s12008-023-01718-6

Nasiri H, Azadi M, Dadashi A (2023) Interpretable extreme gradient boosting machine learning model for fatigue lifetimes in 3D-printed polylactic acid biomaterials. SSRN Electron J 1–8. https://ssrn.com/abstract=4364418

Dwivedi K, Joshi S, Nair R et al (2024) Optimizing 3D printed diamond lattice structure and investigating the influence of process parameters on their mechanical integrity using nature-inspired machine learning algorithms. Mater Today Commun 38:108233. https://doi.org/10.1016/j.mtcomm.2024.108233

Alyami M, Khan M, Fawad M et al (2024) Predictive modeling for compressive strength of 3D printed fiber-reinforced concrete using machine learning algorithms. Case Stud Constr Mater 20:e02728. https://doi.org/10.1016/j.cscm.2023.e02728

Ege D, Sertturk S, Acarkan B, Ademoglu A (2023) Machine learning models to predict the relationship between printing parameters and tensile strength of 3D Poly (lactic acid) scaffolds for tissue engineering applications. Biomed Phys Eng Express. https://doi.org/10.1088/2057-1976/acf581

Zhang Z, Zhang Y, Wen Y, Ren Y (2023) Data-driven XGBoost model for maximum stress prediction of additive manufactured lattice structures. Complex Intell Syst 9:5881–5892. https://doi.org/10.1007/s40747-023-01061-z

Wang C, Tan XP, Tor SB, Lim CS (2020) Machine learning in additive manufacturing: state-of-the-art and perspectives. Addit Manuf 36:101538. https://doi.org/10.1016/j.addma.2020.101538

Jayasudha M, Elangovan M, Mahdal M, Priyadarshini J (2022) Accurate estimation of tensile strength of 3d printed parts using machine learning algorithms. Processes 10:1–16. https://doi.org/10.3390/pr10061158

Jain A, Upadhyay S, Sahai A, Sharma RS (2023) Reinforcement-material effects on the compression behavior of polymer composites. J Appl Polym Sci 140:e53722. https://doi.org/10.1002/app.53722

Croccolo D, De Agostinis M, Fini S et al (2023) Effects of infill temperature on the tensile properties and warping of 3D-printed polylactic acid. Prog Addit Manuf. https://doi.org/10.1007/s40964-023-00492-x

Delli U, Chang S (2018) Automated process monitoring in 3D printing using supervised machine learning. Procedia Manuf 26:865–870. https://doi.org/10.1016/j.promfg.2018.07.111

Bintara RD, Lubis DZ, Aji Pradana YR (2021) The effect of layer height on the surface roughness in 3D printed polylactic acid (PLA) using FDM 3D printing. IOP Conf Ser Mater Sci Eng 1034:012096. https://doi.org/10.1088/1757-899x/1034/1/012096

Huang M, Jin S, Tang Z et al (2023) A method for predicting surface finish of polylactic acid parts printed using fused deposition modeling. Processes. https://doi.org/10.3390/pr11061820

Vahabli E, Rahmati S (2016) Application of an RBF neural network for FDM parts’ surface roughness prediction for enhancing surface quality. Int J Precis Eng Manuf 17:1589–1603. https://doi.org/10.1007/s12541-016-0185-7

Jain A, Sahai A, Sharma RS (2023) Fracture morphology and strength characteristics of poly-lactic acid and poly-ethylene terephthalate glycol composites combined with taguchi method and response surface methodology. J Thermoplast Compos Mater. https://doi.org/10.1177/08927057231221749

Jain A, Sahai A, Sharma RS (2023) Enhancing the mechanical behaviour of fused filament fabricated carbon fibre-reinforced poly-lactic acid. J Inst Eng Ser D. https://doi.org/10.1007/s40033-023-00498-3

Rendas P, Figueiredo L, Cláudio R et al (2023) Investigating the effects of printing temperatures and deposition on the compressive properties and density of 3D printed polyetheretherketone. Prog Addit Manuf. https://doi.org/10.1007/s40964-023-00550-4

Raj T, Jain A, Raj A et al (2024) Infill strategies for improving the impact behavior of polymer composites utilizing statistical and thermal analysis. Int J Polym Anal Charact. https://doi.org/10.1080/1023666X.2024.2319404

Refat M, Zappino E, Pagani A (2023) Impact of printing parameters on in-plane tensile and fracture toughness of fused filament fabricated PEEK. Prog Addit Manuf. https://doi.org/10.1007/s40964-023-00554-0

Jain A, Kumar S, Singh A et al (2023) Comparative study of impact behavior of fused filament fabrication-printed polylactic acid composites. Nano World J 9:470–475

Google Scholar  

Raj T, Tyagi B, Jain A et al (2024) Investigating the influence of annealing and nozzle diameter on tensile strength of polyethylene terephthalate glycol composites. J Thermoplast Compos Mater. https://doi.org/10.1177/08927057241239001

Leon-Becerra J, González-Estrada OA, Sánchez-Acevedo H (2022) Comparison of models to predict mechanical properties of fr-am composites and a fractographical study. Polymers (Basel). https://doi.org/10.3390/polym14173546

Mahmood MA, Visan AI, Ristoscu C, Mihailescu IN (2021) Artificial neural network algorithms for 3D printing. Materials (Basel) 14:1–29. https://doi.org/10.3390/ma14010163

Mohamed OA, Masood SH, Bhowmik JL (2021) Modeling, analysis, and optimization of dimensional accuracy of FDM-fabricated parts using definitive screening design and deep learning feedforward artificial neural network. Adv Manuf 9:115–129. https://doi.org/10.1007/s40436-020-00336-9

Lyu J, Manoochehri S (2019) Dimensional prediction for FDM machines using artificial neural network and support vector regression. In: volume 1: 39th computers and information in engineering conference. American Society of Mechanical Engineers

Download references

Acknowledgements

The authors acknowledge the help from ACMS, IIT Kanpur, India for allowing to perform flexural testing. Support from FESEM lab, Department of Chemistry, DEI is highly appreciated for fractography analysis.

Author information

Authors and affiliations.

3D Printing and Additive Manufacturing Lab, Department of Mechanical Engineering, Dayalbagh Educational Institute, Dayalbagh, Agra, India

Tapish Raj, Amrit Tiwary, Akash Jain, Ankit Sahai & Rahul Swarup Sharma

Department of Electrical Engineering, Dayalbagh Educational Institute, Dayalbagh, Agra, India

Gaurang Swarup Sharma & Prem Prakash Vuppuluri

You can also search for this author in PubMed   Google Scholar

Corresponding author

Correspondence to Ankit Sahai .

Ethics declarations

Conflict of interest.

The authors declared no potential competing interest with respect to the research, authorship, and/or publication of this article.

Additional information

Publisher's note.

Springer Nature remains neutral with regard to jurisdictional claims in published maps and institutional affiliations.

Rights and permissions

Springer Nature or its licensor (e.g. a society or other partner) holds exclusive rights to this article under a publishing agreement with the author(s) or other rightsholder(s); author self-archiving of the accepted manuscript version of this article is solely governed by the terms of such publishing agreement and applicable law.

Reprints and permissions

About this article

Raj, T., Tiwary, A., Jain, A. et al. Machine learning-assisted prediction modeling for anisotropic flexural strength variations in fused filament fabrication of graphene reinforced poly-lactic acid composites. Prog Addit Manuf (2024). https://doi.org/10.1007/s40964-024-00768-w

Download citation

Received : 17 May 2024

Accepted : 13 August 2024

Published : 26 August 2024

DOI : https://doi.org/10.1007/s40964-024-00768-w

Share this article

Anyone you share the following link with will be able to read this content:

Sorry, a shareable link is not currently available for this article.

Provided by the Springer Nature SharedIt content-sharing initiative

  • Fused filament fabrication
  • Machine learning
  • Flexural behavior
  • Poly-lactic acid
  • Find a journal
  • Publish with us
  • Track your research

machine learning in manufacturing research paper

10 pagesDate: August 28, 2024

The advent of Industry 4.0 has significantly transformed the manufacturing sector, with predictive maintenance (PdM) emerging as a crucial element for optimizing operational efficiency and reducing downtime. This paper presents a novel AI-driven predictive maintenance framework that leverages machine learning (ML) models to predict equipment failures before they occur. By integrating big data analytics and cloud computing, the proposed solution enhances the accuracy and scalability of predictive maintenance strategies. Various ML models, including Gradient Boosting Machines, Neural Networks, and Support Vector Machines, are evaluated using a comprehensive manufacturing dataset. The results demonstrate the efficacy of AI in improving predictive accuracy and reducing maintenance costs, thereby driving significant operational benefits for manufacturers. A comparative analysis with existing literature further highlights the superior performance of the proposed framework.

: , , , , , ,

AIP Publishing Logo

Mitigating post-harvest losses through IoT-based machine learning algorithms in smart farming

[email protected]

[email protected]

[email protected]

[email protected]

  • Article contents
  • Figures & tables
  • Supplementary Data
  • Peer Review
  • Reprints and Permissions
  • Cite Icon Cite
  • Search Site

R. Rajesh Kanna , T. Mohana Priya , V. Sivakumar , Chandrasekharan Nataraj , Jishamol Thomas; Mitigating post-harvest losses through IoT-based machine learning algorithms in smart farming. AIP Conf. Proc. 30 August 2024; 3161 (1): 020058. https://doi.org/10.1063/5.0229500

Download citation file:

  • Ris (Zotero)
  • Reference Manager

This research paper explores the transformative potential of Internet of Things (IoT) technology in mitigating the longstanding issue of post-harvest losses within the agriculture sector. These losses, which encompass both quantitative and qualitative deterioration of food commodities from harvest to consumption, have posed persistent challenges, resulting in economic losses and food wastage. By delving into the current landscape of post-harvest losses and the application of IoT technology, the paper offers valuable insights into how IoT can be harnessed to reduce these losses effectively. It not only highlights the benefits and existing IoT solutions but also addresses the inherent challenges, providing recommendations for their resolution. Moreover, the research introduces a machine learning-based model, specifically Random Forest ML, to identify and prevent losses in tandem with IoT devices, empowering farmers with timely alert messages for informed decision-making, thus fostering a more sustainable and efficient agricultural ecosystem.

Citing articles via

Publish with us - request a quote.

machine learning in manufacturing research paper

Sign up for alerts

  • Online ISSN 1551-7616
  • Print ISSN 0094-243X
  • For Researchers
  • For Librarians
  • For Advertisers
  • Our Publishing Partners  
  • Physics Today
  • Conference Proceedings
  • Special Topics

pubs.aip.org

  • Privacy Policy
  • Terms of Use

Connect with AIP Publishing

This feature is available to subscribers only.

Sign In or Create an Account

IMAGES

  1. (PDF) Role of Machine Learning in Manufacturing Sector

    machine learning in manufacturing research paper

  2. (PDF) Machine learning in manufacturing and industry 4.0 applications

    machine learning in manufacturing research paper

  3. (PDF) Machine learning in manufacturing and industry 4.0 applications

    machine learning in manufacturing research paper

  4. 7 Applications of Machine Learning in Manufacturing in 2023

    machine learning in manufacturing research paper

  5. (PDF) Machine learning in manufacturing: Advantages, challenges, and

    machine learning in manufacturing research paper

  6. (PDF) A Research on Machine Learning Methods and Its Applications

    machine learning in manufacturing research paper

VIDEO

  1. AWS: Combine ML and GenAI

  2. How AI Factories Are Changing the Game

  3. RAG in an industrial setting

  4. How can Machine Learning and AI be applied to the manufacturing industry?

  5. Fizix / Seamless Machine Health Monitoring Solutions

  6. How is Aurora changing industrial simulation?

COMMENTS

  1. Machine learning in manufacturing and industry 4.0 applications

    Review papers related to machine learning applications in the manufacturing domain in this special issue bring together quantitative and qualitative components and provide new conceptual frameworks, synthesise diverse results, and give the broader research community a 'state-of-the-art' snapshot of essential issues related to the focus of ...

  2. Full article: Machine learning-supported manufacturing: a review and

    The advantages, limitations, and research opportunities of ML support in manufacturing are discussed. The paper outlines that the excessive specialization of the reviewed applications could be overcome by increasing the diffusion of transfer learning in the manufacturing domain. KEYWORDS: Machine learning manufacturing functions state-of-the-art

  3. Applied Sciences

    While attracting increasing research attention in science and technology, Machine Learning (ML) is playing a critical role in the digitalization of manufacturing operations towards Industry 4.0. Recently, ML has been applied in several fields of production engineering to solve a variety of tasks with different levels of complexity and performance. However, in spite of the enormous number of ML ...

  4. Full article: Machine learning in manufacturing: advantages, challenges

    Here, this paper contributes in presenting an overview of available machine learning techniques and structuring this rather complicated area. A special focus is laid on the potential benefit, and examples of successful applications in a manufacturing environment. Keywords: Manufacturing machine learning intelligent manufacturing systems

  5. Machine Learning for industrial applications: A comprehensive

    Highlights • A review on Machine and Deep Learning methods applied to industrial problems. • Papers from 2000 are analyzed and hierarchically catalogued. • Application domains, trend, and evolutions are investigated.

  6. Machine learning in manufacturing and industry 4.0 applications

    The machine learning (ML) field has deeply impacted the manufacturing industry in the context of the Industry 4.0 paradigm. The industry 4.0 paradigm encourages the usage of smart sensors, devices ...

  7. Machine Learning Applications in Manufacturing

    The emergence of Industry 4.0 (I4.0) has significantly transformed manufacturing landscapes, introducing interconnected, dynamic, and data-rich environments. This paper focuses on the application of Industrial Machine Learning (I-ML) within these evolving manufacturing contexts, exploring both the challenges and future prospects of its integration. A systematic literature review, following the ...

  8. Smart Manufacturing through Machine Learning: A Review, Perspective

    The current paper presents a comprehensive survey and summary of different machine learning algorithms which are being employed in various traditional and nontraditional machining processes, and also, an outlook of the manufacturing paradigm is presented.

  9. Machine Learning and Deep Learning in smart manufacturing: The Smart

    By connecting every machine and activity through network sensors to the Internet, a huge amount of data is generated. Machine Learning (ML) and Deep Learning (DL) are two subsets of Artificial Intelligence (AI), which are used to evaluate the generated data and produce valuable information about the manufacturing enterprise, while introducing ...

  10. (PDF) Machine learning in manufacturing: Advantages, challenges, and

    Here, this paper contributes in presenting an overview of available machine learning techniques and structuring this rather complicated area.

  11. Machine learning in additive manufacturing: State-of-the-art and

    Machine learning in design for additive manufacturing. DfAM significantly differs from the design principles commonly practised in conventional manufacturing due to its boundless design freedom. Here, the applications of ML in DfAM will be elucidated in two aspects, namely material design, and topology design. 2.1.

  12. Recent Advances of Artificial Intelligence in Manufacturing Industrial

    Industrial AI covers a wide range of machine learning where the keys to success are pattern recognition for highly nonlinear data, unstructured data analysis, robustness to repetitive tasks, fast computation speed, and high interpretability.

  13. Machine Learning: Algorithms, Real-World Applications and Research

    To discuss the applicability of machine learning-based solutions in various real-world application domains. To highlight and summarize the potential research directions within the scope of our study for intelligent data analysis and services. The rest of the paper is organized as follows.

  14. [PDF] Machine learning in manufacturing: advantages, challenges, and

    Machine learning in manufacturing: advantages, challenges, and applications. This paper contributes in presenting an overview of available machine learning techniques and structuring this rather complicated area with a special focus on the potential benefit, and examples of successful applications in a manufacturing environment.

  15. Machine learning and deep learning based predictive quality in

    With the ongoing digitization of the manufacturing industry and the ability to bring together data from manufacturing processes and quality measurements, there is enormous potential to use machine learning and deep learning techniques for quality assurance. In this context, predictive quality enables manufacturing companies to make data-driven estimations about the product quality based on ...

  16. Predictive Maintenance using Machine Learning: A Case Study in

    In this paper, we present a case study in the application of machine learning for predictive maintenance in a manufacturing management setting. Through the implementation of various algorithms such as random forests, gradient boosting, and deep learning, we show that machine learning can provide significant improvements in the accuracy of ...

  17. Study examines how machine learning boosts manufacturing

    MIT Machine Intelligence for Manufacturing and Operations and McKinsey & Company published the results of a 100-company survey showing which companies are leading adopters of machine intelligence and data analytics and how they succeed.

  18. Consistent machine learning for topology optimization with

    View PDF Abstract: Additive manufacturing methods together with topology optimization have enabled the creation of multiscale structures with controlled spatially-varying material microstructure. However, topology optimization or inverse design of such structures in the presence of nonlinearities remains a challenge due to the expense of computational homogenization methods and the complexity ...

  19. Predictive Maintenance using Machine Learning

    Abstract. Predictive maintenance (PdM) is a concept, which is implemented to effectively manage maintenance plans of the assets by predicting their failures with data driven techniques. In these ...

  20. Research and application of machine learning for additive manufacturing

    This paper aims to review, summarise, analyse and present the latest research and applications of ML for AM. Section 2 introduces the state-of-the-art of the AM process, including seven main AM system categories and their characteristics. In Section 3, the methodology of systematic review is introduced.

  21. A physical constraint-based machine learning model for shale oil

    Research Institute of Petroleum Exploration and Development, PetroChina ... which make accurate prediction difficult. This paper introduces a deep learning approach, specifically a physical constraint-based convolutional neural network combined with long short-term memory and attention mechanism (CNN-LSTM-AM), to predict shale oil production ...

  22. Machine learning in manufacturing and industry 4.0 applications

    Review papers related to machine learning applications in the manufacturing domain in this special issue bring together quantitative and qualitative components and provide new conceptual frameworks, synthesise diverse results, and give the broader research community a 'state-of-the-art' snapshot of essential issues related to the focus of ...

  23. Estimating Road Construction Costs with Explainable Machine Learning

    Another difficulty is that an approach that is accurate for estimating the cost of a subtask may not be efficient for another one. Based on this context, this paper introduces a framework for estimating construction costs while tackling both challenges. It is based on six machine learning models and on Shapley additive explanations.

  24. Data-driven analysis of battery formation reveals the role of electrode

    Optimizing the battery formation process can significantly improve the throughput of battery manufacturing. We developed a data-driven workflow to explore formation parameters, using interpretable machine learning to identify parameters that significantly impact battery cycle life. Our comprehensive dataset and design of experiment offer new insights into battery formation and showcase the ...

  25. Machine learning-assisted prediction modeling for ...

    The objective of this study is to conduct a comparative analysis of various machine learning algorithms on the flexural properties of graphene-reinforced poly-lactic acid fabricated through fused filament fabrication. The selected process parameters include raster orientation (0°, 45°, 90°), layer thickness (0.05 mm, 0.1 mm, 0.15 mm, 0.2 mm, 0.25 mm, 0.3 mm), and feed rate (20 mm/s, 40 mm/s ...

  26. Leveraging AI and Machine Learning for Predictive Maintenance in

    This paper presents a novel AI-driven predictive maintenance framework that leverages machine learning (ML) models to predict equipment failures before they occur. By integrating big data analytics and cloud computing, the proposed solution enhances the accuracy and scalability of predictive maintenance strategies.

  27. Mitigating post-harvest losses through IoT-based machine learning

    This research paper explores the transformative potential of Internet of Things (IoT) technology in mitigating the longstanding issue of post-harvest losses wit ... Moreover, the research introduces a machine learning-based model, specifically Random Forest ML, to identify and prevent losses in tandem with IoT devices, empowering farmers with ...

  28. Organizational Supply Chain Risk Assessment Using Machine Learning and

    Based on the background of suppliers in intelligent manufacturing enterprises, the evaluation method of supplier efficiency was studied by using machine learning. In this paper, based on the ...

  29. Predictive maintenance enabled by machine learning: Use cases and

    Highlights • Machine learning subfields overview relevant for automotive predictive maintenance • The aim is to make the field accessible to maintenance or machine learning experts • Machine learning-enabled predictive maintenance for automotive systems paper survey • Papers categorization of machine learning-enabled predictive maintenance in automotive industry • Use case- and a ...

  30. Machine learning-supported manufacturing: a review and directions for

    The advantages, limitations, and research opportu-nities of ML support in manufacturing are discussed. The paper outlines that the excessive specialization of the reviewed applica-tions could be overcome by increasing the difusion of transfer learning in the manufacturing domain.