Core ML concepts explained from scratch Manual implementations of algorithms (like Linear Regression, KNN, etc.) Visualizations to support learning Well-documented code and theory
This project predicts whether a student will get placed based on their CGPA and IQ score using a Linear Regression model.
- Input features:
cgpa,iq - Output:
placement(0 = not placed, 1 = placed) - Model: Scikit-learn's
LinearRegression - Serialization: Model saved using
pickle - Visualization: 2D/3D plots using
matplotlib