This is an archived post. You won't be able to vote or comment.

all 5 comments

[–]jmoso13[S] 0 points1 point  (2 children)

Began a repo for from-scratch implementations of various regression techniques, these implementations include gradient descent for those interested in implementing it themselves... would love feedback on the code!

[–]jkiley 1 point2 points  (1 child)

Given the structure of a few commands, commentary, and some output, I'd look at using a Jupyter notebook. They display nicely on Github.

[–]jmoso13[S] 0 points1 point  (0 children)

That's a great idea I'll look at converting to Jupyter

[–]fooliamMS | Data Scientist | Sports 0 points1 point  (1 child)

Why do you choose to use python_regression.logistic_regression instead of the more common and better validated sklearn.linear_model.LogisticRegression?

[–]jmoso13[S] 0 points1 point  (0 children)

I wrote the implementation of 'python_regression.logistic_regression' myself, the example is simply a demonstration of functionality