Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gkar90/grad-admissions-modeling
Predicted a student's chances of getting into Graduate School based off inputs such as GRE, TOEFL, etc...
https://github.com/gkar90/grad-admissions-modeling
data-science keras-neural-networks modeling python3 tensorflow tensorflow-models
Last synced: 13 days ago
JSON representation
Predicted a student's chances of getting into Graduate School based off inputs such as GRE, TOEFL, etc...
- Host: GitHub
- URL: https://github.com/gkar90/grad-admissions-modeling
- Owner: gkar90
- Created: 2021-03-22T02:47:35.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-03-30T01:26:05.000Z (almost 4 years ago)
- Last Synced: 2024-11-03T06:42:31.271Z (2 months ago)
- Topics: data-science, keras-neural-networks, modeling, python3, tensorflow, tensorflow-models
- Language: Jupyter Notebook
- Homepage:
- Size: 122 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Modeling Grad Admissions Data
## Introduction
With so much emphasis placed on masters degrees these days, it was interesting to me to see if we could come up with a model that could predict your chances of getting into a graduate school by simply inputting your application values.
In this project, we look at this dataset from Kaggle that provides the parameters considered important during Masters Programs admission applications (such as GRE score, undergrad GPA, TOEFL scores...), and we attempt to take those inputs and create a neural network to predict the chances of that applicant being accepted for the Masters Program.
## Dataset
Graduate Admissions
URL: https://www.kaggle.com/mohansacharya/graduate-admissions?select=Admission_Predict_Ver1.1.csv
## Model
We use a Sequential model with 1 hidden layer, and we use Mean Squared Error for our loss.
## Summary
Our MSE and MAE were relatively low, telling us our predicted model was not too far off the actual predicted chances of admission.It's important to note that the model only had ~500 parameters and very few datapoints. In order to produce a model with better accuracy, we should increase the number of parameters in our neural model while also increasing our initial data points.