SlideShare a Scribd company logo
1 of 13
ICMLBDA 2023
3rd International Conference on
Machine Learning and Big Data Analytics
29-30th May 2023
Predicting Student Academic Performance using
Machine Learning: A Comparison of Classification
Algorithms
Paper ID - 216
AUTHORS
B. Naresh1 ,B V Prasanthi2 , Lakshmi Veenadhari.CH3 , Durga
Satish.Matta4 , M Durga Rao5, Mrs. I.Kali Pradeep6
1 M.Tech (CSE) Student, Vishnu Institute of Technology, Bhimavaram.
2 Assitant Professor(CSE), Vishnu Institute of Technology, Bhimavaram.
3 Assitant Professor(CSE), Vishnu Institute of Technology, Bhimavaram.
4 Assitant Professor(CSE), Vishnu Institute of Technology, Bhimavaram.
5 Assitant Professor(CSE), Vishnu Institute of Technology, Bhimavaram.
6 Assitant Professor(CSE), Vishnu Institute of Technology, Bhimavaram.
2
ICMLBDA
2023 Predicting Student Academic Performance using Machine Learning:A Comparison of Classification Algorithms
Abstract:
Paper ID: 216 @ ICMLBDA 2023 29/30-05-2023
 In today's education system, predicting and classifying student academic performance has become
increasingly important.
 By understanding a student's academic performance, educators and administrators can identify
potential issues early on and provide targeted interventions to support their success.
 Machine learning algorithms are effective tools that can be used to forecast and categorize student
academic performance based on a variety of factors, such as attendance, past grades, and
demographic data.
 In this context, various classification algorithms can be used to build models that can predict student
performance and identify the elements that support academic success.
3
ICMLBDA
2023 Predicting Student Academic Performance using Machine Learning:A Comparison of Classification Algorithms
Introduction:
29/30-05-2023
 In this study the comparison of the several models includes Decision Tree, Random forest, Logistic
Regression, Adaboost, K-Nearest Neighbor, Support Vector Classifier and Stochastic Gradient
Decent algorithms used for predicting the student academic performance.
 To make an informed choice, it is also crucial to test and assess the performance of numerous
algorithms using different metrics like accuracy, precision, recall, and F1-score.
 In this study I used the model accuracy to know the best model for predicting student academic
performance.
Paper ID: 216 @ ICMLBDA 2023
4
ICMLBDA
2023 Predicting Student Academic Performance using Machine Learning:A Comparison of Classification Algorithms
Literature Review:
29/30-05-2023
Published
Year
Paper Title Author names Algorithms Used Observations
2023 Performance Analysis of Machine
Learning Algorithms in Prediction of
Student Academic Performance
Michael Donkor Adane ,
Joshua Kwabla Deku and Emmanuel
Kwaku Asare
C4.5 Decision tree (CDT),
Multilayer Perceptron
(MLP), Naive Bayes (NB),
and Random Forest (RF).
The Naive Bayes algorithm out
performed the MLP and CDT on
a number of ratios.
2022 Toward Predicting Student’s Academic
Performance Using Artificial Neural
Networks (ANNs)
Yahia Baashar , Gamal Alkawsi ,
Abdulsalam Mustafa , Ammar
Ahmed Alkahtani ,Yazan A.
Alsariera, Abdulrazzaq Qasem Ali ,
Wahidah Hashim and Sieh Kiong
Tiong.
Artificial Neural Networks
(ANNs)
ANN is always combined with
data analysis and data mining
approaches, enabling studies to
evaluate how well their findings
are used to assess academic
accomplishment.
2022 A survey on Prediction and Analysis of
Students Academic Performance
Using Machine Learning Technique
Ashmina Khan, Prof. K. N. Hande. Artificial Neural Networks,
Support Vector Machine, K-
Nearest Neighbour, and
Random Forests
Examined the studies that
predict the attainment of
student outcomes, irrespective
of their form
2021 Classification and prediction of
student performance data using
various machine learning algorithms
Harikumar Pallathadka , Alex
Wenda , Edwin Ramirez-Asís ,
Maximiliano Asís-López , Judith
Flores-Albornoz , Khongdet
Phasinam
Nave Bayes, ID3, C4.5, and
SVM
A comparison of the best
outcomes from Nave Bayes,
ID3, C4.5, and SVM prediction
algorithms.
Paper ID: 216 @ ICMLBDA 2023
5
ICMLBDA
2023 Title: Predicting Student Academic Performance using Machine Learning:A Comparison of Classification Algorithms
Proposed Methodology:
29/30-05-2023
The proposed system predicts and categorizes the student's academic performance using the
machine learning algorithms Decision tree classification, Random Forest, Support Vector Machine (SVM),
Logistic Regression (LR), Adaboost, Stochastic Gradient Decent, and K-Nearest Neighbor.
Paper ID: 216 @ ICMLBDA 2023
6
ICMLBDA
2023 Title: Predicting Student Academic Performance using Machine Learning:A Comparison of Classification Algorithms
Implementation:
29/30-05-2023
The specified machine learning classifiers are used to test the model in this step. There have been a
few models developed and their accuracy has been verified. The classifiers listed below are utilized in this
project.
1. Decision Tree(DT)
2. Random Forest(RF)
3. Support Vector Machine (SVM)
4. Logistic Regression (LR)
5. Adaboost (ADA)
6. Stochastic Gradient Decent (SGD)
7. K-Nearest Neighbor(KNN)
Paper ID: 216 @ ICMLBDA 2023
7
ICMLBDA
2023 Title: Predicting Student Academic Performance using Machine Learning:A Comparison of Classification Algorithms
Dataset Description
29/30-05-2023
In our study two dataset were extracted from The UCI Machine Learning Repository those describes the
performance in two different subjects, Portuguese language (por) with 649 records and mathematics (mat)
with 395 records. Each of the dataset includes 33 characters/features of the students as columns. So, totally
for this study I used 1044 records for 33 characters of two datasets.
school sex Age
address famsize Pstatus
medu Fedu Mjob
fjob reason guardian
traveltime studytime failures
schoolsup famsup paid
activities nursery higher
internet romantic famrel
freetime goout Dalc
walc health absences
G1 G2 G3
Paper ID: 216 @ ICMLBDA 2023
8
ICMLBDA
2023 Title: Predicting Student Academic Performance using Machine Learning:A Comparison of Classification Algorithms
Results and Discussion
Paper ID: 178 @ ICMLBDA 2023 29/30-05-2023
Correlation Heatmap
1. There is a strong positive correlation between study
time and grades, which suggests that students who
spend more time studying tend to have higher
grades.
2. There is a negative correlation between absenteeism
and grades, which indicates that students who miss
more classes tend to have lower grades.
3. There is a weak positive correlation between the final
grade and the level of education of the mother for
both classes, indicating that students whose mothers
have higher levels of education may have slightly
higher grades.
4. There is a weak negative correlation between the
final grade and the number of past class failures,
suggesting that students who have failed classes in
the past may have slightly lower grades.
Paper ID: 216 @ ICMLBDA 2023
9
ICMLBDA
2023 Title: Predicting Student Academic Performance using Machine Learning:A Comparison of Classification Algorithms
Results and Discussion
29/30-05-2023
ACCURACY SCORE OF CLASSIFICATION ALGORITHMS
Model Name DT RF KNN LR SVC AB SGD
Model Accuracy 0.904 0.981 0.887 0.899 0.888 0.874 0.825
Cross
Validation Score
0.847 0.837 0.813 0.9 0.866 0.823 0.746
80:20
Paper ID: 216 @ ICMLBDA 2023
10
ICMLBDA
2023 Title: Predicting Student Academic Performance using Machine Learning:A Comparison of Classification Algorithms
Results and Discussion
29/30-05-2023
ACCURACY SCORE OF CLASSIFICATION ALGORITHMS 70:30
Model Name DT RF KNN LR SVC AB SGD
Model Accuracy 0.895 0.982 0.856 0.882 0.874 0.860 0.850
Cross Validation
Score
0.873 0.873 0.834 0.898 0.882 0.857 0.829
Paper ID: 216 @ ICMLBDA 2023
11
ICMLBDA
2023 Title: Predicting Student Academic Performance using Machine Learning:A Comparison of Classification Algorithms
Conclusion:
29/30-05-2023
Our study's findings suggest that logistic regression performs better than the other classification
algorithms at predicting students' academic performance. This is a significant finding that can have practical
implications for educators and administrators who are looking to identify students who may be at risk of poor
performance.
There are many directions for future research in the field of student performance prediction, and the
results of our study provide a strong foundation upon which to build. By continuing to refine and improve
machine learning methods for predicting student academic performance, we can help educators and
administrators identify students who may be at risk of poor performance and provide them with the support
they need to succeed.
Paper ID: 216 @ ICMLBDA 2023
12
ICMLBDA
2023 Title: Predicting Student Academic Performance using Machine Learning:A Comparison of Classification Algorithms
References:
29/30-05-2023
1. Adane, Michael Donkor and Deku, Joshua Kwabla and Asare, Emmanuel Kwaku, Performance Analysis of Machine
Learning Algorithms in Prediction of Student Academic Performance (March 18, 2023). Journal of Advances in
Mathematics and Computer Science, Volume 38, Issue 5, Page 74-86, 2023; DOI: 10.9734/jamcs/2023/v38i51762,
Available at SSRN: https://ssrn.com/abstract=4392884
2. Baashar, Y.; Alkawsi, G.; Mustafa, A.; Alkahtani, A.A.; Alsariera, Y.A.; Ali, A.Q.; Hashim, W.; Tiong, S.K. Toward Predicting
Student’s Academic Performance Using Artificial Neural Networks (ANNs). Appl. Sci. 2022, 12, 1289.
https://doi.org/10.3390/app12031289
3. A survey on Prediction and Analysis of Students Academic Performance Using Machine Learning Technique Ashmina
Khan, Prof. K. N. Hande. Volume 10 Issue VI June 2022.
https://doi.org/10.22214/ijraset.2022.43192
4. Classification and prediction of student performance data using various machine learning algorithms Harikumar
Pallathadka , Alex Wenda , Edwin Ramirez-Asís, Maximiliano Asís-López ,Judith Flores-Albornoz , Khongdet Phasinam.
July 2021
https://www.researchgate.net/publication/353611098
Paper ID: 216 @ ICMLBDA 2023
13
Title: Predicting Student Academic Performance using Machine Learning:A Comparison of Classification Algorithms
Thank You
naresh.bvrice@gmail.com
ICMLBDA
2023
29/30-05-2023
Paper ID: 216 @ ICMLBDA 2023

More Related Content

Similar to Paper ID 216@ ICMLBDA 2023.pptx

IRJET - A Study on Student Career Prediction
IRJET - A Study on Student Career PredictionIRJET - A Study on Student Career Prediction
IRJET - A Study on Student Career PredictionIRJET Journal
 
IRJET- Predictive Analytics for Placement of Student- A Comparative Study
IRJET- Predictive Analytics for Placement of Student- A Comparative StudyIRJET- Predictive Analytics for Placement of Student- A Comparative Study
IRJET- Predictive Analytics for Placement of Student- A Comparative StudyIRJET Journal
 
Student’s Career Interest Prediction using Machine Learning
Student’s Career Interest Prediction using Machine LearningStudent’s Career Interest Prediction using Machine Learning
Student’s Career Interest Prediction using Machine LearningIRJET Journal
 
ANALYSIS OF STUDENT ACADEMIC PERFORMANCE USING MACHINE LEARNING ALGORITHMS:– ...
ANALYSIS OF STUDENT ACADEMIC PERFORMANCE USING MACHINE LEARNING ALGORITHMS:– ...ANALYSIS OF STUDENT ACADEMIC PERFORMANCE USING MACHINE LEARNING ALGORITHMS:– ...
ANALYSIS OF STUDENT ACADEMIC PERFORMANCE USING MACHINE LEARNING ALGORITHMS:– ...indexPub
 
Student Performance Evaluation in Education Sector Using Prediction and Clust...
Student Performance Evaluation in Education Sector Using Prediction and Clust...Student Performance Evaluation in Education Sector Using Prediction and Clust...
Student Performance Evaluation in Education Sector Using Prediction and Clust...IJSRD
 
Correlation based feature selection (cfs) technique to predict student perfro...
Correlation based feature selection (cfs) technique to predict student perfro...Correlation based feature selection (cfs) technique to predict student perfro...
Correlation based feature selection (cfs) technique to predict student perfro...IJCNCJournal
 
CORRELATION BASED FEATURE SELECTION (CFS) TECHNIQUE TO PREDICT STUDENT PERFRO...
CORRELATION BASED FEATURE SELECTION (CFS) TECHNIQUE TO PREDICT STUDENT PERFRO...CORRELATION BASED FEATURE SELECTION (CFS) TECHNIQUE TO PREDICT STUDENT PERFRO...
CORRELATION BASED FEATURE SELECTION (CFS) TECHNIQUE TO PREDICT STUDENT PERFRO...IJCNCJournal
 
CORRELATION BASED FEATURE SELECTION (CFS) TECHNIQUE TO PREDICT STUDENT PERFRO...
CORRELATION BASED FEATURE SELECTION (CFS) TECHNIQUE TO PREDICT STUDENT PERFRO...CORRELATION BASED FEATURE SELECTION (CFS) TECHNIQUE TO PREDICT STUDENT PERFRO...
CORRELATION BASED FEATURE SELECTION (CFS) TECHNIQUE TO PREDICT STUDENT PERFRO...IJCNCJournal
 
IRJET-Student Performance Prediction for Education Loan System
IRJET-Student Performance Prediction for Education Loan SystemIRJET-Student Performance Prediction for Education Loan System
IRJET-Student Performance Prediction for Education Loan SystemIRJET Journal
 
Educational data mining using jmp
Educational data mining using jmpEducational data mining using jmp
Educational data mining using jmpijcsit
 
A COMPREHENSIVE STUDY FOR IDENTIFICATION OF FAST AND SLOW LEARNERS USING MACH...
A COMPREHENSIVE STUDY FOR IDENTIFICATION OF FAST AND SLOW LEARNERS USING MACH...A COMPREHENSIVE STUDY FOR IDENTIFICATION OF FAST AND SLOW LEARNERS USING MACH...
A COMPREHENSIVE STUDY FOR IDENTIFICATION OF FAST AND SLOW LEARNERS USING MACH...IRJET Journal
 
Journal publications
Journal publicationsJournal publications
Journal publicationsSarita30844
 
scopus journal.pdf
scopus journal.pdfscopus journal.pdf
scopus journal.pdfnareshkotra
 
Recuriter Recommendation System
Recuriter Recommendation SystemRecuriter Recommendation System
Recuriter Recommendation SystemIRJET Journal
 
Hybrid-Training & Placement Management with Prediction System
Hybrid-Training & Placement Management with Prediction SystemHybrid-Training & Placement Management with Prediction System
Hybrid-Training & Placement Management with Prediction SystemIRJET Journal
 
IRJET- Performance for Student Higher Education using Decision Tree to Predic...
IRJET- Performance for Student Higher Education using Decision Tree to Predic...IRJET- Performance for Student Higher Education using Decision Tree to Predic...
IRJET- Performance for Student Higher Education using Decision Tree to Predic...IRJET Journal
 

Similar to Paper ID 216@ ICMLBDA 2023.pptx (20)

IRJET - A Study on Student Career Prediction
IRJET - A Study on Student Career PredictionIRJET - A Study on Student Career Prediction
IRJET - A Study on Student Career Prediction
 
journal for research
journal for researchjournal for research
journal for research
 
IRJET- Predictive Analytics for Placement of Student- A Comparative Study
IRJET- Predictive Analytics for Placement of Student- A Comparative StudyIRJET- Predictive Analytics for Placement of Student- A Comparative Study
IRJET- Predictive Analytics for Placement of Student- A Comparative Study
 
Fd33935939
Fd33935939Fd33935939
Fd33935939
 
Fd33935939
Fd33935939Fd33935939
Fd33935939
 
Student’s Career Interest Prediction using Machine Learning
Student’s Career Interest Prediction using Machine LearningStudent’s Career Interest Prediction using Machine Learning
Student’s Career Interest Prediction using Machine Learning
 
ANALYSIS OF STUDENT ACADEMIC PERFORMANCE USING MACHINE LEARNING ALGORITHMS:– ...
ANALYSIS OF STUDENT ACADEMIC PERFORMANCE USING MACHINE LEARNING ALGORITHMS:– ...ANALYSIS OF STUDENT ACADEMIC PERFORMANCE USING MACHINE LEARNING ALGORITHMS:– ...
ANALYSIS OF STUDENT ACADEMIC PERFORMANCE USING MACHINE LEARNING ALGORITHMS:– ...
 
Student Performance Evaluation in Education Sector Using Prediction and Clust...
Student Performance Evaluation in Education Sector Using Prediction and Clust...Student Performance Evaluation in Education Sector Using Prediction and Clust...
Student Performance Evaluation in Education Sector Using Prediction and Clust...
 
Correlation based feature selection (cfs) technique to predict student perfro...
Correlation based feature selection (cfs) technique to predict student perfro...Correlation based feature selection (cfs) technique to predict student perfro...
Correlation based feature selection (cfs) technique to predict student perfro...
 
CORRELATION BASED FEATURE SELECTION (CFS) TECHNIQUE TO PREDICT STUDENT PERFRO...
CORRELATION BASED FEATURE SELECTION (CFS) TECHNIQUE TO PREDICT STUDENT PERFRO...CORRELATION BASED FEATURE SELECTION (CFS) TECHNIQUE TO PREDICT STUDENT PERFRO...
CORRELATION BASED FEATURE SELECTION (CFS) TECHNIQUE TO PREDICT STUDENT PERFRO...
 
CORRELATION BASED FEATURE SELECTION (CFS) TECHNIQUE TO PREDICT STUDENT PERFRO...
CORRELATION BASED FEATURE SELECTION (CFS) TECHNIQUE TO PREDICT STUDENT PERFRO...CORRELATION BASED FEATURE SELECTION (CFS) TECHNIQUE TO PREDICT STUDENT PERFRO...
CORRELATION BASED FEATURE SELECTION (CFS) TECHNIQUE TO PREDICT STUDENT PERFRO...
 
IRJET-Student Performance Prediction for Education Loan System
IRJET-Student Performance Prediction for Education Loan SystemIRJET-Student Performance Prediction for Education Loan System
IRJET-Student Performance Prediction for Education Loan System
 
Educational data mining using jmp
Educational data mining using jmpEducational data mining using jmp
Educational data mining using jmp
 
A COMPREHENSIVE STUDY FOR IDENTIFICATION OF FAST AND SLOW LEARNERS USING MACH...
A COMPREHENSIVE STUDY FOR IDENTIFICATION OF FAST AND SLOW LEARNERS USING MACH...A COMPREHENSIVE STUDY FOR IDENTIFICATION OF FAST AND SLOW LEARNERS USING MACH...
A COMPREHENSIVE STUDY FOR IDENTIFICATION OF FAST AND SLOW LEARNERS USING MACH...
 
Journal publications
Journal publicationsJournal publications
Journal publications
 
IJMERT.pdf
IJMERT.pdfIJMERT.pdf
IJMERT.pdf
 
scopus journal.pdf
scopus journal.pdfscopus journal.pdf
scopus journal.pdf
 
Recuriter Recommendation System
Recuriter Recommendation SystemRecuriter Recommendation System
Recuriter Recommendation System
 
Hybrid-Training & Placement Management with Prediction System
Hybrid-Training & Placement Management with Prediction SystemHybrid-Training & Placement Management with Prediction System
Hybrid-Training & Placement Management with Prediction System
 
IRJET- Performance for Student Higher Education using Decision Tree to Predic...
IRJET- Performance for Student Higher Education using Decision Tree to Predic...IRJET- Performance for Student Higher Education using Decision Tree to Predic...
IRJET- Performance for Student Higher Education using Decision Tree to Predic...
 

Recently uploaded

University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdfKamal Acharya
 
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...SUHANI PANDEY
 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Bookingdharasingh5698
 
Intro To Electric Vehicles PDF Notes.pdf
Intro To Electric Vehicles PDF Notes.pdfIntro To Electric Vehicles PDF Notes.pdf
Intro To Electric Vehicles PDF Notes.pdfrs7054576148
 
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
 
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordCCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordAsst.prof M.Gokilavani
 
Double rodded leveling 1 pdf activity 01
Double rodded leveling 1 pdf activity 01Double rodded leveling 1 pdf activity 01
Double rodded leveling 1 pdf activity 01KreezheaRecto
 
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
 
AKTU Computer Networks notes --- Unit 3.pdf
AKTU Computer Networks notes ---  Unit 3.pdfAKTU Computer Networks notes ---  Unit 3.pdf
AKTU Computer Networks notes --- Unit 3.pdfankushspencer015
 
Block diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.pptBlock diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.pptNANDHAKUMARA10
 
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...tanu pandey
 
Unit 2- Effective stress & Permeability.pdf
Unit 2- Effective stress & Permeability.pdfUnit 2- Effective stress & Permeability.pdf
Unit 2- Effective stress & Permeability.pdfRagavanV2
 
notes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptnotes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptMsecMca
 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfJiananWang21
 
Unleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapUnleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapRishantSharmaFr
 
Online banking management system project.pdf
Online banking management system project.pdfOnline banking management system project.pdf
Online banking management system project.pdfKamal Acharya
 
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoorTop Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoordharasingh5698
 

Recently uploaded (20)

University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdf
 
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
 
Intro To Electric Vehicles PDF Notes.pdf
Intro To Electric Vehicles PDF Notes.pdfIntro To Electric Vehicles PDF Notes.pdf
Intro To Electric Vehicles PDF Notes.pdf
 
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...
 
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordCCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
 
Double rodded leveling 1 pdf activity 01
Double rodded leveling 1 pdf activity 01Double rodded leveling 1 pdf activity 01
Double rodded leveling 1 pdf activity 01
 
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
 
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
 
AKTU Computer Networks notes --- Unit 3.pdf
AKTU Computer Networks notes ---  Unit 3.pdfAKTU Computer Networks notes ---  Unit 3.pdf
AKTU Computer Networks notes --- Unit 3.pdf
 
Block diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.pptBlock diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.ppt
 
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
 
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
 
Unit 2- Effective stress & Permeability.pdf
Unit 2- Effective stress & Permeability.pdfUnit 2- Effective stress & Permeability.pdf
Unit 2- Effective stress & Permeability.pdf
 
Call Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
 
notes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptnotes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.ppt
 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdf
 
Unleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapUnleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leap
 
Online banking management system project.pdf
Online banking management system project.pdfOnline banking management system project.pdf
Online banking management system project.pdf
 
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoorTop Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
 

Paper ID 216@ ICMLBDA 2023.pptx

  • 1. ICMLBDA 2023 3rd International Conference on Machine Learning and Big Data Analytics 29-30th May 2023 Predicting Student Academic Performance using Machine Learning: A Comparison of Classification Algorithms Paper ID - 216 AUTHORS B. Naresh1 ,B V Prasanthi2 , Lakshmi Veenadhari.CH3 , Durga Satish.Matta4 , M Durga Rao5, Mrs. I.Kali Pradeep6 1 M.Tech (CSE) Student, Vishnu Institute of Technology, Bhimavaram. 2 Assitant Professor(CSE), Vishnu Institute of Technology, Bhimavaram. 3 Assitant Professor(CSE), Vishnu Institute of Technology, Bhimavaram. 4 Assitant Professor(CSE), Vishnu Institute of Technology, Bhimavaram. 5 Assitant Professor(CSE), Vishnu Institute of Technology, Bhimavaram. 6 Assitant Professor(CSE), Vishnu Institute of Technology, Bhimavaram.
  • 2. 2 ICMLBDA 2023 Predicting Student Academic Performance using Machine Learning:A Comparison of Classification Algorithms Abstract: Paper ID: 216 @ ICMLBDA 2023 29/30-05-2023  In today's education system, predicting and classifying student academic performance has become increasingly important.  By understanding a student's academic performance, educators and administrators can identify potential issues early on and provide targeted interventions to support their success.  Machine learning algorithms are effective tools that can be used to forecast and categorize student academic performance based on a variety of factors, such as attendance, past grades, and demographic data.  In this context, various classification algorithms can be used to build models that can predict student performance and identify the elements that support academic success.
  • 3. 3 ICMLBDA 2023 Predicting Student Academic Performance using Machine Learning:A Comparison of Classification Algorithms Introduction: 29/30-05-2023  In this study the comparison of the several models includes Decision Tree, Random forest, Logistic Regression, Adaboost, K-Nearest Neighbor, Support Vector Classifier and Stochastic Gradient Decent algorithms used for predicting the student academic performance.  To make an informed choice, it is also crucial to test and assess the performance of numerous algorithms using different metrics like accuracy, precision, recall, and F1-score.  In this study I used the model accuracy to know the best model for predicting student academic performance. Paper ID: 216 @ ICMLBDA 2023
  • 4. 4 ICMLBDA 2023 Predicting Student Academic Performance using Machine Learning:A Comparison of Classification Algorithms Literature Review: 29/30-05-2023 Published Year Paper Title Author names Algorithms Used Observations 2023 Performance Analysis of Machine Learning Algorithms in Prediction of Student Academic Performance Michael Donkor Adane , Joshua Kwabla Deku and Emmanuel Kwaku Asare C4.5 Decision tree (CDT), Multilayer Perceptron (MLP), Naive Bayes (NB), and Random Forest (RF). The Naive Bayes algorithm out performed the MLP and CDT on a number of ratios. 2022 Toward Predicting Student’s Academic Performance Using Artificial Neural Networks (ANNs) Yahia Baashar , Gamal Alkawsi , Abdulsalam Mustafa , Ammar Ahmed Alkahtani ,Yazan A. Alsariera, Abdulrazzaq Qasem Ali , Wahidah Hashim and Sieh Kiong Tiong. Artificial Neural Networks (ANNs) ANN is always combined with data analysis and data mining approaches, enabling studies to evaluate how well their findings are used to assess academic accomplishment. 2022 A survey on Prediction and Analysis of Students Academic Performance Using Machine Learning Technique Ashmina Khan, Prof. K. N. Hande. Artificial Neural Networks, Support Vector Machine, K- Nearest Neighbour, and Random Forests Examined the studies that predict the attainment of student outcomes, irrespective of their form 2021 Classification and prediction of student performance data using various machine learning algorithms Harikumar Pallathadka , Alex Wenda , Edwin Ramirez-Asís , Maximiliano Asís-López , Judith Flores-Albornoz , Khongdet Phasinam Nave Bayes, ID3, C4.5, and SVM A comparison of the best outcomes from Nave Bayes, ID3, C4.5, and SVM prediction algorithms. Paper ID: 216 @ ICMLBDA 2023
  • 5. 5 ICMLBDA 2023 Title: Predicting Student Academic Performance using Machine Learning:A Comparison of Classification Algorithms Proposed Methodology: 29/30-05-2023 The proposed system predicts and categorizes the student's academic performance using the machine learning algorithms Decision tree classification, Random Forest, Support Vector Machine (SVM), Logistic Regression (LR), Adaboost, Stochastic Gradient Decent, and K-Nearest Neighbor. Paper ID: 216 @ ICMLBDA 2023
  • 6. 6 ICMLBDA 2023 Title: Predicting Student Academic Performance using Machine Learning:A Comparison of Classification Algorithms Implementation: 29/30-05-2023 The specified machine learning classifiers are used to test the model in this step. There have been a few models developed and their accuracy has been verified. The classifiers listed below are utilized in this project. 1. Decision Tree(DT) 2. Random Forest(RF) 3. Support Vector Machine (SVM) 4. Logistic Regression (LR) 5. Adaboost (ADA) 6. Stochastic Gradient Decent (SGD) 7. K-Nearest Neighbor(KNN) Paper ID: 216 @ ICMLBDA 2023
  • 7. 7 ICMLBDA 2023 Title: Predicting Student Academic Performance using Machine Learning:A Comparison of Classification Algorithms Dataset Description 29/30-05-2023 In our study two dataset were extracted from The UCI Machine Learning Repository those describes the performance in two different subjects, Portuguese language (por) with 649 records and mathematics (mat) with 395 records. Each of the dataset includes 33 characters/features of the students as columns. So, totally for this study I used 1044 records for 33 characters of two datasets. school sex Age address famsize Pstatus medu Fedu Mjob fjob reason guardian traveltime studytime failures schoolsup famsup paid activities nursery higher internet romantic famrel freetime goout Dalc walc health absences G1 G2 G3 Paper ID: 216 @ ICMLBDA 2023
  • 8. 8 ICMLBDA 2023 Title: Predicting Student Academic Performance using Machine Learning:A Comparison of Classification Algorithms Results and Discussion Paper ID: 178 @ ICMLBDA 2023 29/30-05-2023 Correlation Heatmap 1. There is a strong positive correlation between study time and grades, which suggests that students who spend more time studying tend to have higher grades. 2. There is a negative correlation between absenteeism and grades, which indicates that students who miss more classes tend to have lower grades. 3. There is a weak positive correlation between the final grade and the level of education of the mother for both classes, indicating that students whose mothers have higher levels of education may have slightly higher grades. 4. There is a weak negative correlation between the final grade and the number of past class failures, suggesting that students who have failed classes in the past may have slightly lower grades. Paper ID: 216 @ ICMLBDA 2023
  • 9. 9 ICMLBDA 2023 Title: Predicting Student Academic Performance using Machine Learning:A Comparison of Classification Algorithms Results and Discussion 29/30-05-2023 ACCURACY SCORE OF CLASSIFICATION ALGORITHMS Model Name DT RF KNN LR SVC AB SGD Model Accuracy 0.904 0.981 0.887 0.899 0.888 0.874 0.825 Cross Validation Score 0.847 0.837 0.813 0.9 0.866 0.823 0.746 80:20 Paper ID: 216 @ ICMLBDA 2023
  • 10. 10 ICMLBDA 2023 Title: Predicting Student Academic Performance using Machine Learning:A Comparison of Classification Algorithms Results and Discussion 29/30-05-2023 ACCURACY SCORE OF CLASSIFICATION ALGORITHMS 70:30 Model Name DT RF KNN LR SVC AB SGD Model Accuracy 0.895 0.982 0.856 0.882 0.874 0.860 0.850 Cross Validation Score 0.873 0.873 0.834 0.898 0.882 0.857 0.829 Paper ID: 216 @ ICMLBDA 2023
  • 11. 11 ICMLBDA 2023 Title: Predicting Student Academic Performance using Machine Learning:A Comparison of Classification Algorithms Conclusion: 29/30-05-2023 Our study's findings suggest that logistic regression performs better than the other classification algorithms at predicting students' academic performance. This is a significant finding that can have practical implications for educators and administrators who are looking to identify students who may be at risk of poor performance. There are many directions for future research in the field of student performance prediction, and the results of our study provide a strong foundation upon which to build. By continuing to refine and improve machine learning methods for predicting student academic performance, we can help educators and administrators identify students who may be at risk of poor performance and provide them with the support they need to succeed. Paper ID: 216 @ ICMLBDA 2023
  • 12. 12 ICMLBDA 2023 Title: Predicting Student Academic Performance using Machine Learning:A Comparison of Classification Algorithms References: 29/30-05-2023 1. Adane, Michael Donkor and Deku, Joshua Kwabla and Asare, Emmanuel Kwaku, Performance Analysis of Machine Learning Algorithms in Prediction of Student Academic Performance (March 18, 2023). Journal of Advances in Mathematics and Computer Science, Volume 38, Issue 5, Page 74-86, 2023; DOI: 10.9734/jamcs/2023/v38i51762, Available at SSRN: https://ssrn.com/abstract=4392884 2. Baashar, Y.; Alkawsi, G.; Mustafa, A.; Alkahtani, A.A.; Alsariera, Y.A.; Ali, A.Q.; Hashim, W.; Tiong, S.K. Toward Predicting Student’s Academic Performance Using Artificial Neural Networks (ANNs). Appl. Sci. 2022, 12, 1289. https://doi.org/10.3390/app12031289 3. A survey on Prediction and Analysis of Students Academic Performance Using Machine Learning Technique Ashmina Khan, Prof. K. N. Hande. Volume 10 Issue VI June 2022. https://doi.org/10.22214/ijraset.2022.43192 4. Classification and prediction of student performance data using various machine learning algorithms Harikumar Pallathadka , Alex Wenda , Edwin Ramirez-Asís, Maximiliano Asís-López ,Judith Flores-Albornoz , Khongdet Phasinam. July 2021 https://www.researchgate.net/publication/353611098 Paper ID: 216 @ ICMLBDA 2023
  • 13. 13 Title: Predicting Student Academic Performance using Machine Learning:A Comparison of Classification Algorithms Thank You naresh.bvrice@gmail.com ICMLBDA 2023 29/30-05-2023 Paper ID: 216 @ ICMLBDA 2023