Comment on [question] Which ML library should I learn in Python?
Asudox@lemmy.world 1 year agoSo I should learn sklearn first before pytorch to understand the basics?
Comment on [question] Which ML library should I learn in Python?
Asudox@lemmy.world 1 year agoSo I should learn sklearn first before pytorch to understand the basics?
AlmightySnoo@lemmy.world 1 year ago
Linear and logistic regression are much easier (and less error prone) to implement from scratch than neural network training with backpropagation.
That way you can still follow the progression I suggested: implement those regressions by hand using numpy -> compare against (and appreciate) sklearn -> implement SVMs by hand using cvxpy -> appreciate sklearn again.
Asudox@lemmy.world 1 year ago
Aight thanks.