Overview
Tungsten Inert Gas (TIG) welding is an arc welding process in which a tungsten electrode is used to produce the weld. The electrode is not consumed, and the electrode and weld pool are protected from contamination by an inert gas. A few defects that can occur during this process are lack of fusion, misalignment, and burn through. The TIG welding process is complex and expensive which makes early defect detection desirable.
One way to catch these defects is with non-destructive testing, in which a weld is inspected visually. In this demo, we use images of TIG welds to build a deep learning model to classify images as containing defects or being defect-free. By leveraging deep learning techniques, we can thus automate inspection of weld quality.
In this use case, we take the following steps:
- Download the project archive and upload it to Cumulocity IoT Machine Learning Workbench.
- Use MLW’s integrated Jupyter Notebook to train a model using transfer learning and convert it to ONNX.
- Use the ONNX model along with the included pre-processing and post-processing scripts to build an inference pipeline, and deploy it on Cumulocity IoT Machine Learning Engine.
- Make inferences using the model in production.
Prerequisites
Download the following: WeldingDefectDetectionDemoProject.zip. The archive contains the entire project:
- Python notebook for training the model
- Pre-processing and post-processing Python scripts needed to create the inference pipeline
- Test images for scoring once the pipeline is deployed
- Data used to train the model and evaluate performance
- An example model that is already trained and can be used to create a pipeline
Running the demo requires:
- Prior experience with Python and understanding of the data science processes.
- Familiarity with Cumulocity IoT and its in-built apps.
- Subscription of the MLW microservice, the Zementis microservice, the ONNX microservice (10.13.0.x.x or higher), the Machine Learning Workbench application and the Machine Learning application on the tenant.
Welding defect detection
In this section, we describe the steps to create a welding defect detection model using Machine Learning Workbench and the included data set. Follow the sections below to learn about the data, how to train a MobileNet model with transfer learning, how to deploy the model to production, and how to use it to detect defects in images of welds.
Data description
The data included with this project is based on this dataset available on Kaggle: TIG Aluminium 5083. It is not necessary to download the Kaggle dataset. The project data has been changed from the Kaggle version, and has the following properties:
- Images fall into one of two classes: 0 (“no defect”) and 1 (“defect”). The “defect” class contains an equal number of images from every type of the original defect class (classes 1 through 5 in the original dataset).
- Images are 128x128 pixels, grayscale.
- The data is split into three subdirectories, each with images for class 0 and 1:
- train: 1000 images per class (2000 total)
- test: 300 images per class (600 total)
- val: 300 images per class (600 total)
The train and validation sets are used during model training. The test set is used at the very end to check model performance.
Uploading the project to MLW
Log in to the MLW and follow the steps described in Machine Learning Workbench > Upload a project to upload the WeldingDefectDetectionDemoProject.zip project to MLW. This might take a few minutes depending on your internet bandwidth.
After the project is uploaded sucessfully, navigate to the Data folder of the MLW and select the ZIP file. You should see the metadata of the uploaded data set. You should also see 2 test data files, 3 code files, and 1 model file within the project.
Training the model
-
Uploading WeldingDefectDetectionDemoProject.zip project uploaded a Jupyter Notebook file named WeldingDefectDetectionDemo.ipynb.
-
In the Code folder of the MLW, click weldingDefectDetectionDemo.ipynb to view the metadata of the file.
-
Click the edit icon to open the Jupyter Notebook and execute all the cells in sequence.
!pip install <library name>
command to install any other needed libraries.Once all the cells are executed successfully, a model named weldingDefectModel.onnx is saved to the Model folder.
Deploying the model using the inference pipeline
Once the model is trained and available for serving in the form of an ONNX file, you can create an inference pipeline for deploying the model to production.
The Code folder contains the scripts weldingPreProcessing.py and weldingPostProcessing.py, which we will use along with the model (.onnx file) to create the pipeline.
- The pre-processing script is used to pre-process incoming test data (image) for the model. The script is shown below:
def process(content):
import io
from PIL import Image
import numpy as np
im = Image.open(io.BytesIO(content)).convert('RGB')
x = np.array(im)
x = x.astype(np.float32)
x = x/255.
x = np.expand_dims(x, axis=(0))
return {"input":x}
- The post-processing script is used to assign proper classes to the predicted probabilities from the ONNX model. The script is shown below:
def process(content):
import numpy as np
f_cont = content[0][0]
labels = ["no defect","defect"]
pred_label = labels[np.argmax(f_cont)]
return {"probability":f_cont.tolist(),"class":pred_label}
- Follow the steps described in Machine Learning Workbench > Inference pipeline and create an inference pipeline named weldingPipeline.pipeline by selecting ‘weldingDefectModel.onnx’ as Model, ‘weldingPreProcessingForNN.py’ as Pre-processing Script and ‘weldingPostProcessingForNN.py’ as Post-processing Script.
This creates a new pipeline file named weldingPipeline.pipeline in the Inference Pipeline folder. You can see the metadata of the pipeline file by clicking it.
- Deploy the pipeline to production by clicking the deploy icon .
Making predictions using the deployed pipeline
Now that the inference pipeline is successfully deployed to production and available for serving, you can make predictions using the test data.
-
Uploading the WeldingDefectDetectionDemoProject.zip project uploaded the testDefectImage.PNG and testNoDefectImage.PNG test images.
-
Navigate to the Data folder and select testDefectImage.PNG. Predict the class of image using weldingPipeline.
The predictions file is stored in the Data folder with the name testDefectImage_timeStamp.json. Edit the predictions JSON file to view the predictions.