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

Solver scalability #202

Open
debasish83 opened this issue Dec 12, 2017 · 2 comments
Open

Solver scalability #202

debasish83 opened this issue Dec 12, 2017 · 2 comments

Comments

@debasish83
Copy link

@sryza I am using cross sectional time series for a problem (similar to ARX models) where I got into problems of size > 1024 and looks like the gram solver is not scaling (assuming OLS uses that)...Are you ok if I move the spark-ts solvers to use BFGS (for smooth opt) / OWLQN (for trend filter) ?

@debasish83
Copy link
Author

debasish83 commented Dec 12, 2017

val regression = new OLSMultipleLinearRegression()
regression.setNoIntercept(true)
regression.newSampleData(Y, X)
val params = regression.estimateRegressionParameters()
This solver does not scale beyond 1024 kind features...Do you use nonlinear CG somewhere ? I have a variant in Breeze QuadraticMinimizer that scales to 4096 and beyond that we can the nonlinear CG / BFGS...Let me know

@sryza
Copy link
Owner

sryza commented Dec 14, 2017

@debasish83 that's fine with me.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants