Student Intervention System

The goal of this project is to predict whether a student is going to be successful in their academics or not. Given a student, we would like to assign the categories pass(1) and not pass(0) to that student, so that teachers and other people could administer early interventions.

To achieve this, a supervised learning model was used to learn how a student’s performance indicators lead to whether a student will graduate or otherwise. The model can do this because we already have existing data on students who have and have not graduated, so the model can learn the performance indicators of those students. Based on the student’s performance indicators, the model would output a weight for each performance indicator.

View the source code here

Data

The dataset used in this project is included as student-data.csv. This dataset has the following attributes:

Methodology

View the source code here