1. Introduction
The urban population is growing at an annual rate of 1.8% due to the ongoing acceleration of global urbanization [1], so the use of urban vehicles is placing an increasing burden on transportation systems. Urban governance in various countries is faced with many problems such as inefficient public transportation systems, frequent accidents, and increased greenhouse gas emissions, which seriously affect the travel efficiency and quality of life of residents, and bring challenges to the sustainable development of cities [2]. Therefore, accurate traffic flow prediction is considered a key factor in solving these difficulties. Through traffic forecasting, urban traffic management departments can implement early intervention measures to help the public make more reasonable travel choices, thereby reducing the pressure on the transportation system and improving travel experience and satisfaction.
Traffic flow forecasting methods have significantly changed in recent years as a result of the continual improvement of data monitoring technology and the advancement of science and technology. Traditional statistical methods used to be an important part of traffic flow prediction, but They have gradually been eliminated due to limitations such as the insufficient ability to capture complex nonlinear relations. Deep learning methods and a series of emerging methods, with their powerful feature learning capabilities and adaptability to massive data, have brought new opportunities to the field of traffic flow prediction and anomaly detection, demonstrating significant advantages.
The paper offers a comprehensive analysis of the impact of traditional methods and deep learning methods on various traffic flow prediction problems. Specifically, this article will explain from the following perspectives: Firstly, this paper analyzes the performance of different models in traffic flow prediction and discusses the advantages and limitations of traditional methods and deep learning methods in this problem; Secondly, explores how emerging methods can improve the conventional models and deep learning approaches to enhance the accuracy of traffic flow forecasting; Finally, the application of traditional methods, deep learning methods and emerging technologies in anomaly detection techniques is evaluated. These discussions could provide important references and guidance for research and practice in related fields.
2. Traffic-flow prediction
Traffic flow prediction constitutes a critical element in the domains of traffic system design, traffic regulation, and the management of intelligent vehicle systems [3], which usually refers to the estimation of vehicle flow or traffic conditions on roads during a specific period in the future. It can assist relevant personnel in corresponding traffic management and traffic control, and also help travelers make more convenient choices. Consequently, traffic flow prediction is a significant area of study within the discipline of traffic engineering. This research domain has evolved from traditional statistical approaches to the adoption of machine learning and deep learning methodologies, thereby developing a range of effective predictive models.
2.1. Traditional methods
Initial traffic flow forecasting utilizing conventional techniques predominantly depended on established statistical approaches, including the ARIMA model, seasonal time series models, exponential smoothing models, and linear regression models [4]. These methods extract trends and seasonal features from historical traffic flow data through time series analysis. Among them, the Kalman filter and integrated autoregressive moving average are the most studied statistical techniques for predicting time series data. Pavlyuk [5] made use of the assumptions of the ARIMA model, space-time model, multi-spatial state model, and other model specifications to predict the traffic of small sections, and found that ARIMA could flexibly understand the operation mode of traffic and the flow relationship between adjacent locations and roads. Emami et al. [6] employed the Kalman filtering algorithm to forecast traffic flow near intersections in the context of connected vehicles. The research results showed that when the penetration rate exceeded 20%, the performance of the Kalman filter was good. Many experiments have confirmed that ARIMA models have good predictive performance for random traffic flow, but their ability to handle nonlinear and complex patterns is limited [7]. For example, ARIMA models typically assume that the data is stationary, which often does not hold in actual traffic flow data. In addition, traditional methods have high data requirements, especially in cases where the amount of data is insufficient or there are missing values, and the prediction performance will significantly decrease. Therefore, the emphasis in traffic flow prediction research is progressively transitioning from conventional statistical learning approaches to deep learning methodologies.
2.2. Deep learning methods
The core idea of deep learning methods is to automatically extract effective features from large amounts of data by building deep neural networks, thereby improving the accuracy and efficiency of predictions. Feature learning no longer requires manually providing created features, they will automatically learn other complex features [8]. Deep learning is an artificial intelligence paradigm that has sparked great interest in academia and demonstrated greater potential than traditional statistical learning prediction methods.A deep belief network (DBN) represents an early methodology in deep learning that has been employed for the prediction of traffic flow. Huang et al. [9] used a stacked restricted Boltzmann machine for greedy layer-by-layer training, followed by fine-tuning to achieve unsupervised feature learning of DBN. When traffic flow is low, the predicted results of DBN may not be able to keep up with fluctuations in the number of vehicles. However, during peak periods of high traffic flow, DBN's predictions match the actual flow very well, indicating that DBN can effectively learn the patterns of the transportation system and demonstrate potential in predicting during peak periods. Deep learning architectures, such as long short-term memory networks (LSTM) and convolutional neural networks (CNN) have also been used to anticipate traffic flow. Yang et al. [10] proposed LSTM+, which can flexibly capture time dependence in data and memorize long-term and short-term timing information, thereby improving the accuracy of prediction. Zhao et al. [11] utilized a Temporal Convolutional Network (TCN) architecture characterized by causal convolution and a one-dimensional fully convolutional network structure to forecast traffic flow. They also added dilated convolution and residual layers to the TCN model, which properly projected the total number of cars at the intersection for the following 15 minutes based on past traffic flow data sequences. The advantage of deep learning models is that they can automatically extract key features from complex data, thus reducing the need for manual feature engineering and achieving more efficient operation. Furthermore, deep learning approaches can manage big datasets, are highly adaptable, and can produce accurate predictions in a variety of traffic scenarios. However, the overfitting problem caused by the complexity of the model and the sensitivity to the parameter threshold range will affect the prediction effect of the deep learning method, resulting in prediction errors. As a result, hybrid models and more advanced technologies are being investigated.
2.3. Emerging methods
The study discovered that by combining multiple deep learning models, the advantages of each model in different aspects can be fully utilized to improve the overall prediction performance. For example, the combination of deep learning methods such as CNN and LSTM, particle swarm optimization (PSO), and bidirectional long- short-term memory (Bi LSTM) could improve the performance of predictive models. Bharti et al. [12] combined PSO and Bi LSTM to create the PSO-BI LSTM model. The Bi LSTM model is used to capture contextual information over time and is paired with PSO to produce more accurate traffic flow predictions. After examining traffic flow data from the inner ring road in India, it was discovered that the model can reliably estimate traffic flow under various scenarios. Gu et al. [13] created an improved Bayesian deep learning combination model (IBCM-DL) that incorporates three types of sub-predictors: ARIMA, recurrent unit neural networks (GRUNN), and radial basis function neural networks (RBFNN). ARIMA and RBFNN are used to efficiently handle seasonal changes and trend analysis, while GRU-NN can handle missing data and adapt to dynamic changes. The actual traffic statistics of the Beijing expressway show that the model has better performance and more accurate results. Furthermore, researchers should include the robustness, interpretability and generalization ability of various emerging models as one of the important test criteria, so as to make more accurate traffic flow prediction through multi-faceted evaluation.
3. Anomaly detection in traffic flow prediction
Traffic data is typically collected by sensors, such as ultrasonic sensors, infrared detectors, and satellite positioning systems for traffic flow prediction. However, these data are often subject to the influence of inaccuracies, incompleteness, and outlier values. Therefore, data cleaning must be carried out before data analysis, and the identification of outliers constitutes a crucial component of the data cleaning process. In traffic flow forecasting, anomaly recognition is used to identify traffic events or data points that are significantly different from normal traffic patterns. These anomalies may arise from a multitude of factors, including traffic congestion, vehicle malfunctions, and emergency situations. If these abnormal events are not identified promptly or significant outliers are removed from the data, the accuracy of the predictive model may decline, thereby affecting the decision-maker of the relevant authorities. Therefore, the implementation of an effective anomaly detection method is crucial for enhancing the performance of traffic flow prediction models.
3.1. Traditional methods
The early methods of anomaly detection are mainly based on the statistical principle [14]. A statistical model of typical traffic patterns is developed by calculating the mean and standard deviation of traffic using historical data. This approach facilitates the establishment of thresholds for the identification of outliers. Common statistical methods include the box-whisk method, extreme student deviation test (ESD), and Grubbs test. Among them, the core idea of the Grubbs test is to set a strict critical value for the recognition of outliers by determining the significance level and reducing the possibility of wrong discrimination. Wu et al. [15] employed the Grubbs test methodology to identify anomalous passenger flow patterns during the closure of subway stations. The findings from the experiments indicate that, compared with other algorithms, the Grubbs test has a more accurate ability to identify stations and passenger flow affected by subway station closure, and can provide more targeted adjustment strategies and passenger flow guidance schemes for subway operation. In addition, the seasonal autoregressive integral moving average (SARIMA) model and KNN algorithm are also widely used in univariate time series anomaly detection. Almeida et al. [16] used the SARIMA model for anomaly detection and observed that the SARIMA model was superior to the ANN model. However, the SARIMA model also suffers from the drawback of needing to be retrained every hour to improve accuracy. Djenouri et al. [17] extended the KNN algorithm to flexible data placement (FDP) to detect outliers in the probability of traffic flow distribution. The model calculates the distance between the new traffic distribution probability and each FDP in the historical database to determine whether the newly observed traffic distribution probability is an outlier. Compared with existing algorithms such as the Dirichlet process mixture model (DPMM) and principal component analysis (PCA), KNN FDP shows better performance in processing large urban traffic flow data. However, statistical models typically assume that data follows a specific distribution (such as a normal distribution), and the model's fit may be significantly affected by outliers, which could cause a reduction in its performance. Moreover, the strong spatiotemporal dynamics of traffic flow data make it difficult to adapt traditional methods. This leads to a decrease in model accuracy, particularly in real-time or near-real-time anomaly detection scenarios.
3.2. Deep learning methods
Deep learning techniques have increasingly garnered interest in the field of anomaly detection, attributed to the growing volume of data and advancements in computational capabilities. In the context of traffic analysis, CNN and LSTM have become the two most effective deep learning architectures. CNN, due to its expertise in processing spatial information, has become an ideal tool for analyzing traffic camera or satellite image data, and detecting traffic congestion and road anomalies. The purpose of its design is to imitate the human visual cortex and recognize visual patterns, such as the density of vehicles or irregular surface conditions on roads. Khan et al. [18] constructed a CNN model using the Keras library and evaluated the trained model on 30 test videos. The test dataset showed a model accuracy of around 82%. As a result, the proposed CNN-based deep learning model can effectively detect abnormal events like traffic accidents from traffic flow, resulting in better predicting future traffic conditions. Zhu et al. [19] also use CNN to detect abnormal situations in traffic flow, such as traffic jams, illegal parking, and sudden natural disasters, with remarkable recognition effect and high efficiency. For LSTM, when there is a significant difference between real-time traffic data and LSTM forecast data, LSTM can adjust the parameters of the model to better adapt to the current data trend, thus improving the adaptability of subsequent forecasts. Tian et al. [20] proposed an improved LSTM model that integrated the traffic prediction technology for dealing with missing data, which could more accurately deal with the traffic flow lacking data. Fitters et al. [21] proposed outlier-enriched LSTM (OE-LSTM). Through the application of spatiotemporal correlation analysis, this methodology is capable of identifying outliers within traffic flow data and assessing the interrelationships among them. The experimental findings indicate that the OE-LSTM framework demonstrates efficacy in traffic flow datasets. However, deep learning models may exhibit a high degree of accuracy on certain data sets, but their adaptability may be limited when faced with diverse traffic scenarios or different environmental conditions, and the model may be sensitive to certain types of anomalies while ignoring others. Therefore, researchers are developing transfer learning or multi-model fusion strategies to address the aforementioned issues.
3.3. Emerging methods
With the development of technology, new anomaly detection methods continue to emerge. The latest student teams-achievement divisions (STAD) method proposed by Yin et al. [22] uses a unique sampling method and a detection algorithm based on a twin multilayer perceptron, enabling STAD to extract a small but representative sample from each category. These samples were subsequently used to train a twin multilayer perceptron model to effectively distinguish between normal and abnormal traffic. The results showed that STAD maintains an accuracy and detection rate of more than 95% in anomaly detection. He et al. [23] proposed a combination model, which combined the LSTM model and Q-learning algorithm to build an agent. This algorithm can self-learn, so that it can adapt to the actual situation more flexibly, and improve the ability to detect abnormal data. According to the experimental results, the model performs better than other models in various parameter configurations, with an accuracy close to 90%. Michau et al. [24] proposed an innovative unsupervised transfer learning (UTL) method for fault detection in industry. The purpose of this model is to mine the common structure between data sets for cluster analysis or dimensionality reduction. Empirical findings indicate that the proposed methodology is capable of effectively detecting anomalies that were not present during the training phase. In order to enhance the precision of anomaly extraction, it is essential to identify distinct spatiotemporal characteristics of traffic anomalies, thereby facilitating anomaly detection from a data-driven standpoint.
4. Conclusions
The management of traffic flow is gaining significance in light of rapid urbanization and the rising demand for transportation. It is essential for fostering sustainable development and enhancing the quality of life for urban residents. The efficient operation of urban traffic systems is closely related to the accuracy of traffic flow prediction. Advanced prediction model plays an essential part for building accurate traffic flow prediction and anomaly detection system. Deep learning models show the ability to efficiently identify complex dynamic characteristics of traffic flow in several studies. However, the majority of the contributions are centered on the application level, and there is a lack of theoretical depth. Thus, the development path of traffic flow prediction may be hampered by the use of only deep learning models. This has prompted researchers to gradually explore the effectiveness of hybrid models and unsupervised methods. This study presents an analysis of the benefits and drawbacks associated with conventional statistical techniques. A range of contemporary deep learning architectures and their applications in traffic flow prediction and anomaly detection are further described. In addition, the paper examines the growing trend of hybrid methodologies that is gaining more popularity. With the continuous evolution of artificial intelligence algorithms, adaptive and intelligent decision support systems should be developed by researchers to achieve more flexible traffic management and efficient resource allocation, thereby better addressing future transportation challenges.
References
[1]. Chen, S., et al. (2022). Updating global urbanization projections under the Shared Socioeconomic Pathways. Scientific data, 9(1), 137.
[2]. Serok, N., Havlin, S., & Lieberthal, E. B. (2022). Identification, cost evaluation, and prioritization of urban traffic congestions and their origin. Scientific Reports, 12(1).
[3]. Boukerche, A., Tao, Y., & Sun, P. (2020). Artificial intelligence-based vehicular traffic flow prediction methods for supporting intelligent transportation systems. Computer Networks, 182.
[4]. Ren, C., Li, L., & Wang, Y. (2021). Short-term traffic flow prediction: A method of combined deep learnings. Journal of Advanced Transportation, 2021, 1–15.
[5]. Pavlyuk, D. (2017). Short-term traffic forecasting using multivariate autoregressive models. Procedia Engineering, 178, 57–66. https://doi.org/10.1016/j.proeng.2017.01.062
[6]. Emami, A., Sarvi, M., & Bagloee, S. A. (2019). Using Kalman filter algorithm for short-term traffic flow prediction in a connected vehicle environment. Journal of Modern Transportation, 27(3), 222–232. https://doi.org/10.1007/s40534-019-0193-2
[7]. Gu, Y., Lu, W., Xu, X., Qin, L., Shao, Z., & Zhang, H. (2020). An improved Bayesian combination model for short-term traffic prediction with deep learning. IEEE Transactions on Intelligent Transportation Systems, 21(3), 1332–1342.
[8]. Mishra, R. K., Reddy, G. Y. S., & Pathak, H. (2021). The understanding of deep learning: A comprehensive review. Mathematical Problems in Engineering, 2021, 1–15.
[9]. Huang, W., Song, G., Hong, H., & Xie, K. (2014). Deep architecture for traffic flow prediction: Deep belief networks with multitask learning. IEEE Transactions on Intelligent Transportation Systems, 15(5), 2191–2201. https://doi.org/10.1109/TITS.2014.2311123
[10]. Yang, B., Sun, S., Li, J., Lin, X., & Tian, Y. (2019). Traffic flow prediction using LSTM with feature enhancement. Neurocomputing, 332, 320–327.
[11]. Zhao, W., Gao, Y., Ji, T., Wan, X., Ye, F., & Bai, G. (2019). Deep temporal convolutional networks for short-term traffic flow forecasting. IEEE Access, 7, 114496–114507.
[12]. Bharti, N., Redhu, P., & Kumar, K. (2023). Short-term traffic flow prediction based on optimized deep learning neural network: PSO-Bi-LSTM. Physica A: Statistical Mechanics and Its Applications, 625, 129001. https://doi.org/10.1016/j.physa.2023.129001
[13]. Gu, Y., Lu, W., Xu, X., Qin, L., Shao, Z., & Zhang, H. (2020). An improved Bayesian combination model for short-term traffic prediction with deep learning. IEEE Transactions on Intelligent Transportation Systems, 21(3), 1332–1342.
[14]. Alam, M. R., Gerostathopoulos, I., Amini, S., Prehofer, C., & Attanasi, A. (2019). Adaptable anomaly detection in traffic flow time series. In Proceedings of the 2019 6th International Conference on Models and Technologies for Intelligent Transportation Systems, 1-9.
[15]. Wu, Y., Huang, B., Li, X., Zhang, Y., & Xu, X. (2020). A data-driven approach to detect passenger flow anomaly under station closure. IEEE Access, 8, 149602–149615.
[16]. Almeida, A., Brás, S., Oliveira, I., & Sargento, S. (2022). Vehicular traffic flow prediction using deployed traffic counters in a city. Future Generation Computer Systems, 128, 429–442. https://doi.org/10.1016/j.future.2021.10.022
[17]. Djenouri, Y., Belhadi, A., Lin, J. C. W., & Cano, A. (2019). Adapted K-nearest neighbors for detecting anomalies on spatio-temporal traffic flow. IEEE Access, 7, 10015–10027. https://doi.org/10.1109/ACCESS.2019.2891933
[18]. Khan, S. W., Ali, M., Qureshi, T., Chandio, F. A., & Sharif, A. (2022). Anomaly detection in traffic surveillance videos using deep learning. Sensors, 22(17), 6563. https://doi.org/10.3390/s22176563
[19]. Zhu, L., Krishnan, R., Sivakumar, A., Guo, F., & Polak, J. W. (2019). Traffic monitoring and anomaly detection based on simulation of Luxembourg road network. In 2019 IEEE Intelligent Transportation Systems Conference (ITSC) (pp. 382–387). Auckland, New Zealand.
[20]. Tian, Y., Zhang, K., Li, J., Lin, X., & Yang, B. (2018). LSTM-based traffic flow prediction with missing data. Neurocomputing, 318, 297–305. https://doi.org/10.1016/j.neucom.2018.08.067
[21]. Fitters, W., Cuzzocrea, A., & Hassani, M. (2021). Enhancing LSTM prediction of vehicle traffic flow data via outlier correlations. In 2021 IEEE 45th Annual Computers, Software, and Applications Conference (COMPSAC) (pp. 210–217). Madrid, Spain.
[22]. Yin, Z., Ma, H., & Hu, T. (2023). STAD: A traffic anomaly detection technology based on Siamese neural network. In 2023 IEEE International Performance, Computing, and Communications Conference (IPCCC) (pp. 18–23). Anaheim, CA, USA.
[23]. He, D., Kim, J., Shi, H., & Ruan, B. (2023). Autonomous anomaly detection on traffic flow time series with reinforcement learning. Transportation Research Part C: Emerging Technologies, 150, 104089. https://doi.org/10.1016/j.trc.2023.104089
[24]. Michau, G., & Fink, O. (2021). Unsupervised transfer learning for anomaly detection: Application to complementary operating condition transfer. Knowledge-Based Systems, 216, 106816.
Cite this article
Xue,M. (2024). Comprehensive Approaches to Traffic Flow Prediction. Applied and Computational Engineering,111,60-65.
Data availability
The datasets used and/or analyzed during the current study will be available from the authors upon reasonable request.
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 EWA Publishing and/or the editor(s). EWA Publishing 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.
About volume
Volume title: Proceedings of CONF-MLA 2024 Workshop: Mastering the Art of GANs: Unleashing Creativity with Generative Adversarial Networks
© 2024 by the author(s). Licensee EWA Publishing, Oxford, UK. This article is an open access article distributed under the terms and
conditions of the Creative Commons Attribution (CC BY) license. Authors who
publish this series agree to the following terms:
1. Authors retain copyright and grant the series right of first publication with the work simultaneously licensed under a Creative Commons
Attribution License that allows others to share the work with an acknowledgment of the work's authorship and initial publication in this
series.
2. Authors are able to enter into separate, additional contractual arrangements for the non-exclusive distribution of the series's published
version of the work (e.g., post it to an institutional repository or publish it in a book), with an acknowledgment of its initial
publication in this series.
3. Authors are permitted and encouraged to post their work online (e.g., in institutional repositories or on their website) prior to and
during the submission process, as it can lead to productive exchanges, as well as earlier and greater citation of published work (See
Open access policy for details).
References
[1]. Chen, S., et al. (2022). Updating global urbanization projections under the Shared Socioeconomic Pathways. Scientific data, 9(1), 137.
[2]. Serok, N., Havlin, S., & Lieberthal, E. B. (2022). Identification, cost evaluation, and prioritization of urban traffic congestions and their origin. Scientific Reports, 12(1).
[3]. Boukerche, A., Tao, Y., & Sun, P. (2020). Artificial intelligence-based vehicular traffic flow prediction methods for supporting intelligent transportation systems. Computer Networks, 182.
[4]. Ren, C., Li, L., & Wang, Y. (2021). Short-term traffic flow prediction: A method of combined deep learnings. Journal of Advanced Transportation, 2021, 1–15.
[5]. Pavlyuk, D. (2017). Short-term traffic forecasting using multivariate autoregressive models. Procedia Engineering, 178, 57–66. https://doi.org/10.1016/j.proeng.2017.01.062
[6]. Emami, A., Sarvi, M., & Bagloee, S. A. (2019). Using Kalman filter algorithm for short-term traffic flow prediction in a connected vehicle environment. Journal of Modern Transportation, 27(3), 222–232. https://doi.org/10.1007/s40534-019-0193-2
[7]. Gu, Y., Lu, W., Xu, X., Qin, L., Shao, Z., & Zhang, H. (2020). An improved Bayesian combination model for short-term traffic prediction with deep learning. IEEE Transactions on Intelligent Transportation Systems, 21(3), 1332–1342.
[8]. Mishra, R. K., Reddy, G. Y. S., & Pathak, H. (2021). The understanding of deep learning: A comprehensive review. Mathematical Problems in Engineering, 2021, 1–15.
[9]. Huang, W., Song, G., Hong, H., & Xie, K. (2014). Deep architecture for traffic flow prediction: Deep belief networks with multitask learning. IEEE Transactions on Intelligent Transportation Systems, 15(5), 2191–2201. https://doi.org/10.1109/TITS.2014.2311123
[10]. Yang, B., Sun, S., Li, J., Lin, X., & Tian, Y. (2019). Traffic flow prediction using LSTM with feature enhancement. Neurocomputing, 332, 320–327.
[11]. Zhao, W., Gao, Y., Ji, T., Wan, X., Ye, F., & Bai, G. (2019). Deep temporal convolutional networks for short-term traffic flow forecasting. IEEE Access, 7, 114496–114507.
[12]. Bharti, N., Redhu, P., & Kumar, K. (2023). Short-term traffic flow prediction based on optimized deep learning neural network: PSO-Bi-LSTM. Physica A: Statistical Mechanics and Its Applications, 625, 129001. https://doi.org/10.1016/j.physa.2023.129001
[13]. Gu, Y., Lu, W., Xu, X., Qin, L., Shao, Z., & Zhang, H. (2020). An improved Bayesian combination model for short-term traffic prediction with deep learning. IEEE Transactions on Intelligent Transportation Systems, 21(3), 1332–1342.
[14]. Alam, M. R., Gerostathopoulos, I., Amini, S., Prehofer, C., & Attanasi, A. (2019). Adaptable anomaly detection in traffic flow time series. In Proceedings of the 2019 6th International Conference on Models and Technologies for Intelligent Transportation Systems, 1-9.
[15]. Wu, Y., Huang, B., Li, X., Zhang, Y., & Xu, X. (2020). A data-driven approach to detect passenger flow anomaly under station closure. IEEE Access, 8, 149602–149615.
[16]. Almeida, A., Brás, S., Oliveira, I., & Sargento, S. (2022). Vehicular traffic flow prediction using deployed traffic counters in a city. Future Generation Computer Systems, 128, 429–442. https://doi.org/10.1016/j.future.2021.10.022
[17]. Djenouri, Y., Belhadi, A., Lin, J. C. W., & Cano, A. (2019). Adapted K-nearest neighbors for detecting anomalies on spatio-temporal traffic flow. IEEE Access, 7, 10015–10027. https://doi.org/10.1109/ACCESS.2019.2891933
[18]. Khan, S. W., Ali, M., Qureshi, T., Chandio, F. A., & Sharif, A. (2022). Anomaly detection in traffic surveillance videos using deep learning. Sensors, 22(17), 6563. https://doi.org/10.3390/s22176563
[19]. Zhu, L., Krishnan, R., Sivakumar, A., Guo, F., & Polak, J. W. (2019). Traffic monitoring and anomaly detection based on simulation of Luxembourg road network. In 2019 IEEE Intelligent Transportation Systems Conference (ITSC) (pp. 382–387). Auckland, New Zealand.
[20]. Tian, Y., Zhang, K., Li, J., Lin, X., & Yang, B. (2018). LSTM-based traffic flow prediction with missing data. Neurocomputing, 318, 297–305. https://doi.org/10.1016/j.neucom.2018.08.067
[21]. Fitters, W., Cuzzocrea, A., & Hassani, M. (2021). Enhancing LSTM prediction of vehicle traffic flow data via outlier correlations. In 2021 IEEE 45th Annual Computers, Software, and Applications Conference (COMPSAC) (pp. 210–217). Madrid, Spain.
[22]. Yin, Z., Ma, H., & Hu, T. (2023). STAD: A traffic anomaly detection technology based on Siamese neural network. In 2023 IEEE International Performance, Computing, and Communications Conference (IPCCC) (pp. 18–23). Anaheim, CA, USA.
[23]. He, D., Kim, J., Shi, H., & Ruan, B. (2023). Autonomous anomaly detection on traffic flow time series with reinforcement learning. Transportation Research Part C: Emerging Technologies, 150, 104089. https://doi.org/10.1016/j.trc.2023.104089
[24]. Michau, G., & Fink, O. (2021). Unsupervised transfer learning for anomaly detection: Application to complementary operating condition transfer. Knowledge-Based Systems, 216, 106816.