Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add common optimization algorithms #3

Open
fschueler opened this issue Jun 15, 2017 · 0 comments
Open

Add common optimization algorithms #3

fschueler opened this issue Jun 15, 2017 · 0 comments

Comments

@fschueler
Copy link
Contributor

To implement various classification and regression algorithms, we need optimization algorithms as solvers. Different solvers come with different benefits, usually based on data-characteristics (sparse solvers, small/large number of features/examples, etc.). I suggest we implement those solvers as library functions that can then be used by other algorithms for model training.

One example would be a L-BFGS algorithm that can be used in a Linear Regression algorithm to solve the optimization problem. Other algorithms could include direct solvers (for small data, possibly could use some library) and (stochastic) gradient descent (sgd) to solve the (weighted) least squares problem.

A description of Spark's implementations can be found here.

I suggest to open separate issues for each algorithm and track/discuss general progress here.

@aalexandrov aalexandrov changed the title [ML][starter] Add common optimization algorithms [ML] Add common optimization algorithms Jun 23, 2017
@aalexandrov aalexandrov changed the title [ML] Add common optimization algorithms Add common optimization algorithms Jun 23, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants