A machine learning project for predicting student performance based on their habits.
student-performance-project/
├── backend/
│ ├── app.py
│ ├── model_training.py
│ ├── models/
│ │ ├── classifier.pkl
│ │ ├── regressor.pkl
│ ├── static/
│ │ └── style.css
│ └── templates/
│ └── index.html
├── data/
│ └── student_habits_performance.csv
├── README.md
└── requirements.txt
- Install dependencies:
pip install -r requirements.txt- Train the models:
python backend/model_training.py- Run the application:
python backend/app.py