Skip to content

This repository contains the implementation of a method to predict the remaining useful life (RUL) of turbofan engines based on the NASA C-MAPSS dataset. The approach is based on the reference paper by Shcherbakov et al., 2022, and includes data preprocessing, model training, and evaluation steps.

License

Notifications You must be signed in to change notification settings

shining0611armor/Predicting-of-Turbofan-Engine-Degradation-Using-the-NASA-C-MAPSS-Dataset

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

99 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Implementing a Method for Predicting the Remaining Life of Turbofan Engine Degradation Using the NASA C-MAPSS Dataset

This repository contains the implementation of a method to predict the remaining useful life (RUL) of turbofan engines based on the NASA C-MAPSS dataset. The approach is based on the reference paper by Shcherbakov et al., 2022, and includes data preprocessing, model training, and evaluation steps. We implement the network for multiple scenarios: regression and classification. For each scenario, we tried three network architectures: CNN-LSTM, LSTM, and CNN. Additionally, we investigate the effect of using early stopping in each case and demonstrate that early stopping provides better results.

Quick Access in Colab

You can quickly access and run this project in Google Colab by clicking the following icon:

This includes the implementation of all the mentioned models for both scenarios:

Open in Colab

Summary of Results and Final Comparison

The comparison of the results demonstrates the superiority of the proposed model (LSTM-CNN) as presented in the paper, compared to other structures. This supports the claim of the paper and is evident in both the Classification and Regression tasks.

Additionally, the accuracies obtained in both the Classification and Regression sections are close to and similar to those reported in the paper.

Comparison of Results in the Classification Section

Model Without Early stopping With Early stopping CNN LSTM
Precision 0.9773 0.9769 0.9832 0.9747
Recall 0.9820 0.9863 0.9735 0.9882
F1-Score 0.9796 0.9816 0.9784 0.9814
Accuracy 0.9628 0.9662 0.9607 0.9659

Based on the table above, the CNN-LSTM model has the highest F1-Score and Accuracy. This model also performs better than the basic LSTM model in these metrics. The CNN model, although providing higher Precision, has lower F1-Score and Accuracy compared to the other models. Nevertheless, all models have achieved high percentages, close to the values reported in the paper. without using Early-stopping, the accuracy decreases due to reasons explained in the corresponding section. Detailed metrics are provided in each section of the report.

Comparison of Results in the Regression Section for the Last Window

Model Without Early stopping With Early stopping CNN LSTM
RMSE 15.83 14.46 15.99 15.02
MSE 250.67 209.23 255.73 225.76
MAE 11.61 11.10 12.19 10.37
MAPE 17.32 16.74 25.78 15.44

Based on the table above and the results, the optimal CNN-LSTM model proposed in the paper with Early-stopping provides the best results. The values obtained are very close to those reported in the paper. The standalone LSTM model, although achieving good results, performs worse than the optimal model proposed in the paper. The CNN model shows higher errors in the metrics compared to the previous models, with implemented values close to or better than those reported in the paper. Comparing the first and second columns indicates the benefits of using Early-stopping in reducing overfitting and achieving better accuracy (lower errors) on the test data.

Comparison of Results in the Regression Section for All Windows

Model Without Early stopping With Early stopping CNN LSTM
RMSE 17.75 16.49 17.69 17.87
MSE 315.28 272.06 312.93 319.60
MAE 12.56 11.72 13.63 11.80
MAPE 13.62 12.93 17.03 13.66

Using all windows generally provides lower accuracy compared to using only the last window, which aligns with the explanations provided in previous sections.

Table of Contents

  1. Data Preprocessing
    1. Dataset Description
    2. Data Selection
    3. Data Normalization
    4. Data Labeling
    5. Time Windowing
  2. Model Training
    1. Classification
      1. First Scenario: Classification with Early-stopping
    2. Regression
      1. Second Scenario: Regression with Early-stopping
  3. References
  4. About the Instructor
  5. Contact
  6. License

The goal of this project is to develop an intelligent maintenance system for turbofan engines. By predicting the remaining useful life of these engines, we can plan maintenance activities more effectively, reduce downtime, and improve overall safety.

Data Preprocessing

First, we examine and prepare the dataset. We need to load the dataset:


import pandas as pd

!pip install gdown

# Downloading and unzipping the dataset
!gdown --id 1uNIreOQ1GWxIu_Aw-YWLT-xobcSWV2Kj -O /content/dataset.zip
!unzip -q /content/dataset.zip -d /content/dataset
!rm /content/dataset.zip

Dataset Description

The dataset used is the Turbofan Engine Degradation dataset from NASA's C-MAPSS collection. This dataset includes sensor outputs from a set of simulated turbofan jet engines. The sensor outputs are recorded as time-series data.

Dataset Example

In the training dataset, the engine starts operating normally until a fault occurs, which gradually increases. In the training dataset, this fault escalation continues until failure, after which no data is recorded.

The recorded information includes operational settings of the engines, recorded in 3 columns, and measurements from 21 sensors. This information is recorded for 100 units. However, the recorded data (remaining cycles) before failure in the test set is provided in a separate file because the test data ends before reaching failure.

Overall, the dataset is recorded in 26 columns, which are as follows:


1) unit number
2) time, in cycles
3) operational setting 1
4) operational setting 2
5) operational setting 3
6) sensor measurement 1
7) sensor measurement 2
...
26) sensor measurement 26

Data Set: FD001
Train trajectories: 100
Test trajectories: 100
Conditions: ONE (Sea Level)
Fault Modes: ONE (HPC Degradation)

Training dataset before preprocessing

Figure 1: Training dataset before preprocessing.

Test dataset before preprocessing

Figure 2: Test dataset before preprocessing.

To work with this dataset, we can read the CSV files as shown below (for convenience we also convert this dataset in CSV file), or use the original text files. We have examined both methods.


import pandas as pd

# we load the training and test sets
train_df = pd.read_csv('/content/dataset/train_FD001.csv', header=None)
test_df = pd.read_csv('/content/dataset/test_FD001.csv', header=None)
rul_df = pd.read_csv('/content/dataset/RUL_FD001.csv', header=None)

columns = ['rows', 'engine_number', 'time_in_cycles'] + [f'op_setting_{i}' for i in range(1, 4)] + [f'sensor_{i}' for i in range(1, 22)]
train_df.columns = columns
test_df.columns = columns[:3] + [f'op_setting_{i}' for i in range(1, 4)] + [f'sensor_{i}' for i in range(1, 22)]

train_df = train_df.iloc[1:].reset_index(drop=True)
test_df = test_df.iloc[1:].reset_index(drop=True)

The goal of working with this dataset is to predict the number of operational cycles remaining before failure, as creating a warning system before failure is crucial. Naturally, if the degradation falls below a certain threshold, it indicates failure.

The preprocessing of the dataset includes four steps: Data Selection, Data Normalization, Data Labeling, and Time Windowing.

Data Selection

In the Data Selection phase, sensors that do not show significant changes with the increase of the life cycle are removed from the dataset. These sensors do not provide valuable information for determining the Remaining Useful Life (RUL) and only add complexity to the network. According to the reference paper, the following columns are removed: c3, s1, s5, s10, s16, s19. We follow the same approach in this implementation and remove the specified columns, although a few other columns could also be removed.

After applying Data Selection, the training dataset is as shown in Figure 3. The same operations are applied to the test dataset.

# we remove the specified columns
columns_to_remove = ['rows', 'op_setting_3', 'sensor_1', 'sensor_5', 'sensor_10', 'sensor_16', 'sensor_19']
train_df.drop(columns=columns_to_remove, inplace=True)
test_df.drop(columns=columns_to_remove, inplace=True)

Data Selection applied to the training dataset

Figure 3: Data Selection applied to the training dataset.

As shown in Figure 3, the specified columns have been removed from the dataset. This process is repeated for the test dataset. Note that the first two columns are not involved in the training process and will be separated in later stages. The same process is applied to the test dataset, and finally, 18 features are selected for training and testing.

If processing directly from the original text file, the corresponding sensor columns are identified and removed based on their indices. The columns to be removed are:

[0, 1, 4, 5, 9, 14, 20, 23]

Thus, these columns are removed from the dataset. For example, after removing these columns from the test dataset, the following code is used:

# Data Selection implementation
engine_time_df = test_df[['engine_number', 'time_in_cycles']].copy()
columns_to_be_dropped1 = [0, 1, 4, 5, 9, 14, 20, 23]

columns_to_be_dropped = ['engine_number', 'time_in_cycles', 'rows', 'op_setting_3', 'sensor_1', 'sensor_5', 'sensor_10', 'sensor_16', 'sensor_19']

test_data_dropped = test_data.drop(columns=columns_to_be_dropped1)
test_df_dropped = test_df.drop(columns=columns_to_be_dropped)

Data Normalization

Since the data is captured from various sensors, they have different ranges. Some sensors may have large measurements while others may have smaller values. Encountering different scales of values (very large or very small) can make the learning process difficult for the network. This can impose unnecessary heavy computations and cause computational saturation in the network, potentially biasing the network towards features with large values. To prevent this, normalization and standardization techniques are used. According to the approach presented in the reference paper, sensor features are initially mapped to the range of 0 to 1 using the following formula.

After Data Selection:

from sklearn.preprocessing import MinMaxScaler

features_to_normalize = train_df.columns[3:]

train_df[features_to_normalize] = train_df[features_to_normalize].apply(pd.to_numeric, errors='coerce')
test_df[features_to_normalize] = test_df[features_to_normalize].apply(pd.to_numeric, errors='coerce')

# we use the min-max-scaler in sklearn lib
scaler = MinMaxScaler()
train_df[features_to_normalize] = scaler.fit_transform(train_df[features_to_normalize])
test_df[features_to_normalize] = scaler.transform(test_df[features_to_normalize])

After applying Data Normalization, the training dataset is as shown in Figure 2. The same normalization is applied to the test dataset as well.

Normalized Test Dataset

Figure 4: Normalized test dataset.

Normalized Training Dataset

Figure 5: Normalized training dataset.

Data Labeling

Now we need to create labels for each of the datasets.

For the training dataset, we follow the approach outlined in the paper. Initially, we find the maximum cycle for each engine and label it using a piece-wise linear method. This is because the engine remains healthy for a while initially, and its health does not degrade with the increase in cycles. This method provides a more logical and better labeling approach compared to a linear model. As in the paper, the initial constant value is considered to be 130, which is consistent with the nature of the dataset.

# Applying min-max-standardization

columns = ['engine_number', 'time_in_cycles'] + [f'op_setting_{i}' for i in range(1, 4)] + [f'sensor_{i}' for i in range(1, 22)]
train_df.columns = columns

max_cycles = train_df.groupby('engine_number')['time_in_cycles'].max().reset_index()

sorted_max_cycles = max_cycles.sort_values(by='engine_number').reset_index(drop=True)
engine_number  time_in_cycles
0               1             192
1               2             287
2               3             179
3               4             189
4               5             269
..            ...             ...
95             96             336
96             97             202
97             98             156
98             99             185
99            100             200

[100 rows x 2 columns]

After finding the maximum cycle for each engine, we increase the cycle linearly from the last cycle to the length of the window. After that, we consider its value fixed, equal to the window length (considered from the last to the first). We repeat this process for all units or engines so that all data is labeled.

For example, we label the first engine piece-wise as shown below.

Piece-wise linear labeling for the first engine

Figure 6: Piece-wise linear labeling for the first.

0      130
1      130
2      130
3      130
4      130
... 
187      4
188      3
189      2
190      1
191      0
Name: RUL, Length: 192, dtype: int64

For classification, we only need to consider a threshold (e.g., 50 as considered in the paper). Values less than 50 are considered as the Degenerated class and values greater than or equal to 50 are considered as the Not-Degenerated class.

After labeling, the training dataset will look like this:

Labeled training dataset

Figure 7: Labeled training datasetLabeled training dataset.

Figure: Labeled training dataset

As seen, the RUL is used for regression and the label derived from RUL is used for classification.

For labeling the test dataset, we first read the RUL labels provided in the attached file.

# Reading the actual test labels
RUL_of_correspond_to_each_engin = test_rul_df[1]
RUL_of_correspond_to_each_engin
0      RUL
1      112
2       98
3       69
4       82
... 
96     137
97      82
98      59
99     117
100     20
Name: 1, Length: 101, dtype: object

Since the test data ends before reaching the actual last working cycle of each unit, the remaining cycles after the last recorded cycle in the Test-FD001.csv file are specified in the RUL-FD001.csv file.

To calculate the labels for all test data, we consider the actual RUL for the last recorded cycle and increase the life linearly for the previous data until reaching the first recorded data for each engine. The column for Remaining Useful Life is calculated by adding the maximum cycle value to the corresponding values in the RUL-FD001.csv file and then subtracting the cycle column value from each row in the test data.

To implement this pre-processing for the test data, the initial steps are similar to the training data. However, the labeling part differs.

First, we calculate the maximum cycle and add it as a row of data. For example, as shown in the figure below, the maximum cycle is added as a column named Max-time-in-cycle. This value is then subtracted from the Time-in-cycle column, and the result is stored in a column named RUL-x. The actual test labels from the RUL-FD001.csv file are read and concatenated as a column named RUL-y.

The RUL-y column value is then added to the RUL-x column, and the final label for each row of the dataframe is stored in the RUL column.

Explaining the labeling for the first unit

Figure 8: Explaining the labeling and showing it for the first unit.

Next, based on the distribution of the training dataset and its piece-wise linear labeling, we apply similar processing to the test dataset to ensure the labeling method is consistent with the training dataset. A lambda function is used for thresholding with a value of 130 for regression and 50 for classification, as per the reference paper. Values greater than 130 are limited to this value for regression, and for classification, binary labels of 0 and 1 are assigned based on whether they are below or above the RUL value of 50, respectively.

Implementation code for labeling test data

Figure 9: Implementation code for labeling test data.

The thresholding process is shown in the figure below.

Thresholding for test data (similar for train data)

Figure 10: Thresholding for test data (similar for train data).

After thresholding and removing auxiliary columns, the labeled data for the first unit will look like this:

Labeled test data for the first unit

Figure 11: Labeled test data for the first unit as an example.

Time Windowing

For processing time signals, we need to generate time windows. We choose windows of length 30 because the window length should be less than the length of the shortest record, and the shortest record in the dataset is 31. According to the paper, each window's step is considered to be 1. We create all windows by iterating through each unit or engine in the outer loop and from the maximum cycle for each engine to the window length in the inner loop. This way, a window of length 30 is created from the last cycle. We slide the window up to include all data, then move to the next engine.

Each window is labeled with the label corresponding to the last data (row) of the window.

Creating time windows for the training dataset for regression

Figure 12: Creating time windows for the training dataset for regression.

This way, time windows are implemented for regression, and the shape of the entire training dataset will be as follows:

Processed training data shape:  (17731, 30, 18)
Processed training targets labels shape:  (17731,)

For classification, we repeat the mentioned steps, but we use the last column (label) as the label for each window instead of the RUL column.

Creating time windows for the training dataset for classification

Figure 13: Creating time windows for the training dataset for classification.

Thus, the entire training data is converted into 17731 windows of 30 with 18 features.

The windowing process and code for the test data are identical to the training data windowing. However, for testing, we only consider the last window. In this case, the inner loop is removed, and we only take the last data corresponding to the maximum cycle for a window of length 30. The label is the actual RUL value from the RUL-FD001.csv file for each engine.

Implementation of windowing based on last window

Figure 14: Implementation of windowing based on the last window.

The overall output of the test dataset after windowing will be as follows:

Test size after windowing for all windows :
Processed test data shape for last window:  (100, 30, 18)
True RUL Labels shape for last window:  (100,)

Test size after windowing for last windows :
Processed test data shape:  (10196, 30, 18)
True RUL Labels shape:  (10196,)

The values obtained for the test and train data match the values mentioned in the paper.

Model Training - Classification

In this section, we train the CNN-LSTM model according to the settings described in the reference paper Shcherbakov2022. First, we ensure that our settings match the paper's settings for training and testing.

Parameter settings for the classification section in the reference paper

Figure 15: Parameter settings for the classification section in the reference paperShcherbakov2022

According to the reference paper, 17631 data points were used for training, and 10096 data points were used for testing. This means that all windows were considered for training and testing, which matches the values obtained in the preprocessing section of this report. Additionally, the number of Faulty condition and Healthy condition labels matches our obtained values (as seen in the confusion matrix).

For all training scenarios, whether for classification or regression, we split 20% of the training dataset for validation.

Dataset split

Figure 16: Dataset splitShcherbakov2022

Processed train data shape:  (14184, 30, 18)
Processed validation data shape:  (3547, 30, 18)
Processed train targets shape:  (14184,)
Processed validation targets shape:  (3547,)

First Scenario: Classification with Early-stopping

First, we implement the optimized CNN-LSTM model described in the paper. All its parameters are implemented exactly as described in the paper (other models and also without early stopping conditions can be seen in the attached .ipynb files.

Model: "sequential_11"
_________________________________________________________________
Layer (type)                Output Shape              Param #   
=================================================================
conv1d_27 (Conv1D)          (None, 26, 32)            2912      
conv1d_28 (Conv1D)          (None, 24, 64)            6208      
max_pooling1d (MaxPooling1  (None, 8, 64)             0         
D)                                                              
lstm_6 (LSTM)               (None, 8, 50)             23000     
dropout_2 (Dropout)         (None, 8, 50)             0         
lstm_7 (LSTM)               (None, 50)                20200     
dropout_3 (Dropout)         (None, 50)                0         
dense_33 (Dense)            (None, 50)                2550      
dense_34 (Dense)            (None, 1)                 51        
=================================================================
Total params: 54921 (214.54 KB)
Trainable params: 54921 (214.54 KB)
Non-trainable params: 0 (0.00 Byte)
_________________________________________________________________

Then we train the model with the following settings, exactly as in the paper.

In this section we use 100 epochs. Also, the batch size is set to 200, and the learning rate is set to 0.001. The Adam optimizer is used as the optimizer.

Accuracy and error curves during training

Figure 18: Accuracy and error curves during training

As can be seen, the error and classification curves decrease and increase respectively. Due to the use of Early-Stopping, the training process is halted before the variance increases, which could lead to generalization error or overfitting on the training data. The better performance achieved using this simple technique is evident when comparing the results of this scenario with the previous one (without Early-Stopping).


    
319/319 [==============================] - 3s 5ms/step
Precision: 0.9769148936170213
Recall: 0.9863587540279269
F1-Score: 0.98161411010155
Accuracy: 0.9662612789329149
precision    recall  f1-score   support

Class 0       0.84      0.76      0.80     886
Class 1       0.98      0.99      0.98     9310

accuracy                          0.97     10196
macro avg     0.91      0.87      0.89     10196
weighted avg  0.97      0.97      0.97     10196

As can be seen, the model's accuracy and performance increase by approximately one percent compared to the scenario without Early-Stopping. Additionally, in this case, the model's accuracy, particularly for class 0, improves significantly, and the F1-score exceeds 98%(you can check the codes).

Confusion matrix for CNN-LSTM with Early-Stopping

Figure 19: Confusion matrix for CNN-LSTM without Early-Stopping

As seen from the confusion matrix, the algorithm achieved high accuracy on Class 1 and reasonable accuracy on Class 2 (considering the class imbalance). The algorithm effectively differentiates between classes, achieving high accuracy and F1-Score.

ROC curve for the test dataset

Figure 20: ROC curve for the test dataset

The ROC curve in the figure Figure: ROC curve for the test dataset shows the model's good performance on the test dataset due to the following reasons:

  • Low False Positive Rate: The ROC curve is close to the vertical axis, indicating a low false positive rate. This means the model rarely misclassifies negative samples as positive.
  • High True Positive Rate: The ROC curve quickly moves towards the top of the plot, indicating a high true positive rate. This means the model correctly classifies most positive samples.
  • Area Under the Curve (AUC): The AUC is 0.98, indicating excellent model performance. AUC close to 1 means the model can effectively distinguish between positive and negative classes.
  • Balance between Sensitivity and Specificity: The ROC curve shows the model has a good balance between sensitivity and specificity. This balance is important as it indicates the model's ability to not only correctly identify positive samples but also avoid misclassifying negative samples.

Given the high area under the ROC curve and its steepness at the beginning, it can be concluded that this algorithm performs well on the dataset, accurately distinguishing between positive and negative samples.

ROC curve for the test dataset

These results are for considering all of the windows. Additionally, we considered test data as only the last window of data for comparison. As expected, due to the smaller size and potential noise in test data, the accuracy is lower than the previous scenario (implemented out of curiosity, not in the paper due to low accuracy).

Test accuracy for only the last 100 RUL data points

Figure 21: Test accuracy for only the last 100 RUL data points

The metrics for this scenario (for 100 test data points) are shown below:

Second Scenario: Regression with Early-stopping

In the algorithm implementation section for regression, the settings are exactly the same as those stated in the Classification section. The only difference is that in the last Dense layer of the model, for the purpose of regression, the Activation function is Linear instead of Sigmoid. Additionally, RMSprop is used instead of Adam. Although in the section where the model was used without Early-Stopping, the model did not experience overfitting and performed well with the appropriate adjustment of the Learning-rate values, it is possible that sometimes we might encounter overfitting without Early-Stopping. In this case, we add an Early-Stopping section to the model's callback. All other settings and hyperparameters remain the same as before. By doing this, the model will stop when the validation loss increases. This approach yields the best results, and the outcome has improved compared to the previous state.

Adding Early-Stopping to the Callback Section of the CNN-LSTM Model

Figure 21: Adding Early-Stopping to the Callback Section of the CNN-LSTM Model

In this case, considering Early-Stopping, the model stops at its optimal state before a significant increase in validation loss at Epoch 80.

MSE and MAE Error Curves for train and validation

Figure 22: MSE and MAE Error Curves for train and validation

we can consider all windows the result is as bellow:


    
RMSE:  16.49428816371336
MSE:  272.0615420276147
MAE:  11.728722985139685
MAPE:  12.93224651355339
regression CNN-LSTM with early stopping

Now, if we only use the last window, the number of test data will be reduced to 100, and the results will be as follows (the results would be better).


    
RMSE:  14.465046204641993
MSE:  209.2375617024277
MAE:  11.103071579933166
MAPE:  16.74996404019945
regression CNN-LSTM with early stopping - last window

The values of the considered metrics in this state are close to the values reported in the paper.

The plot of the actual and estimated RUL curve for the case with Early-Stopping

Figure 23: The plot of the actual and estimated RUL curve for the case with Early-Stopping

The same plot can be displayed in ascending order, following the format of the paper.

Display the estimated and actual RUL values in ascending order for the case with Early-Stopping

Figure 24: Display the estimated and actual RUL values in ascending order for the case with Early-Stopping

We will restate the exact analyses mentioned in the previous section here.

It is observed that the MSE and MAE errors decrease during the training and evaluation process. The obtained MSE and MAE values, along with other considered metrics, are close to the values reported in the paper.

Typically, we expect that using all windows would provide a better metric for evaluating the test data, as considering only the last window could be more susceptible to noise. However, in this example, according to the provided curve, it is observed that with an increase in the RUL value, and especially in the middle values, the error increases from the actual values due to the higher RUL values (while it should be noted that the actual and estimated RUL values are quite close to each other, and the obtained curve matches well with the curve obtained in the paper).Therefore, considering only the last window, which has the lowest RUL, can provide less error compared to considering all windows. Thus, in fewer cycles (especially in the middle cycles due to larger RUL values), the probability of error increases, which is why the paper uses the last window for evaluation and achieving better results. This can be inferred from our results as well, where using the last window provided better results compared to using all windows.The result obtained in this section, using Early-Stopping and the CNN-LSTM model, provides the optimal and closest result to the paper.

References

  • Shcherbakov, M., & Sai, C. (2022). A hybrid deep learning framework for intelligent predictive maintenance of cyber-physical systems. ACM Transactions on Cyber-Physical Systems (TCPS), 6(2), 1-22.

πŸ‘©β€πŸ« About the Instructor

I am Mehran Tamjidi, a passionate educator and researcher in the field of machine learning and artificial intelligence. This repository is a part of my efforts to provide comprehensive and practical knowledge to students and enthusiasts.

πŸ“« Contact

Feel free to reach out if you have any questions or suggestions:

πŸ“ License

This project is licensed under the MIT License. See the LICENSE file for details.

License: MIT

Happy Learning! 😊

About

This repository contains the implementation of a method to predict the remaining useful life (RUL) of turbofan engines based on the NASA C-MAPSS dataset. The approach is based on the reference paper by Shcherbakov et al., 2022, and includes data preprocessing, model training, and evaluation steps.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published