Skip to content

dieterichlawson/admm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Apache Spark ADMM implementation

This project is an implementation of consensus form ADMM on Apache Spark.

Here is an example of solving a dense lasso problem:

val A = new BlockMatrix(sc.textFile(A_file), blockSize)
val f = L2NormSquared.fromMatrix(A, rho)
val g = new L1Norm(lambda)
var admm = new ConsensusADMMSolver(f, g, abstol, reltol, sc)
admm.solve(rho, maxiters)

For more information, see the paper

About

ADMM on Apache Spark

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published