Skip to content

Gaussian Process Classification and Regression on Apache Spark

License

Notifications You must be signed in to change notification settings

akopich/spark-gp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

spark-gp

Gaussian Process Regression and Classification on Apache Spark.

The thing works in linear time.

Setting up a learner looks like

val gp = new GaussianProcessRegression()
  .setDatasetSizeForExpert(100)
  .setActiveSetSize(1000)
  .setSigma2(1e-4)
  .setKernel(() => 1 * new ARDRBFKernel(5) + 1.const * new EyeKernel)

Check out the Regression and Classification examples.

About

Gaussian Process Classification and Regression on Apache Spark

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages