This project is a Python implementation of a logistic regression model to predict a student's probability of admission to a university based on their scores from two exams. It demonstrates the fundamental components of a machine learning classification model, built from scratch using NumPy.
The model learns a decision boundary from historical data to classify new applicants as either "Admitted" or "Not Admitted."
- Clone this repository to your local machine.
- Navigate into the
university-admissions-modeldirectory. - Create and activate a Python virtual environment:
python3 -m venv .venv source .venv/bin/activate