This the project of the Data Science where we predict the collegese for the student after their marks by the model. The model is based on the report of the various NIT and IIT colleges and their admission procedure.
First, we analyze the data of the different colleges and their stat for admission in various programs, then the model suggest the student top colleges as per their features to get admission in it.
- Exploratory Data Analysis
- Pre - Processing
- Data Visualization
- Training and Testing Dataset
- Creating Model
- Optimizing the model
- check accuracy
-
import pickle pickle.dump(model, open('FileName', 'wb')) # To generate the pickle file pickle_model = pickle.load(open('FileName, 'rb')) # to load the pickle file
-
git clone LINK
-
conda create -p venv python==3.7 -y
-
git activate venv/
-
- Flask
- numpy
- pandas
- scikit-learn
- matplotlib
- gunicorn
pip install -r requirements.txt
-
git config --global user.name "name" git config --global user.email "email"
-
git add FileName or git add . (For whole files)
-
git status
-
git commit -m "Message"
-
git push origin main