← All Projects

Predicting Graduate Admission Chances

A neural network that flags which applicants are likely to be admitted to UCLA

Overview

We wanted to predict whether a graduate-school applicant is likely to be accepted based on their academic profile.

Methodology

flowchart LR
  A[Raw Data] --> B[Clean & Encode]
  B --> C[EDA]
  C --> D[Train/Test Split]
  D --> E["CNN"]
  E --> F["Tune (Cross-Validation)"]
  F --> G["Evaluate: R2 / RMSE"]

The Data

We used a clean dataset of 500 past applicants, each described by their test scores and academic ratings.

Exploratory Analysis

We charted the data to see how test scores and ratings relate to each other and to admission.

Key Drivers of Admission

A few academic measures stood out as the strongest signals of who gets in.

Modeling & Results

We built and tuned a neural network until it reliably predicted admission about 95% of the time.

Key Takeaways

The model gives a dependable, automated read on which applicants are likely to be admitted.

More Visualizations

Tech Stack

Attribution

This project was completed as part of the MIT Applied Data Science Program (MIT IDSS / Great Learning). The program provided the case-study scaffolding; the analysis, code, and results are my own. Published with permission, for portfolio use only.