├── .gitignore ├── CBRSdata.db ├── LICENSE ├── README.md ├── app.py ├── assets ├── Career _Isometric.png ├── Career _Outline.png ├── Team.png ├── career.png ├── demo │ ├── f2.png │ ├── f3.png │ ├── f4.png │ ├── front1.png │ └── vid.mp4 ├── undraw_Success_factors.png └── undraw_online_resume.png ├── careerPredictionModel.ipynb ├── data └── mldata.csv ├── db.py ├── pythonFunctions ├── GUI.py ├── predict.py ├── sample data │ └── Sample_data.xlsx └── training.py ├── requirements.txt └── weights.pkl /.gitignore: -------------------------------------------------------------------------------- 1 | .ipynb_checkpoints/ 2 | *.vscode 3 | /CBRS_KNN 4 | /Procfile 5 | *.sh 6 | /__pycache__ -------------------------------------------------------------------------------- /CBRSdata.db: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrugved06/Career-Prediction-System/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrugved06/Career-Prediction-System/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrugved06/Career-Prediction-System/HEAD/app.py -------------------------------------------------------------------------------- /assets/Career _Isometric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrugved06/Career-Prediction-System/HEAD/assets/Career _Isometric.png -------------------------------------------------------------------------------- /assets/Career _Outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrugved06/Career-Prediction-System/HEAD/assets/Career _Outline.png -------------------------------------------------------------------------------- /assets/Team.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrugved06/Career-Prediction-System/HEAD/assets/Team.png -------------------------------------------------------------------------------- /assets/career.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrugved06/Career-Prediction-System/HEAD/assets/career.png -------------------------------------------------------------------------------- /assets/demo/f2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrugved06/Career-Prediction-System/HEAD/assets/demo/f2.png -------------------------------------------------------------------------------- /assets/demo/f3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrugved06/Career-Prediction-System/HEAD/assets/demo/f3.png -------------------------------------------------------------------------------- /assets/demo/f4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrugved06/Career-Prediction-System/HEAD/assets/demo/f4.png -------------------------------------------------------------------------------- /assets/demo/front1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrugved06/Career-Prediction-System/HEAD/assets/demo/front1.png -------------------------------------------------------------------------------- /assets/demo/vid.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrugved06/Career-Prediction-System/HEAD/assets/demo/vid.mp4 -------------------------------------------------------------------------------- /assets/undraw_Success_factors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrugved06/Career-Prediction-System/HEAD/assets/undraw_Success_factors.png -------------------------------------------------------------------------------- /assets/undraw_online_resume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrugved06/Career-Prediction-System/HEAD/assets/undraw_online_resume.png -------------------------------------------------------------------------------- /careerPredictionModel.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrugved06/Career-Prediction-System/HEAD/careerPredictionModel.ipynb -------------------------------------------------------------------------------- /data/mldata.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrugved06/Career-Prediction-System/HEAD/data/mldata.csv -------------------------------------------------------------------------------- /db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrugved06/Career-Prediction-System/HEAD/db.py -------------------------------------------------------------------------------- /pythonFunctions/GUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrugved06/Career-Prediction-System/HEAD/pythonFunctions/GUI.py -------------------------------------------------------------------------------- /pythonFunctions/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrugved06/Career-Prediction-System/HEAD/pythonFunctions/predict.py -------------------------------------------------------------------------------- /pythonFunctions/sample data/Sample_data.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrugved06/Career-Prediction-System/HEAD/pythonFunctions/sample data/Sample_data.xlsx -------------------------------------------------------------------------------- /pythonFunctions/training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrugved06/Career-Prediction-System/HEAD/pythonFunctions/training.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrugved06/Career-Prediction-System/HEAD/requirements.txt -------------------------------------------------------------------------------- /weights.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrugved06/Career-Prediction-System/HEAD/weights.pkl --------------------------------------------------------------------------------