Long-term Traffic Flow Forecasting Based on an Artificial Neural Network
Volume 4, Issue 4, Page No 323–327, 2019
Adv. Sci. Technol. Eng. Syst. J. 4(4), 323–327 (2019);
DOI: 10.25046/aj040441
Keywords: Traffic forecasting, Neural network, Supervised learning algorithm, Highway
There is no doubt that a good knowledge of traffic demand has a direct impact on improving traffic management. Road traffic is strongly correlated with many factors such as day of week, time of day, season and holidays which make it suitable for prediction. In this paper, we develop a neural network model for hourly traffic prediction that makes full use of these temporal characteristics. The proposed algorithm is tested on a real-world case, and the experiment results is presented to evaluate its accuracy.
1. Introduction
Accurate traffic volume prediction plays a significant role in traffic management and control. Estimate the number of vehicles passing per unit time can help traffic managers make the right decisions. Up to now a variety of traffic flow prediction algorithms have been proposed. These methods can be arranged into two categories: parametric approach and non-parametric approach.
Since the early 1980s, a wide range of parametric techniques have been studied such as historical average algorithms, smoothing techniques, linear regression, filtering techniques [1], and autoregressive integrated moving average (ARIMA)[2] family. Later on, researchers began to explore the potential of non-parametric techniques in traffic forecasting, including neural networks [3, 4, 5, 6, 7], support vector machines [8, 9], k-nearest neighbor [10, 11], etc. These methods have gained more attention compared to parametric techniques considering that they can capture the stochastic and nonlinearity of the traffic flow. They are flexible in their use and are generally quite robust.
The rest of the paper is structured as follows. Following this introductory section, a description of the proposed methodology is provided. The dataset for the numerical experiments is introduced in section 3 along with the results and performance evaluation. Finally, concluding remarks are stated in section 4.
2. Methodology
In this section, a description of the Artificial Neural Network structure is presented. Artificial Neural Networks (ANNs) are one of the recent methods employed for traffic forecasting. They have the ability to approximate almost any function due to their properties of self-learning and self-adaptive capabilities.
2.1. Prediction logic with artificial neural network
A neural network consists of a set of interconnected processing elements, called neurons, which are arranged in a series of layers: an input layer, one or more hidden layers and an output layer.
Figure 1: Architecture of a neural network prediction model
There is no connection between neurons in the same layer. However, each neuron in a layer is fully connected to all neurons in the next layer. Those connections are unidirectional: information from the inputs pass through the hidden units to eventually reach the output units. This type of architecture is called feedforward neural network (Fig. 1).
Neural networks are able to perform different categories of tasks, including regression. ANN can be trained to model the relationship between a number of input variables and a set of continuous results (target variables).
The inputs zi reach the neuron through connection links, each with an associated weight wi. The higher the value of a weight, the stronger the intensity of the incoming signal. When the signals are received, a weighted sum of the inputs plus a bias b, called the net input, is calculated:
The output is then determined by applying a transfer function f to the net input. The transfer function can be any differentiable non-linear function.
This output will serve as input to other neurons in the next layer and so on. When the entire network has been executed, the neurons in the output layer become the outputs of the entire network (predicted values).
3. Experiments
In this section, the real-world data used in this study is described and the forecasting model along with the results are presented. The forecasting model is implemented using Python and Keras.
3.1. Data preparation and description
Data on the volume of traffic on hourly basis has been collected from the Melloussa Toll plaza. This traffic represents the number of vehicles passing through the system during each hour of the day. The Toll Lane Controller collects data from the lanes and transmits it to a server where all transaction data are stored.
The Melloussa Toll plaza is one of the major toll highways in Tangier. It is located on a North-South motorway axis that leads directly to The Port of Tangier, Africa’s biggest port, allowing the toll plaza to become an important transit point between Morocco and the European continent, with a throughput volume that could approach 900 vehicles per hour during summer peak periods.
Collected data for experiments spans for two years ranging from 2017/01 to 2018/12. The first 80% of the observations was selected to train the forecasting model, while the remaining 20% was treated as the testing dataset.
Missing and abnormal data are almost inevitable in practice. Their presence can affect the quality of data and can lead to incorrect results and conclusions. Therefore, missing and abnormal data were removed and repaired by estimating values from historical data.
To fit into the ANN model, the data was arranged in the following format (see Tab. I):
| Year | Month | Day | Hours | Holiday | Traffic |
| 2017 | January | Sunday | 1 | Yes | 61 |
| 2017 | January | Sunday | 2 | Yes | 32 |
| 2017 | January | Sunday | 3 | Yes | 17 |
| 2017 | January | Sunday | 4 | Yes | 16 |
| 2017 | January | Sunday | 5 | Yes | 33 |
| … | … | … | … | … | … |
| … | … | … | … | … | … |
| 2018 | December | Monday | 23 | No | 83 |
| 2018 | December | Monday | 24 | No | 47 |
Table 1: Data structure used in the experiment
Before being able to model a problem with a machine learning algorithm, it is often necessary to perform a number of transformations on the data, so that the problem can be easily understood and interpreted by the machine learning algorithm.
Therefore, the data, including Hours, Day, Month, and Holiday were converted into binary variables (for example, “Day of Week” feature 2 is transformed to 001000).
3.2. The forecasting model
Artificial neural networks are characterized by two main parameters: the number of hidden layers and the number of neurons per hidden layer.
There is no general method for determining the appropriate values of these parameters. Thus, it is usually necessary to proceed by trial and error in order to find the optimal structure.
In our approach, a three-layer ANN with 100 hidden neurons in each layer was found to achieve the lowest error rates. ReLU(Rectified Linear Unit) was used as the activation function for the hidden layers while the linear function was used for the output layer.
3.3. Model Evaluation
The mean square error (MSE) was used as the indicator of the accuracy of the prediction method, defined as:
- N is the number of data points
- fi is the predicted value (the network’s output)
- yi is the target value for the ith observation
3.4. Forecasting results
As we mentioned earlier, the traffic flow data is divided into two parts: the first part is the training sample and the second part is the testing sample. The training data is used to identify the pattern of data and the test data is used for checking the performance. The forecasting results of the testing data set are shown in Fig. 2.
The error is quantified using Mean Square Error (MSE) and the values obtained for each iteration are shown in Fig.2(b).
Figure 2: The forecasting results
Figure 3: The hourly traffic volumes of different days in a week: (a) Monday, (b) Tuesday, (c) Wednesday, (d) Thursday, (e) Friday, (f) Saturday, and (g) Sunday
From Fig. 2(a), it can be seen that the line graph is divided into two parts: the first part is the one with the highest traffic volume and varying traffic patterns, which corresponds to the month of August. The second part presents the remaining months of the year, which shows a relatively stable traffic patterns. The model perform reasonably well in predicting the second part compared to the first one. This could be explained by the following reasons:
- During this time period, the variations of traffic flow are high. Traffic patterns are not the same comparing day with day, which makes it hard to capture pattern similarities.
- The shifting nature of Eid festivals had a direct impact on the traffic flow pattern. In this particular period, Eid Al-Adha, one of the most important festivities of the year, coincides with the end of the summer holidays and the start of the school year, which help increase the variability in traffic demand.
- The proposed method is trained to learn the behavior and predict future outcomes using historical data. Therefore, a larger training set provides better results. Here in this study, we only have August of 2017 as historical data.
In order to better underline the predictive accuracy of the ANN model, a comparison of estimated and actual traffic values for different times of the day and week is presented in Fig. 3. We can observe that the ANN model performs well in capturing the data patterns on hourly and daily basis. The same results has been obtained for the next year (see Fig. 4).
Figure 4: Prediction results of the hourly traffic volume for the first four months of 2019.
On a seasonal basis, the proposed model was able to accurately capture the behaviour of traffic over time as can be seen in Fig. 5. Traffic tends to pick up heavily during the summer months compared to other time of the year.
4. Conclusion
By visually exploring the traffic data, we observe that traffic is affected by a number of temporal features. In this paper, we developed an ANN algorithm for the prediction of hourly traffic volume that model the relationship between the traffic and these temporal features. The suggested model is tested on real world traffic volume, collected from The Melloussa toll plaza and the results showed that the method was able to identify the changes in traffic pattern at different period of time.
Figure 5: Seasonal variation in traffic flows Special events are also one of the factors that can greatly affect traffic pattern. Adding this feature to the model is worth studying.
- Okatuni, I., and Y. J. Stephanedes.(1984) “Dynamic Prediction of Traffic Volume Through Kalman Filtering Theory,” Transportation Research Part B, Vol. 18, No. 1, pp. 1–11.
- M. Levin and Y. D. Tsao. , “On forecasting freeway occupancies and volumes (Abridgment),” Transportation Research Record, No. 722, 1980, pp. 47-49.
- Centiner, B. G., Sari, M., and Borat, O. (2010). “A neural network based traffic-flow prediction model,” Mathematical and Computa-tional Applications, 15, 269-278.
- Licheng Qu, Wei Li, Wenjing Li, Dongfang Ma, Yinhai Wang (2018). “Daily long-term traffic flow forecasting based on a deep neural net-work,” Expert Syst. Appl. 121: 304-312.
- Kranti Kumar, M.Parida, V.K.Katiyar. “Short term traffic flow prediction for a non urban highway using artificial neural net-work,”Procedia – Social and Behavioral Sciences, 2013, Vol. 104. P. 755- 764.
- M.S.A Siddiquee, S. Hoque. “Predicting the daily traffic volume from hourly traffic volume using Artificial Neural Network,” 2017.
- Melinda Barabas, Georgeta Boanea, Andrei B. Rus, Virgil Dobrota, Jordi Domingo-Pascual. “Evaluation of network traffic prediction based on neural networks with multi-task learning and multiresolu-tion decomposition,” 2011 IEEE 7th International Conference on Intelligent Computer Communication and Processing.
- Sapankevych, N., Sankar, R., et al, 2009. “Time series prediction using support vector machines: a survey. Comput,” Intell. Mag., IEEE 4 (2), 24–38.
- Amanda Yan Lin, Mengcheng Zhang. “Highway Tollgates Travel Time and Volume Predictions using Support Vector Regression with
- Zheng, Z., Su, D., 2014. “Short-term traffic volume forecasting: a k-nearest neighbor approach enhanced by constrained linearly sewing principle component algorithm,” Transport. Res. Part C : Emerg. Technol, 43, 143–157.
- F. Habtemichael, and M. Cetin. “Short-Term Traffic Flow Rate Fore-casting Based on Identifying Similar Traffic Patterns,” Transporta-tion Research Part C, 66, pp. 61-78, 2016.
- Van Der Voort, M., M. Dougherty, and S. Watson. “Combining Ko-honen Maps with ARIMA Time-Series Models to Forecast Traffic Flow,” Transportation Research Part C, Vol. 4, No. 5, 1996, pp. 307–318.
- Ahmed, M. S., and A. R. Cook. “Analysis of Freeway Traffic Time-Series Data by Using Box–Jenkins Techniques,” Transportation Research Record 772, TRB, National Research Council, Washington, D. C., 1979, pp. 1–9.
- Williams, B. M. “Multivariate Vehicular Traffic Flow Predic-tion: Evaluation of ARIMAX Modeling,” Transportation Research Record: Journal of the Transportation Research Board, No. 1776, TRB, National Research Council, Washington, D.C., 2001, pp. 194–200.
- Mario Cools, Elke Moons, and Geert Wets. “Investigating the Vari-ability in Daily Traffic Counts Through Use of ARIMAX and SARI-MAX Models,” Transportation Research Board of the National Academies, No. 2136, Washington, D.C., 2009.
- Williams, B. M., and L. A. Hoel. “Modeling and Forecasting Ve-hicular Traffic Flow as a Seasonal ARIMA Process: A Theoretical Basis and Empirical Results,” Journal of Transportation Engineering (ASCE), Vol. 129, No. 6, 2003, pp. 664–672.
- Blaz Ka ˇ ziˇ c, Dunja Mladeni ˇ c and Alja ́ z Ko ˇ smerlj (2015). “Traffic Flow Prediction from Loop Counter Sensor Data using Machine Learning Methods,” Proceedings of the 1st International Conference on Vehicle Technology and Intelligent Transport Systems (VEHITS-2015), pages 119-127.
- Hanan Hassan Ali Adlan, Elsadig Ahmed Mohamed Babiker, "Efficient Pattern Recognition Resource Utilization Neural Network ", Advances in Science, Technology and Engineering Systems Journal, vol. 11, no. 1, pp. 44–50, 2026. doi: 10.25046/aj110105
- Kohinur Parvin, Eshat Ahmad Shuvo, Wali Ashraf Khan, Sakibul Alam Adib, Tahmina Akter Eiti, Mohammad Shovon, Shoeb Akter Nafiz, "Computationally Efficient Explainable AI Framework for Skin Cancer Detection", Advances in Science, Technology and Engineering Systems Journal, vol. 11, no. 1, pp. 11–24, 2026. doi: 10.25046/aj110102
- David Degbor, Haiping Xu, Pratiksha Singh, Shannon Gibbs, Donghui Yan, "StradNet: Automated Structural Adaptation for Efficient Deep Neural Network Design", Advances in Science, Technology and Engineering Systems Journal, vol. 10, no. 6, pp. 29–41, 2025. doi: 10.25046/aj100603
- Jenna Snead, Nisa Soltani, Mia Wang, Joe Carson, Bailey Williamson, Kevin Gainey, Stanley McAfee, Qian Zhang, "3D Facial Feature Tracking with Multimodal Depth Fusion", Advances in Science, Technology and Engineering Systems Journal, vol. 10, no. 5, pp. 11–19, 2025. doi: 10.25046/aj100502
- Surapol Vorapatratorn, Nontawat Thongsibsong, "AI-Based Photography Assessment System using Convolutional Neural Networks", Advances in Science, Technology and Engineering Systems Journal, vol. 10, no. 2, pp. 28–34, 2025. doi: 10.25046/aj100203
- Abhishek Shrestha, Jürgen Großmann, "On Adversarial Robustness of Quantized Neural Networks Against Direct Attacks", Advances in Science, Technology and Engineering Systems Journal, vol. 9, no. 6, pp. 30–46, 2024. doi: 10.25046/aj090604
- Win Pa Pa San, Myo Khaing, "Advanced Fall Analysis for Elderly Monitoring Using Feature Fusion and CNN-LSTM: A Multi-Camera Approach", Advances in Science, Technology and Engineering Systems Journal, vol. 9, no. 6, pp. 12–20, 2024. doi: 10.25046/aj090602
- Toya Acharya, Annamalai Annamalai, Mohamed F Chouikha, "Enhancing the Network Anomaly Detection using CNN-Bidirectional LSTM Hybrid Model and Sampling Strategies for Imbalanced Network Traffic Data", Advances in Science, Technology and Engineering Systems Journal, vol. 9, no. 1, pp. 67–78, 2024. doi: 10.25046/aj090107
- Afrodite Papagiannopoulou, Chrissanthi Angeli, "Social Media Text Summarization: A Survey Towards a Transformer-based System Design", Advances in Science, Technology and Engineering Systems Journal, vol. 8, no. 6, pp. 26–36, 2023. doi: 10.25046/aj080604
- Kitipoth Wasayangkool, Kanabadee Srisomboon, Chatree Mahatthanajatuphat, Wilaiporn Lee, "Accuracy Improvement-Based Wireless Sensor Estimation Technique with Machine Learning Algorithms for Volume Estimation on the Sealed Box", Advances in Science, Technology and Engineering Systems Journal, vol. 8, no. 3, pp. 108–117, 2023. doi: 10.25046/aj080313
- Mario Cuomo, Federica Massimi, Francesco Benedetto, "Detecting CTC Attack in IoMT Communications using Deep Learning Approach", Advances in Science, Technology and Engineering Systems Journal, vol. 8, no. 2, pp. 130–138, 2023. doi: 10.25046/aj080215
- Temsamani Khallouk Yassine, Achchab Said, Laouami Lamia, Faridi Mohammed, "Hybrid Discriminant Neural Networks for Performance Job Prediction", Advances in Science, Technology and Engineering Systems Journal, vol. 8, no. 2, pp. 116–122, 2023. doi: 10.25046/aj080213
- Anh-Thu Mai, Duc-Huy Nguyen, Thanh-Tin Dang, "Transfer and Ensemble Learning in Real-time Accurate Age and Age-group Estimation", Advances in Science, Technology and Engineering Systems Journal, vol. 7, no. 6, pp. 262–268, 2022. doi: 10.25046/aj070630
- Brahim Zraibi, Mohamed Mansouri, Salah Eddine Loukili, Said Ben Alla, "Hybrid Neural Network Method for Predicting the SOH and RUL of Lithium-Ion Batteries", Advances in Science, Technology and Engineering Systems Journal, vol. 7, no. 5, pp. 193–198, 2022. doi: 10.25046/aj070520
- Nosiri Onyebuchi Chikezie, Umanah Cyril Femi, Okechukwu Olivia Ozioma, Ajayi Emmanuel Oluwatomisin, Akwiwu-Uzoma Chukwuebuka, Njoku Elvis Onyekachi, Gbenga Christopher Kalejaiye, "BER Performance Evaluation Using Deep Learning Algorithm for Joint Source Channel Coding in Wireless Networks", Advances in Science, Technology and Engineering Systems Journal, vol. 7, no. 4, pp. 127–139, 2022. doi: 10.25046/aj070417
- Jayan Kant Duggal, Mohamed El-Sharkawy, "High Performance SqueezeNext: Real time deployment on Bluebox 2.0 by NXP", Advances in Science, Technology and Engineering Systems Journal, vol. 7, no. 3, pp. 70–81, 2022. doi: 10.25046/aj070308
- Hanae Naoum, Sidi Mohamed Benslimane, Mounir Boukadoum, "Encompassing Chaos in Brain-inspired Neural Network Models for Substance Identification and Breast Cancer Detection", Advances in Science, Technology and Engineering Systems Journal, vol. 7, no. 3, pp. 32–43, 2022. doi: 10.25046/aj070304
- Idir Boulfrifi, Mohamed Lahraichi, Khalid Housni, "Video Risk Detection and Localization using Bidirectional LSTM Autoencoder and Faster R-CNN", Advances in Science, Technology and Engineering Systems Journal, vol. 6, no. 6, pp. 145–150, 2021. doi: 10.25046/aj060619
- Giuseppe Spampinato, Arcangelo Ranieri Bruna, Ivana Guarneri, Davide Giacalone, "Neural Network for 2D Range Scanner Navigation System", Advances in Science, Technology and Engineering Systems Journal, vol. 6, no. 5, pp. 348–355, 2021. doi: 10.25046/aj060539
- Seok-Jun Bu, Hae-Jung Kim, "Ensemble Learning of Deep URL Features based on Convolutional Neural Network for Phishing Attack Detection", Advances in Science, Technology and Engineering Systems Journal, vol. 6, no. 5, pp. 291–296, 2021. doi: 10.25046/aj060532
- Osaretin Eboya, Julia Binti Juremi, "iDRP Framework: An Intelligent Malware Exploration Framework for Big Data and Internet of Things (IoT) Ecosystem", Advances in Science, Technology and Engineering Systems Journal, vol. 6, no. 5, pp. 185–202, 2021. doi: 10.25046/aj060521
- Radwan Qasrawi, Stephanny VicunaPolo, Diala Abu Al-Halawa, Sameh Hallaq, Ziad Abdeen, "Predicting School Children Academic Performance Using Machine Learning Techniques", Advances in Science, Technology and Engineering Systems Journal, vol. 6, no. 5, pp. 08–15, 2021. doi: 10.25046/aj060502
- Fatima-Ezzahra Lagrari, Youssfi Elkettani, "Traditional and Deep Learning Approaches for Sentiment Analysis: A Survey", Advances in Science, Technology and Engineering Systems Journal, vol. 6, no. 5, pp. 01–07, 2021. doi: 10.25046/aj060501
- Liang Chen, Mo-How Herman Shen, "A New Topology Optimization Approach by Physics-Informed Deep Learning Process", Advances in Science, Technology and Engineering Systems Journal, vol. 6, no. 4, pp. 233–240, 2021. doi: 10.25046/aj060427
- Saichon Sinsomboonthong, "Efficiency Comparison in Prediction of Normalization with Data Mining Classification", Advances in Science, Technology and Engineering Systems Journal, vol. 6, no. 4, pp. 130–137, 2021. doi: 10.25046/aj060415
- Valerii Dmitrienko, Serhii Leonov, Aleksandr Zakovorotniy, "New Neural Networks for the Affinity Functions of Binary Images with Binary and Bipolar Components Determining", Advances in Science, Technology and Engineering Systems Journal, vol. 6, no. 4, pp. 91–99, 2021. doi: 10.25046/aj060411
- Anjali Banga, Pradeep Kumar Bhatia, "Optimized Component based Selection using LSTM Model by Integrating Hybrid MVO-PSO Soft Computing Technique", Advances in Science, Technology and Engineering Systems Journal, vol. 6, no. 4, pp. 62–71, 2021. doi: 10.25046/aj060408
- Kwun-Ping Lai, Jackie Chun-Sing Ho, Wai Lam, "Exploiting Domain-Aware Aspect Similarity for Multi-Source Cross-Domain Sentiment Classification", Advances in Science, Technology and Engineering Systems Journal, vol. 6, no. 4, pp. 01–12, 2021. doi: 10.25046/aj060401
- Svetlana Segarceanu, George Suciu, Inge Gavăt, "Environmental Acoustics Modelling Techniques for Forest Monitoring", Advances in Science, Technology and Engineering Systems Journal, vol. 6, no. 3, pp. 15–26, 2021. doi: 10.25046/aj060303
- Bakhtyar Ahmed Mohammed, Muzhir Shaban Al-Ani, "Follow-up and Diagnose COVID-19 Using Deep Learning Technique", Advances in Science, Technology and Engineering Systems Journal, vol. 6, no. 2, pp. 971–976, 2021. doi: 10.25046/aj0602111
- Showkat Ahmad Dar, S Palanivel, "Performance Evaluation of Convolutional Neural Networks (CNNs) And VGG on Real Time Face Recognition System", Advances in Science, Technology and Engineering Systems Journal, vol. 6, no. 2, pp. 956–964, 2021. doi: 10.25046/aj0602109
- Kenza Aitelkadi, Hicham Outmghoust, Salahddine laarab, Kaltoum Moumayiz, Imane Sebari, "Detection and Counting of Fruit Trees from RGB UAV Images by Convolutional Neural Networks Approach", Advances in Science, Technology and Engineering Systems Journal, vol. 6, no. 2, pp. 887–893, 2021. doi: 10.25046/aj0602101
- Binghan Li, Yindong Hua, Mi Lu, "Advanced Multiple Linear Regression Based Dark Channel Prior Applied on Dehazing Image and Generating Synthetic Haze", Advances in Science, Technology and Engineering Systems Journal, vol. 6, no. 2, pp. 790–800, 2021. doi: 10.25046/aj060291
- Abraham Adiputra Wijaya, Inten Yasmina, Amalia Zahra, "Indonesian Music Emotion Recognition Based on Audio with Deep Learning Approach", Advances in Science, Technology and Engineering Systems Journal, vol. 6, no. 2, pp. 716–721, 2021. doi: 10.25046/aj060283
- Shahnaj Parvin, Liton Jude Rozario, Md. Ezharul Islam, "Vehicle Number Plate Detection and Recognition Techniques: A Review", Advances in Science, Technology and Engineering Systems Journal, vol. 6, no. 2, pp. 423–438, 2021. doi: 10.25046/aj060249
- Md. Ashfaqul Islam, Maisha Hasnin, Nayeem Iftakhar, Md. Mushfiqur Rahman, "Super Resolution Based Underwater Image Enhancement by Illumination Adjustment and Color Correction with Fusion Technique", Advances in Science, Technology and Engineering Systems Journal, vol. 6, no. 2, pp. 36–42, 2021. doi: 10.25046/aj060205
- Byeongwoo Kim, Jongkyu Lee, "Fault Diagnosis and Noise Robustness Comparison of Rotating Machinery using CWT and CNN", Advances in Science, Technology and Engineering Systems Journal, vol. 6, no. 1, pp. 1279–1285, 2021. doi: 10.25046/aj0601146
- Basavaraj Madagouda, R. Sumathi, "Artificial Neural Network Approach using Mobile Agent for Localization in Wireless Sensor Networks", Advances in Science, Technology and Engineering Systems Journal, vol. 6, no. 1, pp. 1137–1144, 2021. doi: 10.25046/aj0601127
- Alisson Steffens Henrique, Anita Maria da Rocha Fernandes, Rodrigo Lyra, Valderi Reis Quietinho Leithardt, Sérgio D. Correia, Paul Crocker, Rudimar Luis Scaranto Dazzi, "Classifying Garments from Fashion-MNIST Dataset Through CNNs", Advances in Science, Technology and Engineering Systems Journal, vol. 6, no. 1, pp. 989–994, 2021. doi: 10.25046/aj0601109
- Reem Bayari, Ameur Bensefia, "Text Mining Techniques for Cyberbullying Detection: State of the Art", Advances in Science, Technology and Engineering Systems Journal, vol. 6, no. 1, pp. 783–790, 2021. doi: 10.25046/aj060187
- Imane Jebli, Fatima-Zahra Belouadha, Mohammed Issam Kabbaj, Amine Tilioua, "Deep Learning based Models for Solar Energy Prediction", Advances in Science, Technology and Engineering Systems Journal, vol. 6, no. 1, pp. 349–355, 2021. doi: 10.25046/aj060140
- Karamath Ateeq, Manas Ranjan Pradhan, Beenu Mago, "Elasticity Based Med-Cloud Recommendation System for Diabetic Prediction in Cloud Computing Environment", Advances in Science, Technology and Engineering Systems Journal, vol. 5, no. 6, pp. 1618–1633, 2020. doi: 10.25046/aj0506193
- Revanna Sidamma Kavitha, Uppara Eranna, Mahendra Nanjappa Giriprasad, "A Computational Modelling and Algorithmic Design Approach of Digital Watermarking in Deep Neural Networks", Advances in Science, Technology and Engineering Systems Journal, vol. 5, no. 6, pp. 1560–1568, 2020. doi: 10.25046/aj0506187
- Alimam Mohammed Karim, Alimam Mohammed Abdellah, Seghiouer Hamid, "Analysis of the Operational Impact of ETC Lanes on Toll Station", Advances in Science, Technology and Engineering Systems Journal, vol. 5, no. 6, pp. 1286–1292, 2020. doi: 10.25046/aj0506153
- Majdouline Meddad, Chouaib Moujahdi, Mounia Mikram, Mohammed Rziza, "Optimization of Multi-user Face Identification Systems in Big Data Environments", Advances in Science, Technology and Engineering Systems Journal, vol. 5, no. 6, pp. 762–767, 2020. doi: 10.25046/aj050691
- Yohei Yamauchi, Mitsuyuki Saito, "Adaptive Identification Method of Vehicle Model for Autonomous Driving Robust to Environmental Disturbances", Advances in Science, Technology and Engineering Systems Journal, vol. 5, no. 6, pp. 710–717, 2020. doi: 10.25046/aj050685
- Marcel Nicola, Marian Duță, Maria-Cristina Nițu, Ancuța-Mihaela Aciu, Claudiu-Ionel Nicola, "Improved System Based on ANFIS for Determining the Degree of Polymerization", Advances in Science, Technology and Engineering Systems Journal, vol. 5, no. 6, pp. 664–675, 2020. doi: 10.25046/aj050680
- Khalid Chennoufi, Mohammed Ferfra, "Fast and Efficient Maximum Power Point Tracking Controller for Photovoltaic Modules", Advances in Science, Technology and Engineering Systems Journal, vol. 5, no. 6, pp. 606–612, 2020. doi: 10.25046/aj050674
- Kin Yun Lum, Yeh Huann Goh, Yi Bin Lee, "American Sign Language Recognition Based on MobileNetV2", Advances in Science, Technology and Engineering Systems Journal, vol. 5, no. 6, pp. 481–488, 2020. doi: 10.25046/aj050657
- Miroslav Kratky, Vaclav Minarik, Michal Sustr, Jan Ivan, "Electronic Warfare Methods Combatting UAVs", Advances in Science, Technology and Engineering Systems Journal, vol. 5, no. 6, pp. 447–454, 2020. doi: 10.25046/aj050653
- Gede Putra Kusuma, Jonathan, Andreas Pangestu Lim, "Emotion Recognition on FER-2013 Face Images Using Fine-Tuned VGG-16", Advances in Science, Technology and Engineering Systems Journal, vol. 5, no. 6, pp. 315–322, 2020. doi: 10.25046/aj050638
- Lubna Abdelkareim Gabralla, "Dense Deep Neural Network Architecture for Keystroke Dynamics Authentication in Mobile Phone", Advances in Science, Technology and Engineering Systems Journal, vol. 5, no. 6, pp. 307–314, 2020. doi: 10.25046/aj050637
- Kailerk Treetipsounthorn, Thanisorn Sriudomporn, Gridsada Phanomchoeng, Christian Dengler, Setha Panngum, Sunhapos Chantranuwathana, Ali Zemouche, "Vehicle Rollover Detection in Tripped and Untripped Rollovers using Recurrent Neural Networks", Advances in Science, Technology and Engineering Systems Journal, vol. 5, no. 6, pp. 228–238, 2020. doi: 10.25046/aj050627
- Andrea Generosi, Silvia Ceccacci, Samuele Faggiano, Luca Giraldi, Maura Mengoni, "A Toolkit for the Automatic Analysis of Human Behavior in HCI Applications in the Wild", Advances in Science, Technology and Engineering Systems Journal, vol. 5, no. 6, pp. 185–192, 2020. doi: 10.25046/aj050622
- Fei Gao, Jiangjiang Liu, "Effective Segmented Face Recognition (SFR) for IoT", Advances in Science, Technology and Engineering Systems Journal, vol. 5, no. 6, pp. 36–44, 2020. doi: 10.25046/aj050605
- Pamela Zontone, Antonio Affanni, Riccardo Bernardini, Leonida Del Linz, Alessandro Piras, Roberto Rinaldo, "Supervised Learning Techniques for Stress Detection in Car Drivers", Advances in Science, Technology and Engineering Systems Journal, vol. 5, no. 6, pp. 22–29, 2020. doi: 10.25046/aj050603
- Sherif H. ElGohary, Aya Lithy, Shefaa Khamis, Aya Ali, Aya Alaa el-din, Hager Abd El-Azim, "Interactive Virtual Rehabilitation for Aphasic Arabic-Speaking Patients", Advances in Science, Technology and Engineering Systems Journal, vol. 5, no. 5, pp. 1225–1232, 2020. doi: 10.25046/aj0505148
- Daniyar Nurseitov, Kairat Bostanbekov, Maksat Kanatov, Anel Alimova, Abdelrahman Abdallah, Galymzhan Abdimanap, "Classification of Handwritten Names of Cities and Handwritten Text Recognition using Various Deep Learning Models", Advances in Science, Technology and Engineering Systems Journal, vol. 5, no. 5, pp. 934–943, 2020. doi: 10.25046/aj0505114
- Zahra Jafari, Saman Rajebi, Siyamak Haghipour, "Using the Neural Network to Diagnose the Severity of Heart Disease in Patients Using General Specifications and ECG Signals Received from the Patients", Advances in Science, Technology and Engineering Systems Journal, vol. 5, no. 5, pp. 882–892, 2020. doi: 10.25046/aj0505108
- Gökalp Çınarer, Bülent Gürsel Emiroğlu, Recep Sinan Arslan, Ahmet Haşim Yurttakal, "Brain Tumor Classification Using Deep Neural Network", Advances in Science, Technology and Engineering Systems Journal, vol. 5, no. 5, pp. 765–769, 2020. doi: 10.25046/aj050593
- Lana Abdulrazaq Abdullah, Muzhir Shaban Al-Ani, "CNN-LSTM Based Model for ECG Arrhythmias and Myocardial Infarction Classification", Advances in Science, Technology and Engineering Systems Journal, vol. 5, no. 5, pp. 601–606, 2020. doi: 10.25046/aj050573
- Chigozie Enyinna Nwankpa, "Advances in Optimisation Algorithms and Techniques for Deep Learning", Advances in Science, Technology and Engineering Systems Journal, vol. 5, no. 5, pp. 563–577, 2020. doi: 10.25046/aj050570
- Hicham Moujahid, Bouchaib Cherradi, Oussama El Gannour, Lhoussain Bahatti, Oumaima Terrada, Soufiane Hamida, "Convolutional Neural Network Based Classification of Patients with Pneumonia using X-ray Lung Images", Advances in Science, Technology and Engineering Systems Journal, vol. 5, no. 5, pp. 167–175, 2020. doi: 10.25046/aj050522
- Mohsine Elkhayati, Youssfi Elkettani, "Towards Directing Convolutional Neural Networks Using Computational Geometry Algorithms: Application to Handwritten Arabic Character Recognition", Advances in Science, Technology and Engineering Systems Journal, vol. 5, no. 5, pp. 137–147, 2020. doi: 10.25046/aj050519
- Nghia Duong-Trung, Luyl-Da Quach, Chi-Ngon Nguyen, "Towards Classification of Shrimp Diseases Using Transferred Convolutional Neural Networks", Advances in Science, Technology and Engineering Systems Journal, vol. 5, no. 4, pp. 724–732, 2020. doi: 10.25046/aj050486
- Adonis Santos, Patricia Angela Abu, Carlos Oppus, Rosula Reyes, "Real-Time Traffic Sign Detection and Recognition System for Assistive Driving", Advances in Science, Technology and Engineering Systems Journal, vol. 5, no. 4, pp. 600–611, 2020. doi: 10.25046/aj050471
- Amar Choudhary, Deependra Pandey, Saurabh Bhardwaj, "Overview of Solar Radiation Estimation Techniques with Development of Solar Radiation Model Using Artificial Neural Network", Advances in Science, Technology and Engineering Systems Journal, vol. 5, no. 4, pp. 589–593, 2020. doi: 10.25046/aj050469
- Mohammed Qbadou, Intissar Salhi, Hanaâ El fazazi, Khalifa Mansouri, Michail Manios, Vassilis Kaburlasos, "Human-Robot Multilingual Verbal Communication – The Ontological knowledge and Learning-based Models", Advances in Science, Technology and Engineering Systems Journal, vol. 5, no. 4, pp. 540–547, 2020. doi: 10.25046/aj050464
- Marco Bindi, Igor Aizenberg, Riccardo Belardi, Francesco Grasso, Antonio Luchetta, Stefano Manetti, Maria Cristina Piccirilli, "Neural Network-Based Fault Diagnosis of Joints in High Voltage Electrical Lines", Advances in Science, Technology and Engineering Systems Journal, vol. 5, no. 4, pp. 488–498, 2020. doi: 10.25046/aj050458
- Deborah Ooi Yee Hui, Syaheerah Lebai Lutfi, Syibrah Naim, Zahid Akhtar, Ahmad Sufril Azlan Mohamed, Kamran Siddique, "The Sound of Trust: Towards Modelling Computational Trust using Voice-only Cues at Zero-Acquaintance", Advances in Science, Technology and Engineering Systems Journal, vol. 5, no. 4, pp. 469–476, 2020. doi: 10.25046/aj050456
- Roberta Avanzato, Francesco Beritelli, "A CNN-based Differential Image Processing Approach for Rainfall Classification", Advances in Science, Technology and Engineering Systems Journal, vol. 5, no. 4, pp. 438–444, 2020. doi: 10.25046/aj050452
- Van-Hung Le, Hung-Cuong Nguyen, "A Survey on 3D Hand Skeleton and Pose Estimation by Convolutional Neural Network", Advances in Science, Technology and Engineering Systems Journal, vol. 5, no. 4, pp. 144–159, 2020. doi: 10.25046/aj050418
- Jesuretnam Josemila Baby, James Rose Jeba, "A Hybrid Approach for Intrusion Detection using Integrated K-Means based ANN with PSO Optimization", Advances in Science, Technology and Engineering Systems Journal, vol. 5, no. 3, pp. 317–323, 2020. doi: 10.25046/aj050341
- Neptali Montañez, Jomari Joseph Barrera, "Automated Abaca Fiber Grade Classification Using Convolution Neural Network (CNN)", Advances in Science, Technology and Engineering Systems Journal, vol. 5, no. 3, pp. 207–213, 2020. doi: 10.25046/aj050327
- Yeji Shin, Youngone Cho, Hyun Wook Kang, Jin-Gu Kang, Jin-Woo Jung, "Neural Network-based Efficient Measurement Method on Upside Down Orientation of a Digital Document", Advances in Science, Technology and Engineering Systems Journal, vol. 5, no. 2, pp. 697–702, 2020. doi: 10.25046/aj050286
- Jan Sikora, David Fojtík, "Classification of Timber Load on Trucks", Advances in Science, Technology and Engineering Systems Journal, vol. 5, no. 2, pp. 683–687, 2020. doi: 10.25046/aj050284
- Ahmed EL Orche, Mohamed Bahaj, "Approach to Combine an Ontology-Based on Payment System with Neural Network for Transaction Fraud Detection", Advances in Science, Technology and Engineering Systems Journal, vol. 5, no. 2, pp. 551–560, 2020. doi: 10.25046/aj050269
- Ola Surakhi, Sami Serhan, Imad Salah, "On the Ensemble of Recurrent Neural Network for Air Pollution Forecasting: Issues and Challenges", Advances in Science, Technology and Engineering Systems Journal, vol. 5, no. 2, pp. 512–526, 2020. doi: 10.25046/aj050265
- Bokyoon Na, Geoffrey C Fox, "Object Classifications by Image Super-Resolution Preprocessing for Convolutional Neural Networks", Advances in Science, Technology and Engineering Systems Journal, vol. 5, no. 2, pp. 476–483, 2020. doi: 10.25046/aj050261
- Jude B. Rola, Cherry Lyn C. Sta. Romana, Larmie S. Feliscuzo, Ivy Fe M. Lopez, Cherry N. Rola, "A Comparative Analysis of ARIMA and Feed-Forward Neural Network Prognostic Model for Bull Services", Advances in Science, Technology and Engineering Systems Journal, vol. 5, no. 2, pp. 411–418, 2020. doi: 10.25046/aj050253
- Halima Begum, Muhammed Mazharul Islam, "A Study on the Effects of Combining Different Features for the Recognition of Handwritten Bangla Characters", Advances in Science, Technology and Engineering Systems Journal, vol. 5, no. 2, pp. 197–203, 2020. doi: 10.25046/aj050225
- Lenin G. Falconi, Maria Perez, Wilbert G. Aguilar, Aura Conci, "Transfer Learning and Fine Tuning in Breast Mammogram Abnormalities Classification on CBIS-DDSM Database", Advances in Science, Technology and Engineering Systems Journal, vol. 5, no. 2, pp. 154–165, 2020. doi: 10.25046/aj050220
- Daihui Li, Chengxu Ma, Shangyou Zeng, "Design of Efficient Convolutional Neural Module Based on An Improved Module", Advances in Science, Technology and Engineering Systems Journal, vol. 5, no. 1, pp. 340–345, 2020. doi: 10.25046/aj050143
- Audrey Huong, Xavier Ngu, "Skin Tissue Oxygen Saturation Prediction: A Comparison Study of Artificial Intelligence Techniques", Advances in Science, Technology and Engineering Systems Journal, vol. 5, no. 1, pp. 334–339, 2020. doi: 10.25046/aj050142
- Farah Nadia Ibrahim, Zalhan Mohd Zin, Norazlin Ibrahim, "Eye Feature Extraction with Calibration Model using Viola-Jones and Neural Network Algorithms", Advances in Science, Technology and Engineering Systems Journal, vol. 4, no. 6, pp. 208–215, 2019. doi: 10.25046/aj040627
- Ivan P. Yamshchikov, Alexey Tikhonov, "Learning Literary Style End-to-end with Artificial Neural Networks", Advances in Science, Technology and Engineering Systems Journal, vol. 4, no. 6, pp. 115–125, 2019. doi: 10.25046/aj040614
- Michael Santacroce, Daniel Koranek, Rashmi Jha, "Detecting Malicious Assembly using Convolutional, Recurrent Neural Networks", Advances in Science, Technology and Engineering Systems Journal, vol. 4, no. 5, pp. 46–52, 2019. doi: 10.25046/aj040506
- M. Monica Subashini, Abhinav Deshpande, Ramani Kannan, "Study and Implementation of Various Image De-Noising Methods for Traffic Sign Board Recognition", Advances in Science, Technology and Engineering Systems Journal, vol. 4, no. 4, pp. 545–560, 2019. doi: 10.25046/aj040466
- Mohamad Faiz Ahmad, Syed Sahal Nazli Alhady, Ooi Zhu Oon, Wan Amir Fuad Wajdi Othman, Aeizaal Azman Abdul Wahab, Ahmad Afiq Muhammad Zahir, "Embedded Artificial Neural Network FPGA Controlled Cart", Advances in Science, Technology and Engineering Systems Journal, vol. 4, no. 4, pp. 509–516, 2019. doi: 10.25046/aj040461
- Priyamvada Chandel, Tripta Thakur, "Smart Meter Data Analysis for Electricity Theft Detection using Neural Networks", Advances in Science, Technology and Engineering Systems Journal, vol. 4, no. 4, pp. 161–168, 2019. doi: 10.25046/aj040420
- Ajees Arimbassery Pareed, Sumam Mary Idicula, "A Relation Extraction System for Indian Languages", Advances in Science, Technology and Engineering Systems Journal, vol. 4, no. 2, pp. 65–69, 2019. doi: 10.25046/aj040208
- Eralda Gjika, Aurora Ferrja, Arbesa Kamberi, "A Study on the Efficiency of Hybrid Models in Forecasting Precipitations and Water Inflow Albania Case Study", Advances in Science, Technology and Engineering Systems Journal, vol. 4, no. 1, pp. 302–310, 2019. doi: 10.25046/aj040129
- Samuel Oludare Bamgbose, Xiangfang Li, Lijun Qian, "Trajectory Tracking Control Optimization with Neural Network for Autonomous Vehicles", Advances in Science, Technology and Engineering Systems Journal, vol. 4, no. 1, pp. 217–224, 2019. doi: 10.25046/aj040121
- Bok Gyu Han, Hyeon Seok Yang, Ho Gyeong Lee, Young Shik Moon, "Low Contrast Image Enhancement Using Convolutional Neural Network with Simple Reflection Model", Advances in Science, Technology and Engineering Systems Journal, vol. 4, no. 1, pp. 159–164, 2019. doi: 10.25046/aj040115
- Ali I. Hammoodi, Mariofanna Milanova, Haider Raad, "Elliptical Printed Dipole Antenna Design using ANN Based on Levenberg–Marquardt Algorithm", Advances in Science, Technology and Engineering Systems Journal, vol. 3, no. 5, pp. 394–397, 2018. doi: 10.25046/aj030545
- Margaret Lech, Melissa Stolar, Robert Bolia, Michael Skinner, "Amplitude-Frequency Analysis of Emotional Speech Using Transfer Learning and Classification of Spectrogram Images", Advances in Science, Technology and Engineering Systems Journal, vol. 3, no. 4, pp. 363–371, 2018. doi: 10.25046/aj030437
- Alaa Hamza Omran, Yaser Muhammad Abid, "Design of smart chess board that can predict the next position based on FPGA", Advances in Science, Technology and Engineering Systems Journal, vol. 3, no. 4, pp. 193–200, 2018. doi: 10.25046/aj030417
- Rasel Ahmmed, Md. Asadur Rahman, Md. Foisal Hossain, "An Advanced Algorithm Combining SVM and ANN Classifiers to Categorize Tumor with Position from Brain MRI Images", Advances in Science, Technology and Engineering Systems Journal, vol. 3, no. 2, pp. 40–48, 2018. doi: 10.25046/aj030205
- An-Ting Cheng, Chun-Yen Chen, Bo-Cheng Lai, Che-Huai Lin, "Software and Hardware Enhancement of Convolutional Neural Networks on GPGPUs", Advances in Science, Technology and Engineering Systems Journal, vol. 3, no. 2, pp. 28–39, 2018. doi: 10.25046/aj030204
- Sougata Sheet, Anupam Ghosh, Sudhindu Bikash Mandal, "Cancer Mediating Genes Recognition using Multilayer Perceptron Model- An Application on Human Leukemia", Advances in Science, Technology and Engineering Systems Journal, vol. 3, no. 2, pp. 8–20, 2018. doi: 10.25046/aj030202
