SlideShare a Scribd company logo
1 of 5
Download to read offline
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
© 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 251
Comparative Analysis of Machine Learning Models for Cricket Score
and Win Prediction: A Case Study of Linear Regression, Random Forest,
Neural Network, and Elastic Net
Omar Faruq
1
, Arifa Sultana Mily
2
, Ashraful Islam3, Shahriar Sadman Dihan
4
, Mohammad Asif
Khan
5
12345UG-Students, Department of Computer Science Engineering, East West University, A, 2 Jahurul Islam Ave,
Dhaka
---------------------------------------------------------------------***---------------------------------------------------------------------
Abstract - Cricket is the 2nd most popular sport in the
world behind football. Especially, in Bangladesh the
popularity of cricket and the passion that people show for
it, can’t be described in words. Cricket is played all around
the year. So, we have built a system that predicts a team's
final score at any point of the match. The things that are
taken into consideration are the teams that are playing,
where the match is being played, what’s the current runs
and wickets, how many runs have been scored, and how
many wickets have fallen in the last 5 overs. We are using 3
different machine algorithms; Linear Regression, Random
Forest, Elastic Net, and Neural Network to predict the
score. There is also a live win prediction system that will
predict which team is going to win at any moment of the
match. The Random Forest algorithm is used for the win
prediction system. Random Forest has the highest R2 value.
It also has the lowest mean squared error and mean
absolute error.
Key Words: Machine Learning, Linear Regression,
Random Forest, Elastic Net, Neural Network, ODI Cricket
Winning Prediction, ODI Cricket Score Prediction, Cricket
Score Prediction, Cricket Win Prediction
1. INTRODUCTION
Cricket is a global phenomenon, loved by millions around
the world. In the Sixteenth Century in England, cricket
originated. International cricket matches are almost
always being played. Fans eagerly wait for big events like
the World Cup, and Champions Trophy, all of which are
being played by a lot of teams representing their nations.
The main formats in international cricket are Test, ODI,
and T20. Among these ODI can easily be considered the
most popular. There is massive media coverage, and
financial incentives surrounding cricket. Before and during
the match fans and cricket experts make their predictions.
So, there is a big demand for score prediction systems.
Modern-day broadcasters want to show the viewers as
many detailed statistics as possible. So, score Prediction
and win prediction is a big deal for them. Our prediction
system will do exactly that. It will do score prediction and
win prediction for any international ODI match. The task
will be done by multiple efficient machine-learning
algorithms.
1.1Objectives
1. To Predict the cricket score of international ODI matches.
2. To Predict the winner of the match.
3. Being more efficient than existing systems.
4. A more complex system that will take a lot of things into
consideration when doing prediction.
5. Using different models so that the best-performing model
can be found and used for prediction.
1.2 Scope
Our project aims to change the perception of cricket fans
predicting cricket scores by relying on statistical data rather
than some fan-made theories. This scope makes predicting
cricket outcomes, such as live score or win predictor easier
with more reliability and accuracy.
2. PROPOSED SYSTEM
Cricket score and winning prediction It's a system that can
predict the live cricket scores and win predictions. In this
system, we use 4 types of models. There are two segments
in this model. In the initial portion we will predict the live
score of a live cricket match considering various
parameters and, in the second portion, the model will
predict the winner of the match by considering different
parameters and efficient algorithms.
3. METHODOLOGY
3.1Algorithms
1. Linear Regression:
Linear regression is a type of supervised machine learning
algorithm that can calculate a linear relationship between a
dependent variable and one or more independent variables.
There are two types of linear regression; univariate linear
regression and multivariate linear regression. The
Volume: 10 Issue: 11 | Nov 2023 www.irjet.net p-ISSN: 2395-0072
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
© 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 252
algorithm tries to find the best possible value of the
dependent variable by finding the equation of the best-fit
line for a set of paired data The equation provides a
straight line that represents the relationship between the
dependent and independent variables. Linear regression is
used for both classification and regression problems. We
used multivariate linear regression.
2. Random Forest:
Random forest is a classifier which is a collection of
multiple decision trees. Instead of hoping for a single
decision tree, Random Forest takes the prediction of each
tree and using the bagging method predicts the final result.
The more decision trees there are the greater the accuracy.
3. Neural network:
A neural network is a multi-layered machine learning
process. There are three types of layers in neural
networks. The first layer is the input layer. Then there are
hidden layers. The accuracy will increase if the number of
hidden layers increases. All the calculation is done in the
hidden layer. The final layer is the output layer that shows
the output. Our neural network only has one hidden layer.
4. Elastic Net:
Elastic Net linear regression with regularization concept
that uses both Lasso and Ridge Regulation techniques.
Regulation is used so that the model doesn’t overfit. Lasso
is used to identify the most influential features it can
discard some features when training the model. On the
other hand, Ridge doesn’t discard any features rather it
only improves the overall fitness of the model. The elastic
net that we used is a 50-50 mix of the Lasso and Ridge
regularization techniques.
3.2 System Description
To fit the model, we collected the dataset from GitHub and
the dataset provided us ball by ball-by-ball information
about the match. We divided the dataset into two
segments, training and testing. This model predicts both
the winner and the live score. For live score prediction or
prediction of winner, we considered parameters are overs
bowled, runs scored, number of wickets fallen, runs scored
in the previous 5 overs, and wickets fell in the previous 5
overs. We applied more than one classifier algorithm to
these parameters and to build up the model we used
Google Colaboratory execution.
4. DATASET
Many websites have lots of datasets but every dataset is
useful for cricket score prediction we collected datasets for
cricket score prediction from GitHub. the prediction has
350899 rows and 15 columns. which had 9 types of
numerical datasets and 5 types of categorical datasets over
which different techniques are applied. In this paper, we use
three models for introducing a score that does not entirely
support the current run rate, although this paper introduces
a model that includes three methods and takes into account
the number of wickets, the match's location, and the batting
team. The second approach focuses on the result of the
game between the second innings, with the batting team
being given a target while taking into account the same
factors as the first inning. These techniques were used to
classify the worst-case linear regression for the first shift
and second inning.
Figure 1. Dataset
5. RESULT
Here are some of our project’s (Live Cricket Score and
Winning Prediction) outcomes.
Figure 2. Comparison of models Using MSE, MAE & R2
Here we can see four types of models among them Random
Forest is the best model in all aspects. It has the lowest MSE
value, MAE value, and best R2 value. Mean Squared Error is
the average of the squared difference between the data set's
original and forecasted values. It computes the residual
variance. The mean absolute error is the average of the
Volume: 10 Issue: 11 | Nov 2023 www.irjet.net p-ISSN: 2395-0072
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
© 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 253
absolute difference between the actual and expected
values in the dataset. It computes the mean of the dataset's
residuals. R-squared is a statistical measure that reflects
how much of a dependent variable's fluctuation can be
explained by an independent variable in a regression
model.
Figure 3. Score prediction using Linear Regression
For Linear Regression, after selecting all the required info
if we press the linear regression button the model will
show us the predicted final score of the batting team.
Figure 4. Score prediction using Random Forest
For Random Forest, after selecting all the required info if
we press the Random Forest button the model will show us
the predicted final score of the batting team.
Figure 5. Score prediction using Neural Network
For Neural Network, after selecting all the required info if
we press the Neural Network button the model will show us
the predicted final score of the batting team.
Figure 6. Score prediction using Elastic Net
For Elastic Net, after selecting all the required info if we
press the Elastic Net button the model will show us the
predicted final score of the batting team.
Volume: 10 Issue: 11 | Nov 2023 www.irjet.net p-ISSN: 2395-0072
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
© 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 254
Figure 7. Winner prediction using Random Forest
We can predict the winner for all four phases by selecting
all of the required information also we can select if it's 1st
inning or 2nd inning. If we press the Predict Winner button
the model will display the anticipated winner team name
below the final score.
Figure 8. Winner prediction using Random Forest
6. Model Analysis
Table 1. Model Comparison
Graph 1. Model Comparison
7. CONCLUSION
This paper shows the statistical models for predicting the
participation of every team member in every match.
Different types of datasets can conduct the analysis and
predict the score of the match. Also, Data Science will be
converged including pre-processing of data, Visualization of
data, preparation of data, feature selection, and
implementation of different machine learning models for
the predictions. The main goal of this paper is to use past
data to forecast the final score and match winner. To
accurately forecast the score of innings and obtain the
desired outcome, several machine learning models will be
applied to specified data for predicting the winning team.
8. REFERENCES
[1] An Ultimate Tutorial to Neural Networks (2023),
AI&MachineLearning.https://www.simplilearn.com/tutoria
ls/deep-learning-tutorial/neural-
network?fbclid=IwAR3uHPZ-
ju0e0gXagNBSDkUGUg3DVG66w1s9Za76UBO5xYQGIRX1v
g_pKGg#:~:text=A%20neural%20network%20is%20usuall
y,more%20than%20one%20hidden%20layer
0
500
1000
1500
2000
MSE MAE R2
Model Comparison
Linear Regression Random Forest
Neural Network Elastic Net
Performance
Measure
Linear
Regression
Random
Forest
Neural
Network
Elastic
Net
MSE 1482.09 74.73 499.03 1836.82
MAE 29.13 3.46 16.09 31.78
R2 0.61 0.98 0.87 0.52
Volume: 10 Issue: 11 | Nov 2023 www.irjet.net p-ISSN: 2395-0072
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 10 Issue: 11 | Nov 2023 www.irjet.net p-ISSN: 2395-0072
© 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 255
[2] Cricket Score Prediction Using Machine Learning
(2023),
https://ijirt.org/master/publishedpaper/IJIRT157821_PA
PER.pdf
[3] Cricket Score Prediction Using Machine Learning
(2021), RSCOE, Assistant Professor, Pune, Maharashtra,
India. 2,3,4,5RSCOE, Pune,
Maharashtra,India,https://turcomat.org/index.php/turkbil
mat/article/view/1546/1299
[4] Cricket Score and Winning Prediction (2022), Omkar
Mozar, Soham More, Shubham Nagare, Prof. Nileema
Pathak, https://www.irjet.net/archives/V9/i4/IRJET-
V9I4181.pdf
[5] Cricket Score Predictor, Shivam Mitra
(2019).https://github.com/codophobia/CricketScorePredi
ctor/blob/master/data/odi.csv
[6] CRICKET TEAM PREDICTION USING MACHINE
LEARNING TECHNIQUES (2021), Nilesh M. Patil, Bevan H.
Sequeira, Neil N. Gonsalves, Abhishek A.
Singh,https://papers.ssrn.com/sol3/papers.cfm?abstract_i
d=3572740
[7] Cricket Team Prediction with Hadoop(2017), Shubham
Agarwal, lavish yadav, shikha
mehta,India,https://www.researchgate.net/publication/32
1749942_Cricket_Team_Prediction_with_Hadoop_Statistica
l_Modeling_Approach

More Related Content

Similar to Comparative Analysis of Machine Learning Models for Cricket Score and Win Prediction: A Case Study of Linear Regression, Random Forest, Neural Network, and Elastic Net

IRJET - Company’s Stock Price Predictor using Machine Learning
IRJET -  	  Company’s Stock Price Predictor using Machine LearningIRJET -  	  Company’s Stock Price Predictor using Machine Learning
IRJET - Company’s Stock Price Predictor using Machine LearningIRJET Journal
 
IRJET- Comparison of Classification Algorithms using Machine Learning
IRJET- Comparison of Classification Algorithms using Machine LearningIRJET- Comparison of Classification Algorithms using Machine Learning
IRJET- Comparison of Classification Algorithms using Machine LearningIRJET Journal
 
Human Activity Recognition Using AccelerometerData
Human Activity Recognition Using AccelerometerDataHuman Activity Recognition Using AccelerometerData
Human Activity Recognition Using AccelerometerDataIRJET Journal
 
STOCK PRICE PREDICTION USING MACHINE LEARNING [RANDOM FOREST REGRESSION MODEL]
STOCK PRICE PREDICTION USING MACHINE LEARNING [RANDOM FOREST REGRESSION MODEL]STOCK PRICE PREDICTION USING MACHINE LEARNING [RANDOM FOREST REGRESSION MODEL]
STOCK PRICE PREDICTION USING MACHINE LEARNING [RANDOM FOREST REGRESSION MODEL]IRJET Journal
 
IRJET- Analysis of Various Machine Learning Algorithms for Stock Value Predic...
IRJET- Analysis of Various Machine Learning Algorithms for Stock Value Predic...IRJET- Analysis of Various Machine Learning Algorithms for Stock Value Predic...
IRJET- Analysis of Various Machine Learning Algorithms for Stock Value Predic...IRJET Journal
 
IRJET- Data Visualization and Stock Market and Prediction
IRJET- Data Visualization and Stock Market and PredictionIRJET- Data Visualization and Stock Market and Prediction
IRJET- Data Visualization and Stock Market and PredictionIRJET Journal
 
Olympics Sports Data Analysis
Olympics Sports Data AnalysisOlympics Sports Data Analysis
Olympics Sports Data AnalysisIRJET Journal
 
Predicting Stock Price Movements with Low Power Consumption LSTM
Predicting Stock Price Movements with Low Power Consumption LSTMPredicting Stock Price Movements with Low Power Consumption LSTM
Predicting Stock Price Movements with Low Power Consumption LSTMIRJET Journal
 
AIRLINE FARE PRICE PREDICTION
AIRLINE FARE PRICE PREDICTIONAIRLINE FARE PRICE PREDICTION
AIRLINE FARE PRICE PREDICTIONIRJET Journal
 
IRJET - Comparative Study of Flight Delay Prediction using Back Propagati...
IRJET -  	  Comparative Study of Flight Delay Prediction using Back Propagati...IRJET -  	  Comparative Study of Flight Delay Prediction using Back Propagati...
IRJET - Comparative Study of Flight Delay Prediction using Back Propagati...IRJET Journal
 
Visualizing and Forecasting Stocks Using Machine Learning
Visualizing and Forecasting Stocks Using Machine LearningVisualizing and Forecasting Stocks Using Machine Learning
Visualizing and Forecasting Stocks Using Machine LearningIRJET Journal
 
Stock Price Prediction using Machine Learning Algorithms: ARIMA, LSTM & Linea...
Stock Price Prediction using Machine Learning Algorithms: ARIMA, LSTM & Linea...Stock Price Prediction using Machine Learning Algorithms: ARIMA, LSTM & Linea...
Stock Price Prediction using Machine Learning Algorithms: ARIMA, LSTM & Linea...IRJET Journal
 
IRJET- No More Third Umpires
IRJET-  	  No More Third UmpiresIRJET-  	  No More Third Umpires
IRJET- No More Third UmpiresIRJET Journal
 
IRJET- Implementation of Gender Detection with Notice Board using Raspberry Pi
IRJET- Implementation of Gender Detection with Notice Board using Raspberry PiIRJET- Implementation of Gender Detection with Notice Board using Raspberry Pi
IRJET- Implementation of Gender Detection with Notice Board using Raspberry PiIRJET Journal
 
AlgoB – Cryptocurrency price prediction system using LSTM
AlgoB – Cryptocurrency price prediction system using LSTMAlgoB – Cryptocurrency price prediction system using LSTM
AlgoB – Cryptocurrency price prediction system using LSTMIRJET Journal
 
Modelling & simulation of human powered flywheel
Modelling & simulation of human powered flywheelModelling & simulation of human powered flywheel
Modelling & simulation of human powered flywheeleSAT Publishing House
 
Modelling & simulation of human powered flywheel motor for field data in ...
Modelling & simulation of human powered flywheel motor for field data in ...Modelling & simulation of human powered flywheel motor for field data in ...
Modelling & simulation of human powered flywheel motor for field data in ...eSAT Journals
 
Machine Learning, K-means Algorithm Implementation with R
Machine Learning, K-means Algorithm Implementation with RMachine Learning, K-means Algorithm Implementation with R
Machine Learning, K-means Algorithm Implementation with RIRJET Journal
 
CPU HARDWARE CLASSIFICATION AND PERFORMANCE PREDICTION USING NEURAL NETWORKS ...
CPU HARDWARE CLASSIFICATION AND PERFORMANCE PREDICTION USING NEURAL NETWORKS ...CPU HARDWARE CLASSIFICATION AND PERFORMANCE PREDICTION USING NEURAL NETWORKS ...
CPU HARDWARE CLASSIFICATION AND PERFORMANCE PREDICTION USING NEURAL NETWORKS ...gerogepatton
 
CPU HARDWARE CLASSIFICATION AND PERFORMANCE PREDICTION USING NEURAL NETWORKS ...
CPU HARDWARE CLASSIFICATION AND PERFORMANCE PREDICTION USING NEURAL NETWORKS ...CPU HARDWARE CLASSIFICATION AND PERFORMANCE PREDICTION USING NEURAL NETWORKS ...
CPU HARDWARE CLASSIFICATION AND PERFORMANCE PREDICTION USING NEURAL NETWORKS ...ijaia
 

Similar to Comparative Analysis of Machine Learning Models for Cricket Score and Win Prediction: A Case Study of Linear Regression, Random Forest, Neural Network, and Elastic Net (20)

IRJET - Company’s Stock Price Predictor using Machine Learning
IRJET -  	  Company’s Stock Price Predictor using Machine LearningIRJET -  	  Company’s Stock Price Predictor using Machine Learning
IRJET - Company’s Stock Price Predictor using Machine Learning
 
IRJET- Comparison of Classification Algorithms using Machine Learning
IRJET- Comparison of Classification Algorithms using Machine LearningIRJET- Comparison of Classification Algorithms using Machine Learning
IRJET- Comparison of Classification Algorithms using Machine Learning
 
Human Activity Recognition Using AccelerometerData
Human Activity Recognition Using AccelerometerDataHuman Activity Recognition Using AccelerometerData
Human Activity Recognition Using AccelerometerData
 
STOCK PRICE PREDICTION USING MACHINE LEARNING [RANDOM FOREST REGRESSION MODEL]
STOCK PRICE PREDICTION USING MACHINE LEARNING [RANDOM FOREST REGRESSION MODEL]STOCK PRICE PREDICTION USING MACHINE LEARNING [RANDOM FOREST REGRESSION MODEL]
STOCK PRICE PREDICTION USING MACHINE LEARNING [RANDOM FOREST REGRESSION MODEL]
 
IRJET- Analysis of Various Machine Learning Algorithms for Stock Value Predic...
IRJET- Analysis of Various Machine Learning Algorithms for Stock Value Predic...IRJET- Analysis of Various Machine Learning Algorithms for Stock Value Predic...
IRJET- Analysis of Various Machine Learning Algorithms for Stock Value Predic...
 
IRJET- Data Visualization and Stock Market and Prediction
IRJET- Data Visualization and Stock Market and PredictionIRJET- Data Visualization and Stock Market and Prediction
IRJET- Data Visualization and Stock Market and Prediction
 
Olympics Sports Data Analysis
Olympics Sports Data AnalysisOlympics Sports Data Analysis
Olympics Sports Data Analysis
 
Predicting Stock Price Movements with Low Power Consumption LSTM
Predicting Stock Price Movements with Low Power Consumption LSTMPredicting Stock Price Movements with Low Power Consumption LSTM
Predicting Stock Price Movements with Low Power Consumption LSTM
 
AIRLINE FARE PRICE PREDICTION
AIRLINE FARE PRICE PREDICTIONAIRLINE FARE PRICE PREDICTION
AIRLINE FARE PRICE PREDICTION
 
IRJET - Comparative Study of Flight Delay Prediction using Back Propagati...
IRJET -  	  Comparative Study of Flight Delay Prediction using Back Propagati...IRJET -  	  Comparative Study of Flight Delay Prediction using Back Propagati...
IRJET - Comparative Study of Flight Delay Prediction using Back Propagati...
 
Visualizing and Forecasting Stocks Using Machine Learning
Visualizing and Forecasting Stocks Using Machine LearningVisualizing and Forecasting Stocks Using Machine Learning
Visualizing and Forecasting Stocks Using Machine Learning
 
Stock Price Prediction using Machine Learning Algorithms: ARIMA, LSTM & Linea...
Stock Price Prediction using Machine Learning Algorithms: ARIMA, LSTM & Linea...Stock Price Prediction using Machine Learning Algorithms: ARIMA, LSTM & Linea...
Stock Price Prediction using Machine Learning Algorithms: ARIMA, LSTM & Linea...
 
IRJET- No More Third Umpires
IRJET-  	  No More Third UmpiresIRJET-  	  No More Third Umpires
IRJET- No More Third Umpires
 
IRJET- Implementation of Gender Detection with Notice Board using Raspberry Pi
IRJET- Implementation of Gender Detection with Notice Board using Raspberry PiIRJET- Implementation of Gender Detection with Notice Board using Raspberry Pi
IRJET- Implementation of Gender Detection with Notice Board using Raspberry Pi
 
AlgoB – Cryptocurrency price prediction system using LSTM
AlgoB – Cryptocurrency price prediction system using LSTMAlgoB – Cryptocurrency price prediction system using LSTM
AlgoB – Cryptocurrency price prediction system using LSTM
 
Modelling & simulation of human powered flywheel
Modelling & simulation of human powered flywheelModelling & simulation of human powered flywheel
Modelling & simulation of human powered flywheel
 
Modelling & simulation of human powered flywheel motor for field data in ...
Modelling & simulation of human powered flywheel motor for field data in ...Modelling & simulation of human powered flywheel motor for field data in ...
Modelling & simulation of human powered flywheel motor for field data in ...
 
Machine Learning, K-means Algorithm Implementation with R
Machine Learning, K-means Algorithm Implementation with RMachine Learning, K-means Algorithm Implementation with R
Machine Learning, K-means Algorithm Implementation with R
 
CPU HARDWARE CLASSIFICATION AND PERFORMANCE PREDICTION USING NEURAL NETWORKS ...
CPU HARDWARE CLASSIFICATION AND PERFORMANCE PREDICTION USING NEURAL NETWORKS ...CPU HARDWARE CLASSIFICATION AND PERFORMANCE PREDICTION USING NEURAL NETWORKS ...
CPU HARDWARE CLASSIFICATION AND PERFORMANCE PREDICTION USING NEURAL NETWORKS ...
 
CPU HARDWARE CLASSIFICATION AND PERFORMANCE PREDICTION USING NEURAL NETWORKS ...
CPU HARDWARE CLASSIFICATION AND PERFORMANCE PREDICTION USING NEURAL NETWORKS ...CPU HARDWARE CLASSIFICATION AND PERFORMANCE PREDICTION USING NEURAL NETWORKS ...
CPU HARDWARE CLASSIFICATION AND PERFORMANCE PREDICTION USING NEURAL NETWORKS ...
 

More from IRJET Journal

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...IRJET Journal
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTUREIRJET Journal
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...IRJET Journal
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsIRJET Journal
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...IRJET Journal
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...IRJET Journal
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...IRJET Journal
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...IRJET Journal
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASIRJET Journal
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...IRJET Journal
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProIRJET Journal
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...IRJET Journal
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemIRJET Journal
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesIRJET Journal
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web applicationIRJET Journal
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...IRJET Journal
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.IRJET Journal
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...IRJET Journal
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignIRJET Journal
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...IRJET Journal
 

More from IRJET Journal (20)

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil Characteristics
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADAS
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare System
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridges
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web application
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
 

Recently uploaded

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
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escortsranjana rawat
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝soniya singh
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVRajaP95
 
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
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...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
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...ranjana rawat
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations120cr0395
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxupamatechverse
 
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
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).pptssuser5c9d4b1
 
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
 
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
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxupamatechverse
 

Recently uploaded (20)

Roadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and RoutesRoadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and Routes
 
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
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
 
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 
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...
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
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
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.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...
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
 
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
 
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, ...
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptx
 

Comparative Analysis of Machine Learning Models for Cricket Score and Win Prediction: A Case Study of Linear Regression, Random Forest, Neural Network, and Elastic Net

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 © 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 251 Comparative Analysis of Machine Learning Models for Cricket Score and Win Prediction: A Case Study of Linear Regression, Random Forest, Neural Network, and Elastic Net Omar Faruq 1 , Arifa Sultana Mily 2 , Ashraful Islam3, Shahriar Sadman Dihan 4 , Mohammad Asif Khan 5 12345UG-Students, Department of Computer Science Engineering, East West University, A, 2 Jahurul Islam Ave, Dhaka ---------------------------------------------------------------------***--------------------------------------------------------------------- Abstract - Cricket is the 2nd most popular sport in the world behind football. Especially, in Bangladesh the popularity of cricket and the passion that people show for it, can’t be described in words. Cricket is played all around the year. So, we have built a system that predicts a team's final score at any point of the match. The things that are taken into consideration are the teams that are playing, where the match is being played, what’s the current runs and wickets, how many runs have been scored, and how many wickets have fallen in the last 5 overs. We are using 3 different machine algorithms; Linear Regression, Random Forest, Elastic Net, and Neural Network to predict the score. There is also a live win prediction system that will predict which team is going to win at any moment of the match. The Random Forest algorithm is used for the win prediction system. Random Forest has the highest R2 value. It also has the lowest mean squared error and mean absolute error. Key Words: Machine Learning, Linear Regression, Random Forest, Elastic Net, Neural Network, ODI Cricket Winning Prediction, ODI Cricket Score Prediction, Cricket Score Prediction, Cricket Win Prediction 1. INTRODUCTION Cricket is a global phenomenon, loved by millions around the world. In the Sixteenth Century in England, cricket originated. International cricket matches are almost always being played. Fans eagerly wait for big events like the World Cup, and Champions Trophy, all of which are being played by a lot of teams representing their nations. The main formats in international cricket are Test, ODI, and T20. Among these ODI can easily be considered the most popular. There is massive media coverage, and financial incentives surrounding cricket. Before and during the match fans and cricket experts make their predictions. So, there is a big demand for score prediction systems. Modern-day broadcasters want to show the viewers as many detailed statistics as possible. So, score Prediction and win prediction is a big deal for them. Our prediction system will do exactly that. It will do score prediction and win prediction for any international ODI match. The task will be done by multiple efficient machine-learning algorithms. 1.1Objectives 1. To Predict the cricket score of international ODI matches. 2. To Predict the winner of the match. 3. Being more efficient than existing systems. 4. A more complex system that will take a lot of things into consideration when doing prediction. 5. Using different models so that the best-performing model can be found and used for prediction. 1.2 Scope Our project aims to change the perception of cricket fans predicting cricket scores by relying on statistical data rather than some fan-made theories. This scope makes predicting cricket outcomes, such as live score or win predictor easier with more reliability and accuracy. 2. PROPOSED SYSTEM Cricket score and winning prediction It's a system that can predict the live cricket scores and win predictions. In this system, we use 4 types of models. There are two segments in this model. In the initial portion we will predict the live score of a live cricket match considering various parameters and, in the second portion, the model will predict the winner of the match by considering different parameters and efficient algorithms. 3. METHODOLOGY 3.1Algorithms 1. Linear Regression: Linear regression is a type of supervised machine learning algorithm that can calculate a linear relationship between a dependent variable and one or more independent variables. There are two types of linear regression; univariate linear regression and multivariate linear regression. The Volume: 10 Issue: 11 | Nov 2023 www.irjet.net p-ISSN: 2395-0072
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 © 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 252 algorithm tries to find the best possible value of the dependent variable by finding the equation of the best-fit line for a set of paired data The equation provides a straight line that represents the relationship between the dependent and independent variables. Linear regression is used for both classification and regression problems. We used multivariate linear regression. 2. Random Forest: Random forest is a classifier which is a collection of multiple decision trees. Instead of hoping for a single decision tree, Random Forest takes the prediction of each tree and using the bagging method predicts the final result. The more decision trees there are the greater the accuracy. 3. Neural network: A neural network is a multi-layered machine learning process. There are three types of layers in neural networks. The first layer is the input layer. Then there are hidden layers. The accuracy will increase if the number of hidden layers increases. All the calculation is done in the hidden layer. The final layer is the output layer that shows the output. Our neural network only has one hidden layer. 4. Elastic Net: Elastic Net linear regression with regularization concept that uses both Lasso and Ridge Regulation techniques. Regulation is used so that the model doesn’t overfit. Lasso is used to identify the most influential features it can discard some features when training the model. On the other hand, Ridge doesn’t discard any features rather it only improves the overall fitness of the model. The elastic net that we used is a 50-50 mix of the Lasso and Ridge regularization techniques. 3.2 System Description To fit the model, we collected the dataset from GitHub and the dataset provided us ball by ball-by-ball information about the match. We divided the dataset into two segments, training and testing. This model predicts both the winner and the live score. For live score prediction or prediction of winner, we considered parameters are overs bowled, runs scored, number of wickets fallen, runs scored in the previous 5 overs, and wickets fell in the previous 5 overs. We applied more than one classifier algorithm to these parameters and to build up the model we used Google Colaboratory execution. 4. DATASET Many websites have lots of datasets but every dataset is useful for cricket score prediction we collected datasets for cricket score prediction from GitHub. the prediction has 350899 rows and 15 columns. which had 9 types of numerical datasets and 5 types of categorical datasets over which different techniques are applied. In this paper, we use three models for introducing a score that does not entirely support the current run rate, although this paper introduces a model that includes three methods and takes into account the number of wickets, the match's location, and the batting team. The second approach focuses on the result of the game between the second innings, with the batting team being given a target while taking into account the same factors as the first inning. These techniques were used to classify the worst-case linear regression for the first shift and second inning. Figure 1. Dataset 5. RESULT Here are some of our project’s (Live Cricket Score and Winning Prediction) outcomes. Figure 2. Comparison of models Using MSE, MAE & R2 Here we can see four types of models among them Random Forest is the best model in all aspects. It has the lowest MSE value, MAE value, and best R2 value. Mean Squared Error is the average of the squared difference between the data set's original and forecasted values. It computes the residual variance. The mean absolute error is the average of the Volume: 10 Issue: 11 | Nov 2023 www.irjet.net p-ISSN: 2395-0072
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 © 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 253 absolute difference between the actual and expected values in the dataset. It computes the mean of the dataset's residuals. R-squared is a statistical measure that reflects how much of a dependent variable's fluctuation can be explained by an independent variable in a regression model. Figure 3. Score prediction using Linear Regression For Linear Regression, after selecting all the required info if we press the linear regression button the model will show us the predicted final score of the batting team. Figure 4. Score prediction using Random Forest For Random Forest, after selecting all the required info if we press the Random Forest button the model will show us the predicted final score of the batting team. Figure 5. Score prediction using Neural Network For Neural Network, after selecting all the required info if we press the Neural Network button the model will show us the predicted final score of the batting team. Figure 6. Score prediction using Elastic Net For Elastic Net, after selecting all the required info if we press the Elastic Net button the model will show us the predicted final score of the batting team. Volume: 10 Issue: 11 | Nov 2023 www.irjet.net p-ISSN: 2395-0072
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 © 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 254 Figure 7. Winner prediction using Random Forest We can predict the winner for all four phases by selecting all of the required information also we can select if it's 1st inning or 2nd inning. If we press the Predict Winner button the model will display the anticipated winner team name below the final score. Figure 8. Winner prediction using Random Forest 6. Model Analysis Table 1. Model Comparison Graph 1. Model Comparison 7. CONCLUSION This paper shows the statistical models for predicting the participation of every team member in every match. Different types of datasets can conduct the analysis and predict the score of the match. Also, Data Science will be converged including pre-processing of data, Visualization of data, preparation of data, feature selection, and implementation of different machine learning models for the predictions. The main goal of this paper is to use past data to forecast the final score and match winner. To accurately forecast the score of innings and obtain the desired outcome, several machine learning models will be applied to specified data for predicting the winning team. 8. REFERENCES [1] An Ultimate Tutorial to Neural Networks (2023), AI&MachineLearning.https://www.simplilearn.com/tutoria ls/deep-learning-tutorial/neural- network?fbclid=IwAR3uHPZ- ju0e0gXagNBSDkUGUg3DVG66w1s9Za76UBO5xYQGIRX1v g_pKGg#:~:text=A%20neural%20network%20is%20usuall y,more%20than%20one%20hidden%20layer 0 500 1000 1500 2000 MSE MAE R2 Model Comparison Linear Regression Random Forest Neural Network Elastic Net Performance Measure Linear Regression Random Forest Neural Network Elastic Net MSE 1482.09 74.73 499.03 1836.82 MAE 29.13 3.46 16.09 31.78 R2 0.61 0.98 0.87 0.52 Volume: 10 Issue: 11 | Nov 2023 www.irjet.net p-ISSN: 2395-0072
  • 5. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 10 Issue: 11 | Nov 2023 www.irjet.net p-ISSN: 2395-0072 © 2023, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 255 [2] Cricket Score Prediction Using Machine Learning (2023), https://ijirt.org/master/publishedpaper/IJIRT157821_PA PER.pdf [3] Cricket Score Prediction Using Machine Learning (2021), RSCOE, Assistant Professor, Pune, Maharashtra, India. 2,3,4,5RSCOE, Pune, Maharashtra,India,https://turcomat.org/index.php/turkbil mat/article/view/1546/1299 [4] Cricket Score and Winning Prediction (2022), Omkar Mozar, Soham More, Shubham Nagare, Prof. Nileema Pathak, https://www.irjet.net/archives/V9/i4/IRJET- V9I4181.pdf [5] Cricket Score Predictor, Shivam Mitra (2019).https://github.com/codophobia/CricketScorePredi ctor/blob/master/data/odi.csv [6] CRICKET TEAM PREDICTION USING MACHINE LEARNING TECHNIQUES (2021), Nilesh M. Patil, Bevan H. Sequeira, Neil N. Gonsalves, Abhishek A. Singh,https://papers.ssrn.com/sol3/papers.cfm?abstract_i d=3572740 [7] Cricket Team Prediction with Hadoop(2017), Shubham Agarwal, lavish yadav, shikha mehta,India,https://www.researchgate.net/publication/32 1749942_Cricket_Team_Prediction_with_Hadoop_Statistica l_Modeling_Approach