top of page

Recommender System: Resources
thank you to unDraw for the above illustration This is where I post my resources for recommender system. It may be messy at this moment....
Jul 20, 20231 min read


Day 16: Overfitting
The problem of overfitting Overfitting happens when the model or prediction fits the training set too well, but doesn't generalize well...
Jul 19, 20231 min read
Day 15: Linear and Logistic regression with Scikit-Learn
Linear regression with Scikit-Learn import libraries: from sklearn.linear_model import SGDRegressor from sklearn.preprocessing import...
Jul 14, 20231 min read

Day 14: Gradient Descent for Logistic Regression
We have previously looked at gradient descent for linear regression. Today, we will look at gradient descent for logistic regression....
Jul 13, 20232 min read

Day 13: Cost Function for logistic regression
The cost function gives you a way to measure how well a specific set of parameters fits the training data, thereby gives you a way to...
Jul 12, 20232 min read
bottom of page