Abstract
The air turbine starter (ATS) is a critical device for starting aircraft engines, in which rolling bearings play a core role. Predicting the remaining useful life (RUL) of rolling bearings is challenged by complex dependencies. Feature extraction, as a crucial step for RUL prediction, reveals the operational state of the bearings. To comprehensively extract the operational characteristics of rolling bearings, this paper introduces the multi-scale adaptive dual forecast (MADF) model. First, the model employs a multi-scale adaptive router to dynamically select optimal patch scales. Subsequently, these scales are used to segment the data into different temporal slices. For each scale, the model applies a dual forecast block to capture global and local temporal dependencies. Finally, a multi-scale aggregator integrates information across different bearing scales, further refining the multi-scale modeling process to predict the RUL. The experimental results demonstrate that the proposed method achieves reductions in mean absolute error (MAE) by 15.76%, 24.79%, 33.08%, 39.83%, and 49.15%; root mean square error (RMSE) by 16.01%, 29.64%, 29.97%, 38.72%, and 47.92%; and score by 21.01%, 34.52%, 41.29%, 43.61%, and 47.52% compared to the multi-resolution time-series transformer (MTST), patch time-series transformer (PatchTST), TimesNet, Scaleformer, and convolutional neural network (CNN) models, respectively. The effectiveness of the proposed method is validated through experimental data from the RUL prediction of civil aircraft-bearing components, showcasing its ability to achieve high-precision predictions of bearing RUL.
Introduction
The air turbine starter (ATS) serves as the core starting device in the engine system of civil aircraft, as shown in Figure 1. The ATS converts compressed air pressure into mechanical force, sufficient to increase the speed of the engine to the required starting speed (Guo and Ji, 2023). Consequently, preventing ATS failures is of paramount importance. Prognostics and health management (PHM) enhances the reliability and utilization efficiency of mechanical equipment through monitoring and analyzing data, with remaining useful life (RUL) prediction being its foundation and core (Zhang et al., 2023; Zheng et al., 2024). Among the various components of the ATS, rolling bearings are a crucial fundamental part (Guo et al., 2024). Therefore, accurately predicting the RUL of rolling bearings is essential to ensure the reliable operation of the ATS.

Air turbine starter.
Currently, techniques for estimating the RUL of bearings are primarily categorized into model-based and data-driven methods (Li et al., 2023; Nimri et al., 2023). The former relies excessively on extensive prior knowledge of the equipment, leading to increased experimental costs and complexity (Ferreira and Gonçalves, 2022). In contrast, data-driven methods exploit hidden degradation patterns within sensor data for bearing RUL prediction (Wu et al., 2023b). This method is less dependent on operating conditions, offering broader applicability in real-world scenarios. In RUL prediction, effective feature extraction enables the model to identify potential degradation information from complex bearing data, directly impacting the accuracy of the predictions. In recent years, deep neural networks (DNNs), as a key data-driven technology, have demonstrated remarkable potential in bearing RUL prediction due to their powerful feature learning capabilities. Among these, convolutional neural networks (CNNs) (Jiang et al., 2024; Yin et al., 2024) excel at extracting local degradation features from data, while long short-term memory networks (LSTMs) (He et al., 2024b; Xue et al., 2023) are adept at capturing long-term dependencies in temporal data. However, the bearing signals collected from multiple sensors often exhibit nonlinear and highly correlated characteristics, which, when combined, form complex multivariate time series. This makes the extraction and analysis of in-depth features more challenging (He et al., 2024a). Traditional DNNs encounter the issue of incomplete feature extraction when processing such data, as they struggle to effectively capture both local and global features within a single model. Consequently, they are unable to comprehensively encapsulate the operational characteristics of the bearing across its entire life cycle.
To address this issue, patch time-series transformer (PatchTST) (Nie et al., 2023) proposes an innovative feature extraction method—patch segmentation. Specifically, the model segments the original time series into subsequence-level patches based on a patch size, retaining local semantic information, and further models the temporal dependencies between patches to capture global features. This approach improves the identification of complex patterns within the time series, leading to better prediction performance. Therefore, applying this patch segmentation technique to bearing data effectively mitigates the challenges posed by multiple feature data in complex systems. To fully learn temporal information within patches, we leverage the temporal convolutional network (TCN) (Peng et al., 2023), which employs dilated convolution to flexibly adjust the receptive field so as to capture local details from time series. To further enhance global modeling capabilities, the efficient channel attention network (ECA-net) (Waghumbare et al., 2024) is employed to capture key features between patches. This network introduces an adaptive channel attention mechanism that dynamically adjusts channel weights to achieve robust adaptability across various input data. Despite PatchTST’s excellent performance in feature modeling through the patch segmentation method, it primarily focuses on feature analysis at a single scale. Bearing degradation data exhibit diverse varying patterns across different time scales (Ying and Lu, 2024). These include local changes (e.g. short-term vibrations caused by small cracks on the bearing surface) and global changes (e.g. long-term degradation trends resulting from prolonged operation and wear accumulation). This single-scale analysis may lead to the model overlooking certain temporal patterns, limiting its ability to capture multi-scale features in the bearing degradation process and ultimately affecting the accuracy of RUL prediction.
So, considering information at multiple time scales is crucial for accurately capturing the dynamic degradation process of bearings. In recent years, various advanced methods based on multi-scale feature extraction have been proposed. For example, the multi-resolution time-series transformer (MTST) (Zhang et al., 2024) adopts a multi-branch architecture to extract features at different time scales. Pyraformer (Liu et al., 2022) introduces a multi-layer pyramid attention module (PAM) that progressively extracts features at different resolutions, from high to low. Scaleformer (Shabani et al., 2023) utilizes multi-frequency down-sampling and a multi-layer network architecture for seamless multi-scale information integration. Thus, combining the patch segmentation method of PatchTST with multi-scale feature extraction techniques enables data segmentation based on different patch sizes, allowing the model to better adapt to variations in the bearing over multiple time scales. The patch size determines the granularity of each time segment, and, based on these segmented patches, the model can extract and integrate features at varying temporal granularities. This approach can more comprehensively capture the multi-hierarchical structure of the bearing data and further improve RUL prediction accuracy. However, these multi-scale feature modeling approaches typically rely on manually defined scale partitioning rules, such as fixed window sizes (e.g. MTST) or predefined resolution hierarchies (e.g. Pyraformer and Scaleformer). Bearing data collected from different sensors often intertwines with complex periodic and trend patterns. Simple scale partitioning may overlook the temporal correlations within the bearing data and the interactions between different scales, potentially failing to adapt to the degradation changes of bearings over different periods. This partitioning approach could disrupt the underlying structure of the data, thereby limiting the model’s ability to accurately capture dynamic characteristics.
It is necessary to conduct an analysis of the inherent laws of time series to establish more flexible and reasonable scale partitioning strategies. Time-series decomposition offers an effective method for mining the intrinsic characteristics of time series. By leveraging underlying patterns and prior knowledge to decompose complex time series into trend and seasonal components, disentangling mixed temporal patterns. Models like Autoformer (Wu et al., 2021) and frequency enhanced decomposition transformer (FEDformer) (Zhou et al., 2022) employ additive time-series decomposition to sequentially extract trend and periodic components of the time series, thereby gaining a more accurate understanding of the dynamic properties of the data and enabling models to better balance long-term trends and short-term fluctuations. Building on this, an adaptive selection mechanism has been developed to further enhance the flexibility of time-series decomposition. This mechanism dynamically selects appropriate scales for modeling based on the intrinsic properties of bearing data, thereby eliminating the cumbersome process of manually adjusting scale partitions.
To further expand and deepen the research, this paper innovatively combines an adaptive selection mechanism equipped with time-series decomposition technology and multi-scale patch feature modeling methods, proposing the multi-scale adaptive dual forecast (MADF) model. This model dynamically extracts and integrates time-series features across multiple scales, capturing both local and global trend characteristics, thereby improving the accuracy and reliability of RUL prediction for air turbine starter rolling bearings. The primary innovations of this work are as follows:
We propose a multi-scale adaptive feature extraction strategy. It utilizes a multi-scale adaptive router with temporal decomposition to select optimal patch sizes. After the bearing data is divided into various patch types, a multi-scale aggregator combines the temporal correlations of these segments. This approach flexibly accommodates data at different scales, effectively captures multi-scale features, and better represents variable patterns in bearing.
We propose a multi-scale patch dual forecast block. This module integrates TCN with an improved efficient channel attention (IECA) mechanism to capture both intra-patch and inter-patch temporal dependencies. It can efficiently extract local and global information from multivariate bearing data while revealing the intrinsic relationships among variables.
Related works
TCN network
The TCN network is an efficient algorithm specifically designed for processing time-series data. It primarily consists of dilated causal convolution layers and residual connections.
Dilated causal convolution, as the core module of TCN, combines the strengths of causal and dilated convolutions, ensuring that the output at time
where * denotes the convolution,
The residual connection in the TCN is composed of dilated causal convolution layers and rectified linear unit (ReLU) activation functions. The residual connection enhances gradient propagation by directly linking inputs and outputs of the previous layer. The network further incorporates weight normalization and dropout layers for regularization, mitigating overfitting. In addition, a
Efficient channel attention network
ECA-Net is a new type of channel attention mechanism, as illustrated in Figure 2. Its core module—efficient channel attention (ECA)—ingeniously employs an adaptive 1D convolutional layer to capture inter-channel dependencies. The ECA module involves three steps. (1) Global average pooling (GAP) averages the spatial dimensions (height
where
where ⊗ denotes element-wise multiplication.

Diagram of ECA module.
Methodology
Multi-scale adaptive dual forecast model
ATS bearing data pre-processing
For monitoring the condition of the ATS bearing, H sensors are concurrently deployed to collect multi-dimensional feature values of bearings under various operating conditions, serving as the input data for the model. In this context, the value of H is set to 3, indicating that three types of sensors are used for signal acquisition: a vibration acceleration sensor, a torque sensor, and a pressure sensor. For the bearing data collected by each individual sensor is denoted as
The overall model architecture
The proposed MADF model aims to capture temporal dependencies by extracting features at different time scales, thereby enabling accurate prediction of the RUL of bearings. The MADF model consists of three MSF modules stacked in a residual connection manner. For the jth layer of MADF (
The structure and process within the MSF block are illustrated in Figure 3. First, the multi-scale adaptive router equipped with a time-series decomposition module is proposed, which adaptively selects specific patch sizes by dynamically analyzing the trend information of the input bearing data. Next, the bearing data is non-overlappingly segmented into multiple time patches based on the chosen patch size

The architecture of the MSF block.
MSF block
The MSF block entails three components: (1) multi-scale adaptive router; (2) multi-scale patch dual forecast block; and (3) multi-scale aggregator. The following sections provide a detailed description of these three key modules.
Multi-scale adaptive router
We have designed a multi-scale adaptive router to dynamically select the optimal patch sizes, where the adaptive router incorporates a time-series decomposition module, which integrates periodic decomposition and multi-kernel trend decomposition operations.
To eliminate the interference of external factors such as external temperature variations and load fluctuations on bearing data, it is essential to analyze the periodic characteristics of the data. The fast Fourier transform (FFT) (Ma and Dan, 2023) layer is employed to convert the time-domain signal
Here,

Time-series decomposition: (a) periodic decomposition and (b) multi-kernel trend decomposition.
The traditional moving average method highlights trends by first applying padding operations to the data boundaries, followed by calculating the average of data within a fixed window. However, due to its reliance on a single window for moving average, it often fails to accurately capture the complex trend variations in the bearing operating condition (Huang and Liu, 2024). To overcome this limitation, an innovative multi-kernel trend decomposition module is proposed, as shown in Figure 4(b). The core of this module lies in a set of 1D moving average kernels with varying sizes
where
To determine the optimal patch sizes, an adaptive router is employed to dynamically compute the route weights
where
Multi-scale patch dual forecast block and multi-scale aggregator
This multi-scale patch dual forecast block collaborates with a multi-scale adaptive router, dynamically adjusting the multi-scale modeling process based on the varying time scale options of the bearing data. This block consists of two main components: patch segmentation and a dual forecast block.
The MADF model consists of three MSF blocks stacked together via residual connections. Considering the multi-scale characteristics and temporal dependencies and aiming to achieve progressive learning of information across multiple layers at different scales. Each MSF module corresponds to a set
Based on the patch set
Intra-patch
When dealing with multivariate bearing data, TCN integrates various features from the bearing data into a unified 1D feature representation through sharing the weights of the convolutional kernels. This not only effectively captures the common inherent temporal dependencies across the different sensor signals but also simultaneously reveals the potential correlations between these signals.
For the selected patch size

Multi-scale patch dual forecast block: (a) the framework of TCN for handling temporal dependencies within patches. n = 16, 64, 128 and (b) diagram of improved ECA (IECA) module.
To ensure dimensional consistency for subsequent processing, a 1D convolutional transformation is applied along the feature dimension to obtain the final output
Inter-patch
In the ECA module, relying solely on global average pooling to aggregate features from each patch proves insufficient for effectively capturing key bearing data patterns. Inspired by the CAM module, an enhanced approach is proposed by integrating both global average pooling and global max pooling. This parallel capture of dependencies between different patches from both the average and salient feature dimensions enhances the channel attention mechanism’s ability to focus on critical features. For bearing degradation systems, this method offers more flexibility and retains critical characteristic information of bearings across different operating stages, thereby improving prediction performance. Consequently, an improved ECA module, termed IECA, is introduced, as illustrated in Figure 5(b). For the patch set
To comprehensively consider both the local correlations within patches and the global correlations between patches, we perform an element-wise summation operation along the corresponding dimensions between the internal output
The multi-scale aggregator enhances the model’s ability to capture multi-scale dynamic patterns by integrating bearing features from different scales. Initially, the
where
Experiments
This section employs a test platform for civil aircraft-bearing components to acquire sensor signals from experimental bearings. Initially, a brief overview of the experimental bearing dataset is provided. Following that, the experimental setup and parameter settings are discussed, after which the dataset is used to evaluate the performance of the proposed prediction framework. Finally, ablation experiments and comparative experiments are conducted to validate the effectiveness of the improved methods.
Bearing data set
To verify the method proposed in this paper, we conducted accelerated fatigue experiments using the RUL prediction test bench for bearing components of civil aircraft. The hardware of the experimental platform consists primarily of a drive motor, gearbox, rolling bearings, connecting shafts, disk flywheels, pulleys, adjustable load couplings, and other components. As illustrated in Figure 6(a), three main sensors were employed to monitor the bearings throughout their lifespan, from normal operation to failure: the vibration acceleration sensor measures the vibration acceleration of the bearings during the experiment; the pressure sensor measures the magnitude of the applied radial force; and the torque sensor measures the working torque of the transmission system. Bearing failures are primarily categorized into pitting and wear. Pitting is caused by surface micro-fatigue induced by alternating stress, resulting in the formation of pits or the detachment of small particles. Wear typically occurs prior to pitting, primarily due to inadequate lubrication or the ingress of contaminants. Due to the unidirectional nature of gear transmission, the side subjected to greater stress is more prone to wear. Figure 6(b) presents a photograph of deteriorated bearings, providing a visual representation of their degradation. The experimental dataset includes vibration acceleration, torque, and pressure data. Table 1 presents the sampling settings of the three sensors, while Table 2 lists the two operating conditions. Under the first operating condition (speed: 1400 RPM), experimental data is collected from four bearings (training bearing 1_1, bearing 1_4, and test bearing 1_2 and bearing 1_3). In the second operating condition (speed: 1500 RPM), experimental data is gathered from three bearings (training bearing 2_1, bearing 2_2, and test bearing 2_3).

(a) RUL predictive test bed for bearing components and (b) deteriorated bearing photographs.
Sampling settings of vibration acceleration, torque, and pressure.
Representation of bearing data under different operating conditions.
Experimental setup and parameter settings
The configuration of the computer used in the laboratory is as follows: The processor is an Intel(R) Xeon(R) W-2133 CPU running at 3.60 GHz with 32 GB of RAM onboard. The operating system is Windows 10 (64-bit), and the programming simulation environment is Python 3.7.16.
Experimental setup
In the prediction of bearing remaining useful life, we integrated existing domain knowledge to extract features from sensor data and design the model. We replace each minute of sensor data with corresponding statistical features to serve as new input for predicting the bearings’ RUL. These features include peak-to-peak value, standard deviation, and root mean square (RMS), among others. By analyzing the monotonicity and trends of these features, we identified the most suitable ones for training and testing, ultimately leading to the selection of the RMS value. The related parameters of the MADF model are shown in Table 3. The number of training epochs is set to 300, and the initial learning rate is 0.004. When the number of training epochs reaches 220, the learning rate changes to 0.0008. The loss function is mean squared error (MSE), and the optimization algorithm used is Adam.
Related parameters of the MADF model.
To validate the accuracy and robustness of the proposed model, three sets of evaluation metrics are introduced to assess the differences between the predicted RUL and the actual RUL: mean absolute error (MAE), root mean square error (RMSE), and score. The formulas for the three indicators are
where
Parameter settings
We selected Bearing1_2, Bearing1_3, and Bearing2_3 to validate the advantages of multi-scale features in RUL prediction. We varied the number of optimal patch sizes q (q = 1, q = 2, q = 3, and q = 4) selected by the adaptive router to compare the MAE, RMSE, and score values corresponding to different q values. The experiment results are shown in Table 4. Compared to the single segmentation scale (q = 1), multi-scale patch segmentation (q = 2, 3, 4) for feature extraction yields better prediction performance. Furthermore, the MADF model performs best when q = 2, with MAE reduced by 13.82% and 21.70% compared to q = 3 and q = 4, RMSE reduced by 12.21% and 21.64%, and score reduced by 13.48% and 23.32%, respectively. Notably, as q increases to 3 and 4, the model’s prediction performance deteriorates, indicating that more scales do not necessarily lead to better prediction results. This demonstrates that the adaptive routing function’s selection of key scales can enhance prediction accuracy to some extent. Therefore, in the following experiments, we selected a segmentation scale of q = 2 as one of the experimental conditions for investigation.
The prediction accuracy varies with q.
The bold values in Table 4 demonstrate that setting the number of optimal patch sizes (q) to 2 yields the lowest MAE, RMSE, and Score, thereby indicating the model's highest prediction accuracy.
Based on the above experimental results, we determined that the optimal number of patch sizes for the adaptive router selection is q = 2. Since the model is composed of three stacked MSF modules, we visualized the loss curves for both the training and testing sets under two operating conditions to validate the training performance of the model. In Condition 1, bearing 1_1 was used as the training set, and bearing 1_3 as the testing set; in Condition 2, bearing 2_1 was used for training, and bearing 2_3 for testing. The model was trained for 100 epochs with a learning rate of 0.04. As shown in Figure 7(a) and (b), under the configuration of three stacked MSF modules, the loss curves for both the training and testing sets converge, with only a small difference between them. This indicates that the model demonstrates good stability across different operating conditions. Furthermore, the smooth loss curves without significant fluctuations suggest that the model does not suffer from noticeable overfitting or underfitting during the training process. This further validates the effectiveness of the MADF model in multi-scale feature modeling.

The loss of training and testing: (a) Condition 1 and (b) Condition 2.
Performance evaluation, ablation experiments, and comparative experiments
Performance evaluation
Taking bearing 2_3 as an example, Figure 8 illustrates the whole lifetime degradation trend curves of the bearing. The data collected from three sensors (vibration acceleration, torque, and pressure) demonstrates that between time steps 0 and 4000 seconds, the RMS values of the three signal curves remain within a stable range, indicating that the bearing operates in good condition during this period without significant wear. However, at 4230 seconds, the RMS values of the three signals exceed the critical threshold for the first time, indicating that the bearing has malfunctioned. Subsequently, the signal values continue to rise, with increasing fluctuation amplitude, reflecting the progressive deterioration of the bearing’s performance and an accelerating degradation rate. Finally, at 5760 seconds, the bearing completely fails and ceases operation. In summary, the bearing exhibits relatively stable performance during the early operational stage, while performance degradation primarily emerges in the mid-to-late stages, showing an accelerating deterioration trend that ultimately leads to failure.

The multi-sensor data of bearing2_3.
During the mid-to-late phase of bearing operation, degradation feature signals collected by the three types of sensors are particularly obvious, facilitating more effective feature extraction and learning by the model. Therefore, initiating prediction of bearing data from the mid- stage of the bearing’s lifecycle is more conducive to accurately capturing degradation patterns, thereby improving the reliability and practicality of RUL estimation. To this end, we further present the RUL prediction results for the test bearings (Bearing 1_2, Bearing 1_3, and Bearing 2_3) in the mid-to-late stages from the validation dataset, as shown in Figure 9(a)–(c). When evaluating the performance of these three bearings, the MAE for bearing 1_2 is 0.0266, and the RMSE is 0.0316; for bearing 1_3, the MAE is 0.0221, and the RMSE is 0.0276; for bearing 2_3, the MAE is 0.0239, and the RMSE is 0.0297. These results indicate that the proposed method demonstrates superior performance and high precision in predicting the RUL of bearing components, effectively capturing the degradation characteristics of the bearings, thereby providing reliable support for practical applications.

RUL prediction results for civil aircraft-bearing components: (a) Bearing1_2, (b) Bearing1_3, and (c) Bearing2_3.
Ablation experiment
To evaluate the effectiveness of the proposed MADF model, an ablation study of the proposed approach is performed. Specifically, we replaced the multi-kernel trend decomposition module with a single-kernel trend decomposition module and removed the time-series decomposition, inter-patch (IECA), and intra-patch (TCN) modules, respectively, to verify the importance of each component to the model’s performance. The experimental results can be found in Table 5 and Figure 10(a) and (b).
Evaluation metrics (RMSE and score) in the ablation experiment.
The bold values in Table 5 indicate that the proposed method achieves the lowest RMSE and Score compared to other ablation models, further confirming the superior prediction accuracy of the MSDF model.

Comparison of (a) RMSE and (b) score for the ablation experiment.
As shown in Figure 10, the proposed MADF model has the minimum error range of RMSE and score. Table 5 highlights the unique contribution of each module. Initially, when the time-series decomposition (W/O Time-series Decomp) module is removed, the RMSE increases by 24.55% and the score by 24.42% compared to the proposed method. This indicates that time-series decomposition effectively captures the temporal dynamics of the bearing data, facilitating the identification of appropriate patch sizes for combinations. Next, replacing the multi-kernel trend decomposition with single-kernel trend decomposition results in a 15.72% increase in RMSE and a 21.32% increase in score compared to the proposed model. However, when compared to the W/O Time-series Decomp setting, the RMSE decreases by 10.48% and the score by 3.95%. This indicates that multi-kernel trend decomposition effectively improves the model’s predictive accuracy and plays a more significant role in time-series decomposition than its single-kernel trend decomposition. Furthermore, removing the inter-patch (IECA) and intra-patch (TCN) modules leads to a considerable performance decline. The RMSE increases by 34.55% and 39.13%, while the score rises by 38.32% and 42.51%, respectively. This indicates that TCN excels at capturing local patterns within individual patches, aiding in the characterization of fine-grained degradation features. Meanwhile, IECA identifies broader global patterns across patches, effectively enhancing the model’s overall representational capacity.
Comparative experiments
In this section, we focus on the prediction of the RUL of the tested bearings (Bearing1_2, Bearing 1_3, and Bearing 2_3). Through a series of comparative experiments, we validate the superiority of the proposed method. Figure 11(a)–(c) display the prediction results of the proposed method compared to various baseline models, including MTST, PatchTST, TimesNet, Scaleformer, and convolutional neural network (CNN) models. Among them, CNN represents a conventional deep learning network; Scaleformer represents a more advanced network capable of multi-scale feature extraction; and TimesNet has demonstrated outstanding performance in recent time-series forecasting tasks. PatchTST introduces an innovative patch segmentation mechanism, which effectively captures local patterns in time series and enhances the model’s ability to capture long-term dependencies. MTST further improves upon PatchTST by incorporating a multi-branch structure for patch segmentation, thereby enhancing the model’s multi-scale feature representation and prediction performance. Table 6 provides detailed values for the three evaluation metrics, further quantifying the performance of the MADF model in the RUL prediction task.

RUL prediction results for the proposed approach and other models: (a) Bearing1_2, (b) Bearing1_3, and (c) Bearing2_3.
Evaluation metrics results for the proposed method and other models.
The bold values in Table 6 indicate that the proposed method achieves the lowest MAE, RMSE, and Score compared to other baseline models, further confirming the superior prediction accuracy of the MSDF model.
In all experimental models, we consistently used a learning rate setting of 0.0008. By analyzing the average evaluation metrics for the three test bearings, we found that, compared to the MTST, PatchTST, TimesNet, Scaleformer, and CNN models, the proposed method attained reductions in MAE by 15.76%, 24.79%, 33.08%, 39.83%, and 49.15%, respectively; RMSE by 16.01%, 29.64%, 29.97%, 38.72%, and 47.92%; and score by 21.01%, 34.52%, 41.29%, 43.61%, and 47.52%. The results of various evaluation metrics indicate that the proposed method outperforms other models in terms of performance. A deeper analysis reveals that, in comparison with the traditional deep learning network CNN, Scaleformer’s multi-scale feature extraction mechanism offers certain advantages in capturing variations across different temporal scales in bearing operation data. In comparison with TimesNet, the patching mechanism introduced by PatchTST provides greater innovation and effectiveness in bearing feature extraction. Thus, MTST enhances the representation of complex multi-scale features by combining patch division with a multi-branch structure, making it more suitable for modeling bearing degradation trends. The proposed MADF model exhibits superior performance improvements, highlighting the effectiveness of the adaptive router equipped with time-series decomposition in multi-scale modeling. This module flexibly allocates patch scales across different time scales for feature modeling, enabling more accurate prediction of the bearing degradation process.
Conclusion
In this paper, we propose a model for predicting the RUL of bearings, referred to as the MADF model. The innovation of this model lies in the introduction of patches with multiple different scales. By excluding the interference of the external environment, the adaptive routing mechanism dynamically selects and aggregates specific scale features based on the bearing degradation trend, thereby further enhancing the accuracy and performance of predictions. The model implements a dual forecast mechanism on the segmented data to capture the temporal dependencies both within different patches and between them. By integrating multi-scale features and an adaptive routing strategy, the MADF model not only strengthens the model’s adaptability to complex data features but also effectively provides more reliable support for bearing health management.
Footnotes
Declaration of conflicting interests
The author(s) declared no potential conflicts of interest with respect to the research, authorship, and/or publication of this article.
Funding
The author(s) disclosed receipt of the following financial support for the research, authorship, and/or publication of this article: This work was supported by the National Natural Science Foundation of China under Grant No. 62173331, in part by the Tianjin Science and Technology Plan Project under Grant No. 23JCYBJC00060, in part by Civil Aviation Safety Operation Guarantee Capability Construction Project under Grant 202412, in part by the Project of Aviation Science Foundation under Grant 2019ZD067007, and in part by the Special Program of Talents Development for Excellent Youth Scholars in Tianjin under Grant TJTZJH-QNBJRC-2-19.
Data availability statement
Data sharing is not applicable to this article as no datasets were generated or analyzed during the current study.
