SlideShare ist ein Scribd-Unternehmen logo
1 von 4
Downloaden Sie, um offline zu lesen
International Journal of Research in Advent Technology, Vol.7, No.10, October 2019
E-ISSN: 2321-9637
Available online at www.ijrat.org
1
doi: 10.32622/ijrat.710201909
Abstract— Real-time traffic is now a days biggest
challenging factor. Due to bottleneck of traffic,
environmental challenges are increasing. Hence, AI based
Real time traffic managed to control with efficiency and it is
also an important part of the urban traffic control system. It is
an extremely challenging task to resolve this problem at the
peak time. In this paper, an “Artificial Intelligent System
Model” was developed for managing traffic systems. The
developed Intelligent model makes “real time” decisions to
control the traffic Signals. The model is developed using
Linear Regression. A traffic managing simulator is
developed by using Python 3.5 for controlling congestion
point by using dynamic traffic control AI techniques. A
comparison was made between the static time and artificial
intelligence based dynamic traffic systems. Many tests have
been carried out to check the validity of the model. It has
been found that proposed model is giving good results as
compared to contemporary models.
Index Terms— Modeling, Linear Regression, Cost
Estimation, Intelligent system, Linear Regression (LR).
I. INTRODUCTION
The exponential indefinite quantity of vehicles on the road
occurs traffic congestion at any time. This problem can arise
at any time but hugely impacted at the official time. Hence, it
is an urgent need to manage the vehicles with optimum
efficiency (Shuji et.al, 2017). As vehicles production
continues to increase exponentially, the roads become
witness to encounter the congestion which badly impacts the
time and environment. To avoid congestion at Red light, it is
an urgent need to control this menace(Dipti et. al, 2006).
To control the traffic at peak time, it is necessary that this
process must be dynamically controlled. It is time
consuming if traffic is controlled by static way(Dusan
et.al,2006) . Static management can lead to traffic delays,
substantial reduction in energy savings, and, as a result, a
drastic enhancement in traveling time and increased
un-safety for the public. Control of traffic signals is a
Manuscript revised on October 29, 2019 and published on November
10, 2019
Rabia Khan, MCA, Punjab Technical University, India1
Rashid Hussain, Department of Mathematics and Computer Science, Sule
Lamido University, Kafin Hausa, Jigawa State, Nigeria 2
Shivani Sharma, Research Scholar, Department of Computer Science,
Starex University, Gurugram, India
Dr. Rajesh Kumar Tyagi, Dept. Of CSE, ASET, Amity University, Haryana,
Gurugram, India
ambitious part for cost-effective movement of traffic on
urbanized roads(Zhijun et. al, 2017)
Traffic signal control change in complexions, from
unsophisticated scheme that use real data to find out
determinate timing strategy, to adjustive signal activity,
which allows regulating schemes to network signals in
real-time according to traffic conditions (Ramanujan et. al,
2013).
Figure 1: Heavy Traffic at red light in new Delhi(TOI,
2019)
In figure above 1, it distinctly displays that the behavior of
the traffic flow in the city depends on time as well as input. It
must be controlled analytically if we have some data-set. This
data-set can be helped to learn the machine learning model
(Yujie Dai et.al, 2011).
The sketch of this paper is organized as stick with:
Module I: Introduction of the Problem Definition.
Module II: Describes the modeling of the traffic simulator.
Module III Modeling of The Traffic Control System.
Module IV: Demonstration of the simulation outcome
Module V: Conclusion and Future Scope.
II. REPRESENTATION OF THE SIMULATOR
The aggregation of the vehicles at anytime, anywhere is
tremendous problem. This machine learning projection is
modeled to utilize a fully synchronous simulator of vehicles
and traffic-signal lights fundamental physical phenomenon at
an intersection. The purpose is to take use of the Python
language, which includes multi-threading primitives as part
of the language itself and as part of package
python(Mohiuddin et al. 2015).
A New Way to Resolve Real Time Traffic Control System
by Using Machine Learning Approach
Rabia Khan, Rashid Hussain, Shivani Sharma, Dr. Rajesh Kumar Tyagi
International Journal of Research in Advent Technology, Vol.7, No.10, October 2019
E-ISSN: 2321-9637
Available online at www.ijrat.org
2
doi: 10.32622/ijrat.710201909
Meanwhile, the simulator would also need to take care of the
properties of the real traffic control situation, such as safety
(without vehicles collision), liveliness (without long-time
jam at the intersection), random concurrency (cars are come
from different entrance with different destination) and free
left turn over the four legs.
Traffic simulator exist of a four straight-legged disjuncture
crossing with same 4 traffic lights for dominant continuous
and straight turn traffic, while the left bend is independent.
The vehicles propagation speed and car velocity can be
varied as per in demand.
The accident condition is enforced by the thought of fixing
lock. A fixed lock is a area that can be engaged by a vehicle.
A vehicle can dwell a lock next to it alone if its continuous
and the signal is green and it is the first vehicle in the path.
Likewise, while turn, a vehicle must confine all secured
objects overly before automotive, otherwise, it will be closed.
The aggregation of vehicles imitates apply determinate series
dimension and constant phase succession to check that all the
paths gets their turn and no path is ignored for a very long
time. The simulator investigates the channel and sends the
data to the control algorithmic program for valuation. The
outcome from the algorithmic program are exploited to
render input constants.
III. MODELING OF THE TRAFFIC CONTROL SYSTEM
The point of intersection is considered comparatively
engaged and is intensified with momentous need variations
across all the approaches. For each approach the intersection
with a phase is considered a four-phase, and that the phase
series does not change from each time interval. The cycle
time is fixed.
In the actual time-period, the traffic reaching design, which
can be acquire from sensor placed upstream, are known. All
vehicles are acknowledged as constant velocity. The outcome
is to evolve a traffic adjustive control scheme that see the
actual time traffic scene in small steps (surveillance amount),
and yield appropriate green time extensions to optimizes the
cost-effective function exist of linear combination of
performance scale of measurement of all the four lanes[6].
The cost function can be calculated as:
where h belongs to learning parameter and it is depend on the
dependent(y) and independent parameter(x).
Performance Index (P.I.1)= W1*S1/GT1
Where:
W1 is weight allotted to road 1.
S1 is number of stopped vehicles at road 1.
GT1 is basically addition of green light and green expansion
time (g1).
IV. PROJECTED METHOD TO THE DIFFICULTY USING
LINEAR REGRESSION (LR).
A Linear Regression Analytical model in short LR is a
technique to analyzed e problem with some dataset to find out
the co-relation between different attributes for predicting the
congestion problems at crossings. Regression is an
analytical method acting on some attributes/features.
This statistical based analytical method is generally used for
prediction and determine the real-time origin and analyzed
relation between various features. The LR techniques is
basically rely on the number of independent features of the
data-set and the variety of relationship between the
in-dependent and dependent features.
The LR equation can be written as:
y = mx + c
where m and c are the constants
x is called the independent variables
y is called the dependent varaiables
Figure 2: Description of Linear Regression [13]
As per shown in the figure [2], the Linear Regression model
shows the description about the linear equation, random
error, slope and intercept notifications.
The methodology of this work has been carried out in
following manner:
1) Collection of Real-time data-sets of traffic.
2) Refining of this data-set by removing noise, handling
missing data and outliers.
3) Apply linear regression by using Python modules.
4) Processed this data-set with Proposed Learning
Algorithms.
5) Compare the Accuracy of the Algorithms after comparing
the test results.
J(θ) =
1
2
mX
i=1
(h θ(x (i)
) − y (i)
)2
.
International Journal of Research in Advent Technology, Vol.7, No.10, October 2019
E-ISSN: 2321-9637
Available online at www.ijrat.org
3
doi: 10.32622/ijrat.710201909
V. SIMULATION RESULT
In this section, we are analyzing the effect receive by the
proposed analytical analyzed above with the conventional
and static fixed-timed scheme. Both the scheme is time-tested
on the setting of fixed green signal time of 30 seconds with a
green extension of up to 10 seconds in case of actual
time-based system. The examination of different variables is
considered as the total number of out-going vehicles at a set
vehicles velocity on a fixed interval of times. The results of
this model are as follows:
A sample run:
For car generation speed of 200milli/sec: -
Table 1: Comparison between fixed time and Real
time-based system
Time-zone
(Minutes)
Out Traffic
(Fixed time system)
Out Traffic
(Real time-based
system)
1 60 67
2 110 116
3 170 186
4 232 248
5 273 296
Total: 845 Total: 913
This sample result yields the exit of 845 vehicles and 913
vehicles in the scenario of set-time based and real-time based
system respectively thus these results exhibited a momentous
performance which increases of more than 63 vehicles in just
fraction of minutes. Other sample runs also support the result.
Figure 3: Comparison between fixed time and Real
time-based system.
It has been clearly shown in the figure 3, if we use new
technique such as Linear Regression Algorithm to resolve
traffic congestion significantly then this technique will
improve the system and manage the traffic dynamically.
VI. CONCLUSION
In this paper, an “intelligent” intersection control system was
developed using linear regression model. The developed
“intelligent” system makes “real time” decisions without any
human interference after predicting the actual time of the
red-light on the basis of given data-set. This linear regression
learning model updated the self-learning as the time-progress
and Hence, it provided the desire prediction by which the
more traffic at the same interval of time. This presented
Linear Regression model appeared to be more promising as
compared to contemporary systems. Simulating results
showed significant performance improvement compared to
fixed time-based system within experimental limits
(computation power, random path selection, simulator
settings) under the given assumptions.
This presented model will be further extended and improved
with deep learning model. Interested researcher may
implement deep learning model with the help of python
library for further improving.
REFERENCES
[1]Dipti Srinivasan, Senior Member, IEEE, Min Chee Choy, and Ruey Long
Cheu, Member, IEEE,Neural Networks for Real-Time Traffic Signal
Control in IEEE TRANSACTIONS ON INTELLIGENT
TRANSPORTATION SYSTEMS, VOL. 7, NO. 3, SEPTEMBER
2006.
[2]Shuji Sannomiya, Akira Sato, Kenichi Yoshida, Hiroaki Nishikawa,
"Cardinality Counting Circuit for Real-Time Abnormal Traffic
Detection",IEEE 41st Annual Computer Software and Applications
Conference (COMPSAC), Vol 01 ,Pages:505-510,2017
[3] Duˇsan Teodorovi´c, Vijay Varadarajan, Jovan Popovi´c,Mohan Raj
Chinnaswamy and Sharath Ramaraj, Dynamic programming—neural
network real-time traffic adaptive signal control algorithm by Springer
Science + Business Media, Inc. 2006
[4]Zhijun Li, Chunxiao Li, Yanan Zhang, Xuelong Hu,"Intelligent traffic
light control system based on real time traffic flows 14th IEEE Annual
Consumer Communications & Networking Conference
(CCNC),Pages: 624 - 625,2017
[5]A thesis, Evaluation of Crossover Displaced Left-turn (XDL)
Intersections and Real-time Signal Control Strategies with Artificial
Intelligence Techniques by Ramanujan Jagannathan, faculty of
Virginia Polytechnic Institute and State University,2013.
[6]Peng-Jui Tseng, Chia-Chen Hung, Yu-Hsiang Chuang et.al, "Scaling the
Real-Time Traffic Sensing with GPS Equipped Probe Vehicles" IEEE
79th Vehicular Technology Conference (VTC Spring,Pages: 1 - 5,2014
[7]Yujie Dai, Jinzong Hu, Dongbin Zhao, Fenghua Zhu, “Neural network
based online traffic signal controller design”, IEEE conference on
Intelligent Transportation System, pp. 1045-1050, 5-7 Oct. 2011.
[8]Gabriel Kapapula, Pardeep Mittal,"A Novel Approach for Dynamic Road
Traffic Management System (DRTMS) with Lab VIEW and Arduino"
International Research Journal of Engineering and Technology
(IRJET), Vol 02,Issue 05, Aug 2015.
[9]Mohiuddin Ahmed, Abdun Naser Mahmood,"Novel Approach for
Network Traffic Pattern Analysis using Clustering-based Collective
Anomaly Detection, Annals of Data Science,Springer link", March
2015, Volume 2, Issue 1, pp 111–130
[10] Fusheng Xu; Zhongxiang Huang; Xueying Zhu,"A New Design of
Real-Time Traffic Index Model for Freeway",Fifth IEEE International
Conference on Advanced Cloud and Big Data (CBD),Page 302 –
307,2017
[11] https://timesofindia.indiatimes.com/city/noida/sensor-based-traffic-lig
hts-to-come-up-at-six-more-intersections-in-noida/articleshow/69392
022.cms dated 10 Oct 2019
[12] https://towardsdatascience.com/introduction-to-machine-learning-algo
rithms-linear-regression-14c4e325882a dated 15 Oct 2019
[13] https://madhureshkumar.wordpress.com/2015/07/21/regression-analys
is-linear-regression-sse-assumption-of-linear-regression-error-term-an
d-best-fit-line/ dated 18 Oct 2019
International Journal of Research in Advent Technology, Vol.7, No.10, October 2019
E-ISSN: 2321-9637
Available online at www.ijrat.org
4
doi: 10.32622/ijrat.710201909
Author-1
Photo
Author-2
Photo
Author-3
Photo
AUTHORS PROFILE
Rabia Khan received a B.Sc. degree from CCS University
and Master of Computer Application (MCA) from PTU
University. She is pursuing Ph.D. in Computer Science.
She has published more than 6 scientific and conference
papers. Her research interests include Cloud Computing,
Machine Learning and Image Processing.
Dr. Rashid Husain is currently working as Associate
Professor in the Department of Mathematics and
Computer Science at SLU University, Kaffin Hausa,
Jigawa. He received a B.Sc. degree in 2004 and Master of
Computer Application in 2009. He received his Ph.D.
degree in Computer Science in 2013. He is author of more
than 30 scientific and conference papers. He has supervised more than 13
Master Students. His research interests include Cloud Computing, Machine
Learning, Data mining, and Software Engineering.
Shivani Sharma is currently pursuing Ph.D in the
Department of Computer Science, Starex University,
Gurugram. She received her MCA Degree from MDU,
Rohtak. She also did MBA in HR from Symbiosis
University, Pune. Her Publications, Research papers,
International and National Conferences included are 1.
Intrusion detection by automated Honey-pot Machine learning technology in
an unstructured Big-data 2.Modern approaches of Big data analysis
3.Changing scenario of air: An analogous approach on health. Her current
research interests include Machine Learning, Web Data Mining, Big data
Analytics and E-Commerce.
Dr. Rajesh Kumar Tyagi, received Ph.D. degree from
University School of Engineering and Technology, Guru
Gobind Singh Indraprastha University, New Delhi,
India. Dr. Tyagi has vast teaching and research
experience and published more than 60 research papers
in various reputed International/National
Journals/Conferences. He has guided several B.Tech(CSE/IT),
M.Tech(CSE/IT) and Ph.D. students. His research area of interests include
Ad hoc Networks, Machine Learning, Cloud computing, Cryptography,
Network Security and Modeling & Simulation of Nano-
Devices.

Weitere ähnliche Inhalte

Was ist angesagt?

IRJET- Analysis and Prediction of Delay at Signalized Junctions in Bangalore
IRJET- Analysis and Prediction of Delay at Signalized Junctions in BangaloreIRJET- Analysis and Prediction of Delay at Signalized Junctions in Bangalore
IRJET- Analysis and Prediction of Delay at Signalized Junctions in BangaloreIRJET Journal
 
Optimization of smart traffic lights to prevent traffic congestion using fuzz...
Optimization of smart traffic lights to prevent traffic congestion using fuzz...Optimization of smart traffic lights to prevent traffic congestion using fuzz...
Optimization of smart traffic lights to prevent traffic congestion using fuzz...TELKOMNIKA JOURNAL
 
Fuzzy Model Presentation
Fuzzy Model Presentation Fuzzy Model Presentation
Fuzzy Model Presentation NurudeenIshaq1
 
Help the Genetic Algorithm to Minimize the Urban Traffic on Intersections
Help the Genetic Algorithm to Minimize the Urban Traffic on IntersectionsHelp the Genetic Algorithm to Minimize the Urban Traffic on Intersections
Help the Genetic Algorithm to Minimize the Urban Traffic on IntersectionsIJORCS
 
To Analyze Cargo Loading Optimization Algorithm
To Analyze Cargo Loading Optimization AlgorithmTo Analyze Cargo Loading Optimization Algorithm
To Analyze Cargo Loading Optimization AlgorithmShahzad
 
Modeling business management systems transportation
Modeling business management systems transportationModeling business management systems transportation
Modeling business management systems transportationSherin El-Rashied
 
Real-Time Multiple License Plate Recognition System
Real-Time Multiple License Plate Recognition SystemReal-Time Multiple License Plate Recognition System
Real-Time Multiple License Plate Recognition SystemIJORCS
 
Cooperative Traffic Control based on the Artificial Bee Colony
Cooperative Traffic Control based on the Artificial Bee Colony Cooperative Traffic Control based on the Artificial Bee Colony
Cooperative Traffic Control based on the Artificial Bee Colony IJERA Editor
 
With saloni in ijarcsse
With saloni in ijarcsseWith saloni in ijarcsse
With saloni in ijarcssesatish rana
 
Conflict-free dynamic route multi-agv using dijkstra Floyd-warshall hybrid a...
Conflict-free dynamic route multi-agv using dijkstra  Floyd-warshall hybrid a...Conflict-free dynamic route multi-agv using dijkstra  Floyd-warshall hybrid a...
Conflict-free dynamic route multi-agv using dijkstra Floyd-warshall hybrid a...IJECEIAES
 
IRJET- An Overview on Indian its & Foreign its to Develop its in Nagpur City
IRJET- An Overview on Indian its & Foreign its to Develop its in Nagpur CityIRJET- An Overview on Indian its & Foreign its to Develop its in Nagpur City
IRJET- An Overview on Indian its & Foreign its to Develop its in Nagpur CityIRJET Journal
 
Evaluation of Traffic Characteristics: a Case Study on NH-12, Near Barkatulla...
Evaluation of Traffic Characteristics: a Case Study on NH-12, Near Barkatulla...Evaluation of Traffic Characteristics: a Case Study on NH-12, Near Barkatulla...
Evaluation of Traffic Characteristics: a Case Study on NH-12, Near Barkatulla...IRJET Journal
 
Information Spread in the Context of Evacuation Optimization
Information Spread in the Context of Evacuation OptimizationInformation Spread in the Context of Evacuation Optimization
Information Spread in the Context of Evacuation OptimizationDr. Mirko Kämpf
 
ETC ASSISTED TRAFFIC LIGHT CONTROL SCHEME FOR REDUCING VEHICLES’ CO2 EMISSIONS
ETC ASSISTED TRAFFIC LIGHT CONTROL SCHEME FOR REDUCING VEHICLES’ CO2 EMISSIONSETC ASSISTED TRAFFIC LIGHT CONTROL SCHEME FOR REDUCING VEHICLES’ CO2 EMISSIONS
ETC ASSISTED TRAFFIC LIGHT CONTROL SCHEME FOR REDUCING VEHICLES’ CO2 EMISSIONSIJMIT JOURNAL
 
Artificial Intelligence in Robot Path Planning
Artificial Intelligence in Robot Path PlanningArtificial Intelligence in Robot Path Planning
Artificial Intelligence in Robot Path Planningiosrjce
 
Etc assisted traffic light control scheme for reducing vehicles co2 emissions
Etc assisted traffic light control scheme for reducing vehicles co2 emissionsEtc assisted traffic light control scheme for reducing vehicles co2 emissions
Etc assisted traffic light control scheme for reducing vehicles co2 emissionsIJMIT JOURNAL
 
A COMPARISON BETWEEN SWARM INTELLIGENCE ALGORITHMS FOR ROUTING PROBLEMS
A COMPARISON BETWEEN SWARM INTELLIGENCE ALGORITHMS FOR ROUTING PROBLEMSA COMPARISON BETWEEN SWARM INTELLIGENCE ALGORITHMS FOR ROUTING PROBLEMS
A COMPARISON BETWEEN SWARM INTELLIGENCE ALGORITHMS FOR ROUTING PROBLEMSecij
 

Was ist angesagt? (19)

IRJET- Analysis and Prediction of Delay at Signalized Junctions in Bangalore
IRJET- Analysis and Prediction of Delay at Signalized Junctions in BangaloreIRJET- Analysis and Prediction of Delay at Signalized Junctions in Bangalore
IRJET- Analysis and Prediction of Delay at Signalized Junctions in Bangalore
 
F04514151
F04514151F04514151
F04514151
 
Optimization of smart traffic lights to prevent traffic congestion using fuzz...
Optimization of smart traffic lights to prevent traffic congestion using fuzz...Optimization of smart traffic lights to prevent traffic congestion using fuzz...
Optimization of smart traffic lights to prevent traffic congestion using fuzz...
 
Fuzzy Model Presentation
Fuzzy Model Presentation Fuzzy Model Presentation
Fuzzy Model Presentation
 
Help the Genetic Algorithm to Minimize the Urban Traffic on Intersections
Help the Genetic Algorithm to Minimize the Urban Traffic on IntersectionsHelp the Genetic Algorithm to Minimize the Urban Traffic on Intersections
Help the Genetic Algorithm to Minimize the Urban Traffic on Intersections
 
Fuzzy presenta
Fuzzy presentaFuzzy presenta
Fuzzy presenta
 
To Analyze Cargo Loading Optimization Algorithm
To Analyze Cargo Loading Optimization AlgorithmTo Analyze Cargo Loading Optimization Algorithm
To Analyze Cargo Loading Optimization Algorithm
 
Modeling business management systems transportation
Modeling business management systems transportationModeling business management systems transportation
Modeling business management systems transportation
 
Real-Time Multiple License Plate Recognition System
Real-Time Multiple License Plate Recognition SystemReal-Time Multiple License Plate Recognition System
Real-Time Multiple License Plate Recognition System
 
Cooperative Traffic Control based on the Artificial Bee Colony
Cooperative Traffic Control based on the Artificial Bee Colony Cooperative Traffic Control based on the Artificial Bee Colony
Cooperative Traffic Control based on the Artificial Bee Colony
 
With saloni in ijarcsse
With saloni in ijarcsseWith saloni in ijarcsse
With saloni in ijarcsse
 
Conflict-free dynamic route multi-agv using dijkstra Floyd-warshall hybrid a...
Conflict-free dynamic route multi-agv using dijkstra  Floyd-warshall hybrid a...Conflict-free dynamic route multi-agv using dijkstra  Floyd-warshall hybrid a...
Conflict-free dynamic route multi-agv using dijkstra Floyd-warshall hybrid a...
 
IRJET- An Overview on Indian its & Foreign its to Develop its in Nagpur City
IRJET- An Overview on Indian its & Foreign its to Develop its in Nagpur CityIRJET- An Overview on Indian its & Foreign its to Develop its in Nagpur City
IRJET- An Overview on Indian its & Foreign its to Develop its in Nagpur City
 
Evaluation of Traffic Characteristics: a Case Study on NH-12, Near Barkatulla...
Evaluation of Traffic Characteristics: a Case Study on NH-12, Near Barkatulla...Evaluation of Traffic Characteristics: a Case Study on NH-12, Near Barkatulla...
Evaluation of Traffic Characteristics: a Case Study on NH-12, Near Barkatulla...
 
Information Spread in the Context of Evacuation Optimization
Information Spread in the Context of Evacuation OptimizationInformation Spread in the Context of Evacuation Optimization
Information Spread in the Context of Evacuation Optimization
 
ETC ASSISTED TRAFFIC LIGHT CONTROL SCHEME FOR REDUCING VEHICLES’ CO2 EMISSIONS
ETC ASSISTED TRAFFIC LIGHT CONTROL SCHEME FOR REDUCING VEHICLES’ CO2 EMISSIONSETC ASSISTED TRAFFIC LIGHT CONTROL SCHEME FOR REDUCING VEHICLES’ CO2 EMISSIONS
ETC ASSISTED TRAFFIC LIGHT CONTROL SCHEME FOR REDUCING VEHICLES’ CO2 EMISSIONS
 
Artificial Intelligence in Robot Path Planning
Artificial Intelligence in Robot Path PlanningArtificial Intelligence in Robot Path Planning
Artificial Intelligence in Robot Path Planning
 
Etc assisted traffic light control scheme for reducing vehicles co2 emissions
Etc assisted traffic light control scheme for reducing vehicles co2 emissionsEtc assisted traffic light control scheme for reducing vehicles co2 emissions
Etc assisted traffic light control scheme for reducing vehicles co2 emissions
 
A COMPARISON BETWEEN SWARM INTELLIGENCE ALGORITHMS FOR ROUTING PROBLEMS
A COMPARISON BETWEEN SWARM INTELLIGENCE ALGORITHMS FOR ROUTING PROBLEMSA COMPARISON BETWEEN SWARM INTELLIGENCE ALGORITHMS FOR ROUTING PROBLEMS
A COMPARISON BETWEEN SWARM INTELLIGENCE ALGORITHMS FOR ROUTING PROBLEMS
 

Ähnlich wie 710201909

Evolutionary reinforcement learning multi-agents system for intelligent traf...
Evolutionary reinforcement learning multi-agents system for  intelligent traf...Evolutionary reinforcement learning multi-agents system for  intelligent traf...
Evolutionary reinforcement learning multi-agents system for intelligent traf...IJECEIAES
 
The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)theijes
 
Integrated tripartite modules for intelligent traffic light system
Integrated tripartite modules for intelligent traffic light systemIntegrated tripartite modules for intelligent traffic light system
Integrated tripartite modules for intelligent traffic light systemIJECEIAES
 
A Hybrid Method for Automatic Traffic Control Mechanism
A Hybrid Method for Automatic Traffic Control MechanismA Hybrid Method for Automatic Traffic Control Mechanism
A Hybrid Method for Automatic Traffic Control MechanismMangaiK4
 
Fuzzy Logic Model for Traffic Congestion
Fuzzy Logic Model for Traffic CongestionFuzzy Logic Model for Traffic Congestion
Fuzzy Logic Model for Traffic CongestionIOSR Journals
 
Design and-analysis-of-a-two-stage-traffic-light-system-using-fuzzy-logic-216...
Design and-analysis-of-a-two-stage-traffic-light-system-using-fuzzy-logic-216...Design and-analysis-of-a-two-stage-traffic-light-system-using-fuzzy-logic-216...
Design and-analysis-of-a-two-stage-traffic-light-system-using-fuzzy-logic-216...hanhdoduc
 
Improving traffic and emergency vehicle clearance at congested intersections ...
Improving traffic and emergency vehicle clearance at congested intersections ...Improving traffic and emergency vehicle clearance at congested intersections ...
Improving traffic and emergency vehicle clearance at congested intersections ...IJECEIAES
 
IRJET- Simulation based Automatic Traffic Controlling System
IRJET- Simulation based Automatic Traffic Controlling SystemIRJET- Simulation based Automatic Traffic Controlling System
IRJET- Simulation based Automatic Traffic Controlling SystemIRJET Journal
 
Sound Sensor Based Emergency Vehicle Preemption System using Microcontrolled ...
Sound Sensor Based Emergency Vehicle Preemption System using Microcontrolled ...Sound Sensor Based Emergency Vehicle Preemption System using Microcontrolled ...
Sound Sensor Based Emergency Vehicle Preemption System using Microcontrolled ...Associate Professor in VSB Coimbatore
 
smart traffic control system using canny edge detection algorithm (4).pdf
smart traffic control system using canny edge detection algorithm (4).pdfsmart traffic control system using canny edge detection algorithm (4).pdf
smart traffic control system using canny edge detection algorithm (4).pdfGYamini22
 
Comparative study of traffic signals with and without signal coordination of ...
Comparative study of traffic signals with and without signal coordination of ...Comparative study of traffic signals with and without signal coordination of ...
Comparative study of traffic signals with and without signal coordination of ...IRJET Journal
 
Comparative study of traffic signals with and without signal coordination of ...
Comparative study of traffic signals with and without signal coordination of ...Comparative study of traffic signals with and without signal coordination of ...
Comparative study of traffic signals with and without signal coordination of ...IRJET Journal
 
Adaptive traffic lights based on traffic flow prediction using machine learni...
Adaptive traffic lights based on traffic flow prediction using machine learni...Adaptive traffic lights based on traffic flow prediction using machine learni...
Adaptive traffic lights based on traffic flow prediction using machine learni...IJECEIAES
 
Design of intelligent traffic light controller using gsm & embedded system
Design of intelligent traffic light controller using gsm & embedded systemDesign of intelligent traffic light controller using gsm & embedded system
Design of intelligent traffic light controller using gsm & embedded systemYakkali Kiran
 
Review Paper on Intelligent Traffic Control system using Computer Vision for ...
Review Paper on Intelligent Traffic Control system using Computer Vision for ...Review Paper on Intelligent Traffic Control system using Computer Vision for ...
Review Paper on Intelligent Traffic Control system using Computer Vision for ...JANAK TRIVEDI
 
Integrating Machine Learning and Traffic Simulation for Enhanced Traffic Mana...
Integrating Machine Learning and Traffic Simulation for Enhanced Traffic Mana...Integrating Machine Learning and Traffic Simulation for Enhanced Traffic Mana...
Integrating Machine Learning and Traffic Simulation for Enhanced Traffic Mana...IRJET Journal
 
Intelligent Intersection Management: A Survey
Intelligent Intersection Management: A SurveyIntelligent Intersection Management: A Survey
Intelligent Intersection Management: A SurveyIRJET Journal
 
IRJET- Design and Development of Traffic Flow Prediction System for Efficient...
IRJET- Design and Development of Traffic Flow Prediction System for Efficient...IRJET- Design and Development of Traffic Flow Prediction System for Efficient...
IRJET- Design and Development of Traffic Flow Prediction System for Efficient...IRJET Journal
 
Vehicle Traffic Analysis using CNN Algorithm
Vehicle Traffic Analysis using CNN AlgorithmVehicle Traffic Analysis using CNN Algorithm
Vehicle Traffic Analysis using CNN AlgorithmIRJET Journal
 

Ähnlich wie 710201909 (20)

Evolutionary reinforcement learning multi-agents system for intelligent traf...
Evolutionary reinforcement learning multi-agents system for  intelligent traf...Evolutionary reinforcement learning multi-agents system for  intelligent traf...
Evolutionary reinforcement learning multi-agents system for intelligent traf...
 
The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)
 
Integrated tripartite modules for intelligent traffic light system
Integrated tripartite modules for intelligent traffic light systemIntegrated tripartite modules for intelligent traffic light system
Integrated tripartite modules for intelligent traffic light system
 
A Hybrid Method for Automatic Traffic Control Mechanism
A Hybrid Method for Automatic Traffic Control MechanismA Hybrid Method for Automatic Traffic Control Mechanism
A Hybrid Method for Automatic Traffic Control Mechanism
 
Fuzzy Logic Model for Traffic Congestion
Fuzzy Logic Model for Traffic CongestionFuzzy Logic Model for Traffic Congestion
Fuzzy Logic Model for Traffic Congestion
 
Design and-analysis-of-a-two-stage-traffic-light-system-using-fuzzy-logic-216...
Design and-analysis-of-a-two-stage-traffic-light-system-using-fuzzy-logic-216...Design and-analysis-of-a-two-stage-traffic-light-system-using-fuzzy-logic-216...
Design and-analysis-of-a-two-stage-traffic-light-system-using-fuzzy-logic-216...
 
Improving traffic and emergency vehicle clearance at congested intersections ...
Improving traffic and emergency vehicle clearance at congested intersections ...Improving traffic and emergency vehicle clearance at congested intersections ...
Improving traffic and emergency vehicle clearance at congested intersections ...
 
IRJET- Simulation based Automatic Traffic Controlling System
IRJET- Simulation based Automatic Traffic Controlling SystemIRJET- Simulation based Automatic Traffic Controlling System
IRJET- Simulation based Automatic Traffic Controlling System
 
Sound Sensor Based Emergency Vehicle Preemption System using Microcontrolled ...
Sound Sensor Based Emergency Vehicle Preemption System using Microcontrolled ...Sound Sensor Based Emergency Vehicle Preemption System using Microcontrolled ...
Sound Sensor Based Emergency Vehicle Preemption System using Microcontrolled ...
 
smart traffic control system using canny edge detection algorithm (4).pdf
smart traffic control system using canny edge detection algorithm (4).pdfsmart traffic control system using canny edge detection algorithm (4).pdf
smart traffic control system using canny edge detection algorithm (4).pdf
 
Comparative study of traffic signals with and without signal coordination of ...
Comparative study of traffic signals with and without signal coordination of ...Comparative study of traffic signals with and without signal coordination of ...
Comparative study of traffic signals with and without signal coordination of ...
 
Comparative study of traffic signals with and without signal coordination of ...
Comparative study of traffic signals with and without signal coordination of ...Comparative study of traffic signals with and without signal coordination of ...
Comparative study of traffic signals with and without signal coordination of ...
 
Adaptive traffic lights based on traffic flow prediction using machine learni...
Adaptive traffic lights based on traffic flow prediction using machine learni...Adaptive traffic lights based on traffic flow prediction using machine learni...
Adaptive traffic lights based on traffic flow prediction using machine learni...
 
Design of intelligent traffic light controller using gsm & embedded system
Design of intelligent traffic light controller using gsm & embedded systemDesign of intelligent traffic light controller using gsm & embedded system
Design of intelligent traffic light controller using gsm & embedded system
 
Review Paper on Intelligent Traffic Control system using Computer Vision for ...
Review Paper on Intelligent Traffic Control system using Computer Vision for ...Review Paper on Intelligent Traffic Control system using Computer Vision for ...
Review Paper on Intelligent Traffic Control system using Computer Vision for ...
 
Integrating Machine Learning and Traffic Simulation for Enhanced Traffic Mana...
Integrating Machine Learning and Traffic Simulation for Enhanced Traffic Mana...Integrating Machine Learning and Traffic Simulation for Enhanced Traffic Mana...
Integrating Machine Learning and Traffic Simulation for Enhanced Traffic Mana...
 
Intelligent Intersection Management: A Survey
Intelligent Intersection Management: A SurveyIntelligent Intersection Management: A Survey
Intelligent Intersection Management: A Survey
 
IRJET- Design and Development of Traffic Flow Prediction System for Efficient...
IRJET- Design and Development of Traffic Flow Prediction System for Efficient...IRJET- Design and Development of Traffic Flow Prediction System for Efficient...
IRJET- Design and Development of Traffic Flow Prediction System for Efficient...
 
Vehicle Traffic Analysis using CNN Algorithm
Vehicle Traffic Analysis using CNN AlgorithmVehicle Traffic Analysis using CNN Algorithm
Vehicle Traffic Analysis using CNN Algorithm
 
B-12 Presentation.pptx
B-12 Presentation.pptxB-12 Presentation.pptx
B-12 Presentation.pptx
 

Mehr von IJRAT

96202108
9620210896202108
96202108IJRAT
 
97202107
9720210797202107
97202107IJRAT
 
93202101
9320210193202101
93202101IJRAT
 
92202102
9220210292202102
92202102IJRAT
 
91202104
9120210491202104
91202104IJRAT
 
87202003
8720200387202003
87202003IJRAT
 
87202001
8720200187202001
87202001IJRAT
 
86202013
8620201386202013
86202013IJRAT
 
86202008
8620200886202008
86202008IJRAT
 
86202005
8620200586202005
86202005IJRAT
 
86202004
8620200486202004
86202004IJRAT
 
85202026
8520202685202026
85202026IJRAT
 
711201940
711201940711201940
711201940IJRAT
 
711201939
711201939711201939
711201939IJRAT
 
711201935
711201935711201935
711201935IJRAT
 
711201927
711201927711201927
711201927IJRAT
 
711201905
711201905711201905
711201905IJRAT
 
710201947
710201947710201947
710201947IJRAT
 
712201907
712201907712201907
712201907IJRAT
 
712201903
712201903712201903
712201903IJRAT
 

Mehr von IJRAT (20)

96202108
9620210896202108
96202108
 
97202107
9720210797202107
97202107
 
93202101
9320210193202101
93202101
 
92202102
9220210292202102
92202102
 
91202104
9120210491202104
91202104
 
87202003
8720200387202003
87202003
 
87202001
8720200187202001
87202001
 
86202013
8620201386202013
86202013
 
86202008
8620200886202008
86202008
 
86202005
8620200586202005
86202005
 
86202004
8620200486202004
86202004
 
85202026
8520202685202026
85202026
 
711201940
711201940711201940
711201940
 
711201939
711201939711201939
711201939
 
711201935
711201935711201935
711201935
 
711201927
711201927711201927
711201927
 
711201905
711201905711201905
711201905
 
710201947
710201947710201947
710201947
 
712201907
712201907712201907
712201907
 
712201903
712201903712201903
712201903
 

Kürzlich hochgeladen

Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)simmis5
 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performancesivaprakash250
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingrakeshbaidya232001
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Christo Ananth
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130Suhani Kapoor
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxAsutosh Ranjan
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...ranjana rawat
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSSIVASHANKAR N
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSKurinjimalarL3
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )Tsuyoshi Horigome
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Dr.Costas Sachpazis
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...ranjana rawat
 
result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college projectTonystark477637
 
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSRajkumarAkumalla
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...roncy bisnoi
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Christo Ananth
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 

Kürzlich hochgeladen (20)

Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)
 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performance
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writing
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptx
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )
 
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEDJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
 
result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college project
 
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
 
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
 

710201909

  • 1. International Journal of Research in Advent Technology, Vol.7, No.10, October 2019 E-ISSN: 2321-9637 Available online at www.ijrat.org 1 doi: 10.32622/ijrat.710201909 Abstract— Real-time traffic is now a days biggest challenging factor. Due to bottleneck of traffic, environmental challenges are increasing. Hence, AI based Real time traffic managed to control with efficiency and it is also an important part of the urban traffic control system. It is an extremely challenging task to resolve this problem at the peak time. In this paper, an “Artificial Intelligent System Model” was developed for managing traffic systems. The developed Intelligent model makes “real time” decisions to control the traffic Signals. The model is developed using Linear Regression. A traffic managing simulator is developed by using Python 3.5 for controlling congestion point by using dynamic traffic control AI techniques. A comparison was made between the static time and artificial intelligence based dynamic traffic systems. Many tests have been carried out to check the validity of the model. It has been found that proposed model is giving good results as compared to contemporary models. Index Terms— Modeling, Linear Regression, Cost Estimation, Intelligent system, Linear Regression (LR). I. INTRODUCTION The exponential indefinite quantity of vehicles on the road occurs traffic congestion at any time. This problem can arise at any time but hugely impacted at the official time. Hence, it is an urgent need to manage the vehicles with optimum efficiency (Shuji et.al, 2017). As vehicles production continues to increase exponentially, the roads become witness to encounter the congestion which badly impacts the time and environment. To avoid congestion at Red light, it is an urgent need to control this menace(Dipti et. al, 2006). To control the traffic at peak time, it is necessary that this process must be dynamically controlled. It is time consuming if traffic is controlled by static way(Dusan et.al,2006) . Static management can lead to traffic delays, substantial reduction in energy savings, and, as a result, a drastic enhancement in traveling time and increased un-safety for the public. Control of traffic signals is a Manuscript revised on October 29, 2019 and published on November 10, 2019 Rabia Khan, MCA, Punjab Technical University, India1 Rashid Hussain, Department of Mathematics and Computer Science, Sule Lamido University, Kafin Hausa, Jigawa State, Nigeria 2 Shivani Sharma, Research Scholar, Department of Computer Science, Starex University, Gurugram, India Dr. Rajesh Kumar Tyagi, Dept. Of CSE, ASET, Amity University, Haryana, Gurugram, India ambitious part for cost-effective movement of traffic on urbanized roads(Zhijun et. al, 2017) Traffic signal control change in complexions, from unsophisticated scheme that use real data to find out determinate timing strategy, to adjustive signal activity, which allows regulating schemes to network signals in real-time according to traffic conditions (Ramanujan et. al, 2013). Figure 1: Heavy Traffic at red light in new Delhi(TOI, 2019) In figure above 1, it distinctly displays that the behavior of the traffic flow in the city depends on time as well as input. It must be controlled analytically if we have some data-set. This data-set can be helped to learn the machine learning model (Yujie Dai et.al, 2011). The sketch of this paper is organized as stick with: Module I: Introduction of the Problem Definition. Module II: Describes the modeling of the traffic simulator. Module III Modeling of The Traffic Control System. Module IV: Demonstration of the simulation outcome Module V: Conclusion and Future Scope. II. REPRESENTATION OF THE SIMULATOR The aggregation of the vehicles at anytime, anywhere is tremendous problem. This machine learning projection is modeled to utilize a fully synchronous simulator of vehicles and traffic-signal lights fundamental physical phenomenon at an intersection. The purpose is to take use of the Python language, which includes multi-threading primitives as part of the language itself and as part of package python(Mohiuddin et al. 2015). A New Way to Resolve Real Time Traffic Control System by Using Machine Learning Approach Rabia Khan, Rashid Hussain, Shivani Sharma, Dr. Rajesh Kumar Tyagi
  • 2. International Journal of Research in Advent Technology, Vol.7, No.10, October 2019 E-ISSN: 2321-9637 Available online at www.ijrat.org 2 doi: 10.32622/ijrat.710201909 Meanwhile, the simulator would also need to take care of the properties of the real traffic control situation, such as safety (without vehicles collision), liveliness (without long-time jam at the intersection), random concurrency (cars are come from different entrance with different destination) and free left turn over the four legs. Traffic simulator exist of a four straight-legged disjuncture crossing with same 4 traffic lights for dominant continuous and straight turn traffic, while the left bend is independent. The vehicles propagation speed and car velocity can be varied as per in demand. The accident condition is enforced by the thought of fixing lock. A fixed lock is a area that can be engaged by a vehicle. A vehicle can dwell a lock next to it alone if its continuous and the signal is green and it is the first vehicle in the path. Likewise, while turn, a vehicle must confine all secured objects overly before automotive, otherwise, it will be closed. The aggregation of vehicles imitates apply determinate series dimension and constant phase succession to check that all the paths gets their turn and no path is ignored for a very long time. The simulator investigates the channel and sends the data to the control algorithmic program for valuation. The outcome from the algorithmic program are exploited to render input constants. III. MODELING OF THE TRAFFIC CONTROL SYSTEM The point of intersection is considered comparatively engaged and is intensified with momentous need variations across all the approaches. For each approach the intersection with a phase is considered a four-phase, and that the phase series does not change from each time interval. The cycle time is fixed. In the actual time-period, the traffic reaching design, which can be acquire from sensor placed upstream, are known. All vehicles are acknowledged as constant velocity. The outcome is to evolve a traffic adjustive control scheme that see the actual time traffic scene in small steps (surveillance amount), and yield appropriate green time extensions to optimizes the cost-effective function exist of linear combination of performance scale of measurement of all the four lanes[6]. The cost function can be calculated as: where h belongs to learning parameter and it is depend on the dependent(y) and independent parameter(x). Performance Index (P.I.1)= W1*S1/GT1 Where: W1 is weight allotted to road 1. S1 is number of stopped vehicles at road 1. GT1 is basically addition of green light and green expansion time (g1). IV. PROJECTED METHOD TO THE DIFFICULTY USING LINEAR REGRESSION (LR). A Linear Regression Analytical model in short LR is a technique to analyzed e problem with some dataset to find out the co-relation between different attributes for predicting the congestion problems at crossings. Regression is an analytical method acting on some attributes/features. This statistical based analytical method is generally used for prediction and determine the real-time origin and analyzed relation between various features. The LR techniques is basically rely on the number of independent features of the data-set and the variety of relationship between the in-dependent and dependent features. The LR equation can be written as: y = mx + c where m and c are the constants x is called the independent variables y is called the dependent varaiables Figure 2: Description of Linear Regression [13] As per shown in the figure [2], the Linear Regression model shows the description about the linear equation, random error, slope and intercept notifications. The methodology of this work has been carried out in following manner: 1) Collection of Real-time data-sets of traffic. 2) Refining of this data-set by removing noise, handling missing data and outliers. 3) Apply linear regression by using Python modules. 4) Processed this data-set with Proposed Learning Algorithms. 5) Compare the Accuracy of the Algorithms after comparing the test results. J(θ) = 1 2 mX i=1 (h θ(x (i) ) − y (i) )2 .
  • 3. International Journal of Research in Advent Technology, Vol.7, No.10, October 2019 E-ISSN: 2321-9637 Available online at www.ijrat.org 3 doi: 10.32622/ijrat.710201909 V. SIMULATION RESULT In this section, we are analyzing the effect receive by the proposed analytical analyzed above with the conventional and static fixed-timed scheme. Both the scheme is time-tested on the setting of fixed green signal time of 30 seconds with a green extension of up to 10 seconds in case of actual time-based system. The examination of different variables is considered as the total number of out-going vehicles at a set vehicles velocity on a fixed interval of times. The results of this model are as follows: A sample run: For car generation speed of 200milli/sec: - Table 1: Comparison between fixed time and Real time-based system Time-zone (Minutes) Out Traffic (Fixed time system) Out Traffic (Real time-based system) 1 60 67 2 110 116 3 170 186 4 232 248 5 273 296 Total: 845 Total: 913 This sample result yields the exit of 845 vehicles and 913 vehicles in the scenario of set-time based and real-time based system respectively thus these results exhibited a momentous performance which increases of more than 63 vehicles in just fraction of minutes. Other sample runs also support the result. Figure 3: Comparison between fixed time and Real time-based system. It has been clearly shown in the figure 3, if we use new technique such as Linear Regression Algorithm to resolve traffic congestion significantly then this technique will improve the system and manage the traffic dynamically. VI. CONCLUSION In this paper, an “intelligent” intersection control system was developed using linear regression model. The developed “intelligent” system makes “real time” decisions without any human interference after predicting the actual time of the red-light on the basis of given data-set. This linear regression learning model updated the self-learning as the time-progress and Hence, it provided the desire prediction by which the more traffic at the same interval of time. This presented Linear Regression model appeared to be more promising as compared to contemporary systems. Simulating results showed significant performance improvement compared to fixed time-based system within experimental limits (computation power, random path selection, simulator settings) under the given assumptions. This presented model will be further extended and improved with deep learning model. Interested researcher may implement deep learning model with the help of python library for further improving. REFERENCES [1]Dipti Srinivasan, Senior Member, IEEE, Min Chee Choy, and Ruey Long Cheu, Member, IEEE,Neural Networks for Real-Time Traffic Signal Control in IEEE TRANSACTIONS ON INTELLIGENT TRANSPORTATION SYSTEMS, VOL. 7, NO. 3, SEPTEMBER 2006. [2]Shuji Sannomiya, Akira Sato, Kenichi Yoshida, Hiroaki Nishikawa, "Cardinality Counting Circuit for Real-Time Abnormal Traffic Detection",IEEE 41st Annual Computer Software and Applications Conference (COMPSAC), Vol 01 ,Pages:505-510,2017 [3] Duˇsan Teodorovi´c, Vijay Varadarajan, Jovan Popovi´c,Mohan Raj Chinnaswamy and Sharath Ramaraj, Dynamic programming—neural network real-time traffic adaptive signal control algorithm by Springer Science + Business Media, Inc. 2006 [4]Zhijun Li, Chunxiao Li, Yanan Zhang, Xuelong Hu,"Intelligent traffic light control system based on real time traffic flows 14th IEEE Annual Consumer Communications & Networking Conference (CCNC),Pages: 624 - 625,2017 [5]A thesis, Evaluation of Crossover Displaced Left-turn (XDL) Intersections and Real-time Signal Control Strategies with Artificial Intelligence Techniques by Ramanujan Jagannathan, faculty of Virginia Polytechnic Institute and State University,2013. [6]Peng-Jui Tseng, Chia-Chen Hung, Yu-Hsiang Chuang et.al, "Scaling the Real-Time Traffic Sensing with GPS Equipped Probe Vehicles" IEEE 79th Vehicular Technology Conference (VTC Spring,Pages: 1 - 5,2014 [7]Yujie Dai, Jinzong Hu, Dongbin Zhao, Fenghua Zhu, “Neural network based online traffic signal controller design”, IEEE conference on Intelligent Transportation System, pp. 1045-1050, 5-7 Oct. 2011. [8]Gabriel Kapapula, Pardeep Mittal,"A Novel Approach for Dynamic Road Traffic Management System (DRTMS) with Lab VIEW and Arduino" International Research Journal of Engineering and Technology (IRJET), Vol 02,Issue 05, Aug 2015. [9]Mohiuddin Ahmed, Abdun Naser Mahmood,"Novel Approach for Network Traffic Pattern Analysis using Clustering-based Collective Anomaly Detection, Annals of Data Science,Springer link", March 2015, Volume 2, Issue 1, pp 111–130 [10] Fusheng Xu; Zhongxiang Huang; Xueying Zhu,"A New Design of Real-Time Traffic Index Model for Freeway",Fifth IEEE International Conference on Advanced Cloud and Big Data (CBD),Page 302 – 307,2017 [11] https://timesofindia.indiatimes.com/city/noida/sensor-based-traffic-lig hts-to-come-up-at-six-more-intersections-in-noida/articleshow/69392 022.cms dated 10 Oct 2019 [12] https://towardsdatascience.com/introduction-to-machine-learning-algo rithms-linear-regression-14c4e325882a dated 15 Oct 2019 [13] https://madhureshkumar.wordpress.com/2015/07/21/regression-analys is-linear-regression-sse-assumption-of-linear-regression-error-term-an d-best-fit-line/ dated 18 Oct 2019
  • 4. International Journal of Research in Advent Technology, Vol.7, No.10, October 2019 E-ISSN: 2321-9637 Available online at www.ijrat.org 4 doi: 10.32622/ijrat.710201909 Author-1 Photo Author-2 Photo Author-3 Photo AUTHORS PROFILE Rabia Khan received a B.Sc. degree from CCS University and Master of Computer Application (MCA) from PTU University. She is pursuing Ph.D. in Computer Science. She has published more than 6 scientific and conference papers. Her research interests include Cloud Computing, Machine Learning and Image Processing. Dr. Rashid Husain is currently working as Associate Professor in the Department of Mathematics and Computer Science at SLU University, Kaffin Hausa, Jigawa. He received a B.Sc. degree in 2004 and Master of Computer Application in 2009. He received his Ph.D. degree in Computer Science in 2013. He is author of more than 30 scientific and conference papers. He has supervised more than 13 Master Students. His research interests include Cloud Computing, Machine Learning, Data mining, and Software Engineering. Shivani Sharma is currently pursuing Ph.D in the Department of Computer Science, Starex University, Gurugram. She received her MCA Degree from MDU, Rohtak. She also did MBA in HR from Symbiosis University, Pune. Her Publications, Research papers, International and National Conferences included are 1. Intrusion detection by automated Honey-pot Machine learning technology in an unstructured Big-data 2.Modern approaches of Big data analysis 3.Changing scenario of air: An analogous approach on health. Her current research interests include Machine Learning, Web Data Mining, Big data Analytics and E-Commerce. Dr. Rajesh Kumar Tyagi, received Ph.D. degree from University School of Engineering and Technology, Guru Gobind Singh Indraprastha University, New Delhi, India. Dr. Tyagi has vast teaching and research experience and published more than 60 research papers in various reputed International/National Journals/Conferences. He has guided several B.Tech(CSE/IT), M.Tech(CSE/IT) and Ph.D. students. His research area of interests include Ad hoc Networks, Machine Learning, Cloud computing, Cryptography, Network Security and Modeling & Simulation of Nano- Devices.