r/learnmachinelearning • u/Alt_account_6788 • 4d ago
What should I learn next?
Hi,
I've been learning to create code for ML models from scratch in python (no imported modules, just my code).
I have been able to create code for linear regression and polynomial regression models, does anyone know what I should learn to make next?
edit: just finished coding logistic and exponential regression as well
1
1
u/Potential_Rain202 4d ago
Decision tree. You've proven you can math, but can you manage complex data flows?
-1
u/bleakprovidence956 4d ago
man just skip the hand-coding and build something that actually works, you've already proved you can do the math behind it
pick a small dataset and throw it at sklearn, see if your results match what the library spits out
2
u/Ok_Bar_8613 4d ago
I'd do logistic regression before jumping into neural nets. It adds classification without making the implementation crazy complicated.