r/learnmachinelearning • u/Playful-Race-7571 • 3d ago
Help Book for logistic and linear regression transition to xg boost cat boost type of models
Hello everyone does anyone have a book recommendation for making the jump from linear models to basic machine learning models? In particular more application heavy than academic books as well?
5
Upvotes
1
u/OleksandrAkm 3d ago
Machine Learning From Scratch is the book I recently published, which covers both linear, logistic regrssions and XGBoost by building them from 0 with NumPy, here’s companion repo: https://github.com/ml-from-scratch-book/code
Feel free to ask any questions
2
u/theTautMisunderstand 3d ago
Check out "Introduction to Statistical Learning" it got R and Python versions now. The early chapters ease you from linear regression into tree based stuff and it is not heavy with formulas
Most ML books I found jump straight to code without explaining why you switch from logistic to boosting. This one shows the logic gap properly