Next Article in Journal
Precursor-Directed Synthesis of Graphitic Carbon Nitride–Biochar Composites for Improved Photodegradation of Recalcitrant Pharmaceuticals
Previous Article in Journal
Deep-Learning-Based Endpoint Attack Detection System for Digital Asset Management in Enterprise Environments
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Proceeding Paper

Estimation of Hybrid Deep Learning-Based Fail-Safe Control for Four-Wheel Steering Systems †

1
Department of Global Convergence, Kwangju Women’s University, Gwangju 62396, Republic of Korea
2
Robotics, Korea National University of Science and Technology, Daejeon 34113, Republic of Korea
*
Author to whom correspondence should be addressed.
Presented at 8th International Conference on Knowledge Innovation and Invention 2025 (ICKII 2025), Fukuoka, Japan, 22–24 August 2025.
Eng. Proc. 2025, 120(1), 61; https://doi.org/10.3390/engproc2025120061
Published: 11 February 2026
(This article belongs to the Proceedings of 8th International Conference on Knowledge Innovation and Invention)

Abstract

Functional safety in a four-wheel steering system is critical for smart vehicles, especially under steer-by-wire configurations where conventional methods fail to achieve 100% safety. In this study, we developed a hybrid AI-based fail-safe control framework that combines long short-term memory and convolution neural network classifiers for real-time fault detection, prediction, and safe state decision-making. The developed system was trained using steering sensor data, incorporating accurate response modeling and fault induction mechanisms. An LSTM model predicts deviations in steering behavior, while a random forest (RF) classifier identifies fault types and initiates safe state transitions in accordance with ISO 26262 functional safety guidelines. The system includes a Texas Instruments TMS320F28377D microcontroller and a rear steering actuator with a permanent magnet synchronous motor, utilizing controller area network communication for diagnostics and actuation. The system presents the potential of machine learning techniques to enhance the fail-safe capabilities of next-generation steer-by-wire systems.

1. Introduction

With the increasing integration of intelligent systems in vehicles, ensuring the reliable and fail-safe control of critical components such as steering motors has become an essential requirement, especially under the ISO 26262 automotive functional safety standard [1]. Four-wheel steering (4WS) systems enhance vehicle stability and maneuverability, but their reliance on precise motor control makes them vulnerable to sensor failures, actuator degradation, and external disturbances. A failure in motor behavior severely compromises safety, especially in autonomous or high-assist driving scenarios [2,3,4].
To address these challenges, we developed a novel deep learning-based motor control system for 4WS systems that satisfies ISO 26262 safety goals. The developed system leverages a hybrid convolutional neural network (CNN) and long short-term memory (LSTM) architecture to manage motor torque and angle control in real time, even in the presence of sensor faults or uncertainty [5]. The CNN components efficiently extract spatial features from raw sensor inputs such as speed, acceleration, and current signals, while LSTM captures temporal dependencies critical to dynamic motor behavior and vehicle response [6].
Unlike traditional proportional–integral–derivative or model-based control strategies, the hybrid CNN–LSTM controller enables non-linear, time-varying dynamics, enabling intelligent decision-making and real-time adaptation under fault conditions. To enhance safety compliance, the control framework incorporates a sequential probability ratio test (SPRT) module for fault detection. This statistical layer monitors the residuals between expected and observed motor responses and ensures timely transitions to fail-operational modes in the event of anomalies [7,8,9,10].
The developed system improves tracking accuracy and system stability and embeds redundancy and diagnostic mechanisms aligned with the ISO 26262 Automotive Safety Integrity Level requirements. Testing results, including simulation and hardware-in-loop validations, demonstrate the system’s ability to maintain safe and effective motor control during both normal operation and fault scenarios [11].
By introducing an ISO 26262-oriented, AI-enhanced motor control strategy for 4WS systems, the learning capacity of hybrid CNN–LSTM models is integrated with real-time fault detection, offering both performance and safety in a unified framework (Figure 1).

2. Methodology for Motor Speed Control

The developed hybrid CNN-LSTM-based motor control system for four-wheel steering is designed to operate with high reliability under ISO 26262 functional safety requirements. The design includes system initialization, activating all necessary subsystems as shown in Figure 2, such as the communication interface, neural network engine, and fault detection routines [12]. The control system receives critical input data via the controller area network bus, which includes motor feedback signals such as angular speed, torque commands, and other vehicle dynamics information.
Once the data are acquired, the system identifies the real-time speed of the motor by analyzing these inputs. These preprocessed data are then transmitted through a hybrid deep learning model composed of CNN and LSTM layers. The CNN component extracts spatial features from multi-sensor input patterns, while the LSTM component captures the temporal dependencies and dynamics of the motor behavior. Collectively, they are used to predict the expected motor response under current operating conditions. Simultaneously, the system performs a real-time comparison between the predicted motor speed and the measured signal. This functions as a fault detection mechanism to determine whether the motor is operating within safe bounds. If a potential fault is detected, the system decodes the fail-safe logic and transitions to a fallback mode. In this mode, the faulty motor speed input is replaced with the predicted value of the CNN–LSTM, and the motor speed is adjusted accordingly to ensure continued but safe operation [13,14,15,16]. Finally, the updated motor control signals are sent to the actuator, maintaining the correct motor behavior while preserving safety and stability. This closed-loop framework enables intelligent fault detection, robust motor control, and fail-safe response, fulfilling the real-time safety objectives of ISO 26262 for safety-critical vehicle systems.

3. Model Analysis

To enable intelligent fail-safe control in four-wheel steering motor systems, a hybrid deep learning architecture combining CNN and LSTM is employed. A mathematical model was analyzed for the design and implementation of the hybrid estimator, along with the sensor integration and performance evaluation metrics in the experiment (Figure 3).

3.1. Data Acquisition and Preprocessing

The system collects real-time sensor data, including motor angular velocity ω(t), motor torque τ(t), vehicle speed v(t), and acceleration a(t), from onboard sensors such as encoders and inertial measurement units. These signals are normalized using the minimum–maximum scale. This ensures consistent input scaling for the neural network and stabilizes training.
x n o r m = x x m i n x m a x x m i n
where x n o r m is the normalized scaling, x is the data input, x m i n is the minimum data value, and x m a x is the maximum data point.

3.2. CNN–LSTM Hybrid Architecture

The hybrid model is composed of 1D convolutional layers followed by LSTM layers. CNN extracts spatial features from the input signal window X, where n is the time window and m is the number of features. The convolution operation is defined as follows.
y i = j = 0 ω 1 x i + j · w j + b
Here, w j is the filter weight for the kth kernel, b is the bias term, x i + j is the input segment, and y i   is the output feature map. These extracted features are then passed to the LSTM unit, which models temporal dependencies. The LSTM cell operations are given by the following Equations (3)–(8).
Forget   gate   ( f t ) = σ w f · h t 1 , x , + b f
Input   gate   ( i t ) = σ w i · h t 1 , x , + b i
Candidate   cell   gate   ( c ˇ t ) = t a n h w c · h t 1 , x , + b c
Updated   cell   gate   ( c t ) = f c t 1 + i t · c ˇ t
Outputgate   ( o t ) = σ w o · h t 1 , x , + b o
Hidden   state   ( h t ) = o t t a n h ( c t )
Here,   w f ,   w i , w c ,   w o ,   b f ,   b i ,   b c ,   and   b o are the weights and biases of the forget gate, input gate, candidate gate, and output gates, respectively. σ is the sigmoid activation function,   i t is the in input of the t index, c t 1   is   the   previous   cell   state ,   h t 1 is the previous hidden state and is the output of LSTM at a time step. c ˇ t and c t   are the cell current and updated states.
The residual in the prediction is calculated as follows:
r t =   ω t   ω ^ ( t )
where the predicted motor speed w ^ (t) is compared to the actual measured speed ω ^ (t) to compute the residual. The model accuracy is assessed using the root mean squared error (RMSE) and mean absolute error (MAE). The plotted training curves demonstrate convergence and validation accuracy, validating model robustness. This residual is used in the sequential probability ratio test (SPRT) for fault detection.
MAE = 1 N i = 1 N t i t ^ i
RMSE = 1 N i = 1 N ( t i t ^ i ) 2
where N is the total data points; i represents the index of each data point; t i is the actual measured value; and t ^ i is the predicted value.

4. Results

The performance of the developed hybrid deep learning-based fail-safe motor control strategy was evaluated using both real-time data and predicted outputs. The key focus of the analysis was to examine the ability of the LSTM and CNN–LSTM models to accurately follow the motor speed command and correct deviations under fault conditions.

Motor Speed Prediction Without Fail-Safe Implementation

To evaluate the effectiveness of the developed hybrid CNN–CNN-LSTM-based fail-safe system, its behavior was analyzed both without and with the implementation of the fault-tolerant logic. Figure 4 presents the motor performance without any fail-safe mechanism. As shown in the left subfigure, although the live speed initially follows the command, there is a noticeable deviation in the latter stages, especially after 2000 s. This indicates that the motor is unable to maintain the commanded speed due to disturbance or fault conditions. Although the LSTM-adjusted output stabilizes the signal, the system exhibits persistent deviations from the commanded input, indicating the limitations of relying solely on a single deep learning model without incorporating structured fault isolation mechanisms.
In contrast, Figure 5 demonstrates the effectiveness of the developed fail-safe framework. With the CNN–LSTM model integrated alongside real-time monitoring, the system maintains an excellent alignment with the commanded speed even after 2000 s. The CNN–LSTM-adjusted speed shows a minimal deviation from the target, outperforming both the live signal and the LSTM-only correction. The inclusion of convolutional layers enhances spatial feature extraction, allowing the system to detect subtle sensor or actuator faults earlier. Moreover, the statistical fault detection mechanism, SPRT, triggers corrective control seamlessly by replacing faulty inputs with estimated values. As a result, the motor speed tracks the reference command much more accurately and consistently, validating the robustness and reliability of the fail-safe logic.
The developed hybrid deep learning model not only improves real-time speed prediction but also provides a strong resilience under fault scenarios, ensuring compliance with ISO 26262 safety expectations for critical systems such as four-wheel steering. To evaluate the prediction accuracy of the developed motor control models, the RMSE and MAE were calculated for each configuration, as summarized in Table 1. The LSTM model without a fail-safe logic shows relatively higher errors, with an RMSE of 0.95 and an MAE of 1.45, indicating more frequent and larger deviations between predicted and actual motor speeds. The introduction of a CNN layer enhances the baseline performance, as demonstrated by the CNN–LSTM model without fail-safe logic, which achieves an RMSE of 0.81 and a MAE of 1.05, indicating an improved learning of system dynamics. Performance gains are observed when fail-safe mechanisms are incorporated. Specifically, the LSTM model with fail-safe logic reduces the RMSE to 0.45 and the MAE to 0.54, confirming its increased robustness under fault conditions. The optimal configuration is achieved with the CNN–LSTM model integrated with fail-safe logic, yielding the lowest error metrics across all tested models: an RMSE of 0.54 and an MAE of 0.15. These findings underscore the efficacy of combining hybrid deep learning architectures with fault-tolerant strategies to sustain control performance in the presence of potential system failures, thereby aligning with the safety objectives outlined in ISO 26262.

5. Conclusions

We developed a hybrid deep learning-based system for fail-safe motor speed control in four-wheel steering systems to enhance reliability under ISO 26262 functional safety standards. By combining CNN with LSTM architectures, the system effectively learned both spatial and temporal features from motor-related sensor data to estimate and adjust motor speed under normal and faulty conditions. The integration of a fail-safe mechanism enables the real-time detection and compensation of faults by switching to predicted values from the hybrid model. The experimental results confirmed that the CNN–LSTM model with fail-safe logic significantly outperformed the other configurations, achieving the lowest RMSE and MAE, thereby ensuring a robust control and improved safety performance. The system developed demonstrates the potential of AI-driven control strategies to enhance both performance and resilience in safety-critical automotive systems. The system needs to include implementation on embedded automotive hardware, real-world testing, and integration with end-to-end vehicle control stacks.

Author Contributions

Conceptualization, T.T. and C.J.; methodology, T.T. and H.R.C.; software, T.T. and C.J.; validation, T.T., C.J. and A.A.; formal analysis, T.T.; investigation, T.T.; resources, H.R.C. and M.-H.H.; writing—original draft preparation, T.T.; writing—review and editing, T.T.; visualization, T.T.; funding acquisition, M.-H.H. T.T. and A.A. are co-first authors, as they contributed equally to this research work. All authors have read and agreed to the published version of the manuscript.

Funding

This work was supported by the Korea Institute of Industrial Technology as Development of an Industrial Skateboard with Longitudinal and Transverse Expansion Operations under Grant KEIT 20022022.

Institutional Review Board Statement

Not applicable.

Informed Consent Statement

Not applicable.

Data Availability Statement

No data was created and will be provided upon request.

Conflicts of Interest

The authors declare no conflicts of interest.

References

  1. ISO 26262; Road Vehicles—Functional Safety (Part 2: ISO 17288-2:2011 Part 2: Steering-Pulse Open-Loop Test Method). International Organization for Standardization (ISO): Geneva, Switzerland, 2011.
  2. Chen, T.; Chen, L.; Xu, X.; Cai, Y.; Jiang, H.; Sun, X. Passive fault-tolerant path following control of autonomous distributed drive electric vehicle considering steering system fault. Mech. Syst. Signal Process. 2019, 123, 298–315. [Google Scholar] [CrossRef]
  3. Cheng, Y.; Wang, Z.; Zhang, W.; Huang, G. Particle swarm optimization algorithm to solve the deconvolution problem for rolling element bearing fault diagnosis. ISA Trans. 2019, 90, 244–267. [Google Scholar] [CrossRef] [PubMed]
  4. Tasdelen, A.; Sen, B. A hybrid CNN-LSTM model for pre-miRNA classification. Sci. Rep. 2021, 11, 14125. [Google Scholar] [CrossRef] [PubMed]
  5. Li, X.; Chang, H.; Wei, R.; Huang, S.; Chen, S.; He, Z.; Ouyang, D. Online prediction of electric vehicle battery failure using lstm network. Energies 2023, 16, 4733. [Google Scholar] [CrossRef]
  6. Hochreiter, S.; Schmidhuber, J. Long short-term memory. Neural Comput. 1997, 9, 1735–1780. [Google Scholar] [CrossRef] [PubMed]
  7. Saadatnejad, S.; Oveisi, M.; Hashemi, M. LSTM-based ECG classification for continuous monitoring on personal wearable devices. IEEE J. Biomed. Health Inform. 2019, 24, 515–523. [Google Scholar] [CrossRef] [PubMed]
  8. Harkat, M.F.; Mansouri, M.; Abodayeh, K.; Nounou, M.; Nounou, H. New sensor fault detection and isolation strategy–based interval-valued data. J. Chemom. 2020, 3, 3222. [Google Scholar] [CrossRef]
  9. Bousmina, A.; Selmi, M.; Ben Rhaiem, M.A.; Farah, I.R. A hybrid approach based on GAN and CNN-LSTM for aerial activity recognition. Remote Sens. 2023, 15, 3626. [Google Scholar] [CrossRef]
  10. Teoh, J.W.; Teoh, W.L.; El-Ghandour, L.; Chong, Z.L.; Teh, S.Y. Redesigning the Joint SPRT Mean and Dispersion Control Chart Based on Mismatched In-control Performances. In Proceedings of the 2024 20th IEEE International Colloquium on Signal Processing & Its Applications (CSPA), Langkawi, Malaysia, 1–2 March 2024; pp. 12–17. [Google Scholar]
  11. Li, R.; Shang, Y.; Cai, J.; Liu, X.; Geng, L.; Qi, P.; Jiao, Z. Fault Detection and Fault-Tolerant Control Based on Bi-LSTM Network and SPRT for Aircraft Braking System. Chin. J. Mech. Eng. 2025, 38, 64. [Google Scholar] [CrossRef]
  12. Zou, S.; Zhao, W.; Wang, C.; Chen, F. Fault detection strategy of vehicle wheel angle signal via long short-term memory network and improved sequential probability ratio test. IEEE Sens. J. 2021, 21, 17290. [Google Scholar] [CrossRef]
  13. He, S.; Xu, X.; Xie, J.; Wang, F.; Liu, Z.; Zhao, F. Fault detection and fault-tolerant control of autonomous steering system for intelligent vehicles combining Bi-LSTM and SPRT. Measurement 2023, 212, 112708. [Google Scholar] [CrossRef]
  14. Zhao, Z.Q.; Xie, B.J.; Cheung, Y.M.; Wu, X. Plant leaf identification via a growing convolution neural network with progressive sample learning. In Asian Conference on Computer Vision; Springer International Publishing: Berlin/Heidelberg, Germany, 2014; pp. 348–361. [Google Scholar]
  15. Ur Rehman, A.; Belhaouari, S.B.; Kabir, M.A.; Khan, A. On the use of deep learning for video classification. Appl. Sci. 2023, 13, 2007. [Google Scholar] [CrossRef]
  16. Abbasi, A.A.; Hussain, L.; Awan, I.A.; Abbasi, I.; Majid, A.; Nadeem, M.S.; Chaudhary, Q.A. Detecting prostate cancer using deep learning convolution neural network with transfer learning approach. Cogn. Neurodyn. 2020, 4, 523–533. [Google Scholar] [CrossRef] [PubMed]
Figure 1. Schematic of developed system’s workflow.
Figure 1. Schematic of developed system’s workflow.
Engproc 120 00061 g001
Figure 2. Architecture of developed system.
Figure 2. Architecture of developed system.
Engproc 120 00061 g002
Figure 3. Experiment setup for the hybrid deep learning-based fail-safe method.
Figure 3. Experiment setup for the hybrid deep learning-based fail-safe method.
Engproc 120 00061 g003
Figure 4. Comparison of the live motor speed between actual and the predicted values.
Figure 4. Comparison of the live motor speed between actual and the predicted values.
Engproc 120 00061 g004
Figure 5. Comparison of the live motor speed between the actual and the predicted values.
Figure 5. Comparison of the live motor speed between the actual and the predicted values.
Engproc 120 00061 g005
Table 1. RMSE and MAE in motor speed prediction.
Table 1. RMSE and MAE in motor speed prediction.
ModelRMSEMAE
LSTM (no fail-safe)0.951.45
CNN-LSTM (no fail-safe)0.811.05
LSTM (with fail-safe)0.450.54
CNN-LSTM (with fail-safe)0.540.15
Disclaimer/Publisher’s Note: 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

MDPI and ACS Style

Talluri, T.; Angani, A.; Jeong, C.; Hwang, M.-H.; Cha, H.R. Estimation of Hybrid Deep Learning-Based Fail-Safe Control for Four-Wheel Steering Systems. Eng. Proc. 2025, 120, 61. https://doi.org/10.3390/engproc2025120061

AMA Style

Talluri T, Angani A, Jeong C, Hwang M-H, Cha HR. Estimation of Hybrid Deep Learning-Based Fail-Safe Control for Four-Wheel Steering Systems. Engineering Proceedings. 2025; 120(1):61. https://doi.org/10.3390/engproc2025120061

Chicago/Turabian Style

Talluri, Teressa, Amarnathvarma Angani, Chanyeong Jeong, Myeong-Hwan Hwang, and Hyun Rok Cha. 2025. "Estimation of Hybrid Deep Learning-Based Fail-Safe Control for Four-Wheel Steering Systems" Engineering Proceedings 120, no. 1: 61. https://doi.org/10.3390/engproc2025120061

APA Style

Talluri, T., Angani, A., Jeong, C., Hwang, M.-H., & Cha, H. R. (2025). Estimation of Hybrid Deep Learning-Based Fail-Safe Control for Four-Wheel Steering Systems. Engineering Proceedings, 120(1), 61. https://doi.org/10.3390/engproc2025120061

Article Metrics

Back to TopTop