rjagerman / glint

Glint: High performance scala parameter server

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Glint

Build Status

Glint is a high performance Scala parameter server built using Akka. The aim is to make it easy to develop performant distributed machine learning algorithms using the parameter server architecture. One of the major goals is compatibility with Spark.

Compile

To use the current version you should compile the system manually, publish it to a local repository and include it in your project through sbt. Clone this repository and run:

sbt "+ compile" "+ assembly" "+ publish-local"

The + indicates that it should compile for all scala versions defined in the build.sbt file. The command will compile, assemble and publish the library jar file to the local ivy2 repository, which means you can then use it in your project's build.sbt (on the same machine) as follows:

libraryDependencies += "ch.ethz.inf.da" %% "glint" % "0.1-SNAPSHOT"

Documentation

Refer to the documentation for instructions and examples on how to use the software.

Citation

If you find this project useful in your research, please cite the following paper in your publication(s):

Rolf Jagerman, Carsten Eickhoff and Maarten de Rijke. "Computing Web-scale Topic Models using an Asynchronous Parameter Server." (2017)

@inproceedings{jagerman2017computing,
  title={Computing Web-scale Topic Models using an Asynchronous Parameter Server},
  author={Jagerman, Rolf and Eickhoff, Carsten and de Rijke, Maarten},
  booktitle={Proceedings of the 40th International ACM SIGIR Conference on Research and Development in Information Retrieval},
  year={2017},
  organization={ACM}
}

About

Glint: High performance scala parameter server

License:MIT License


Languages

Language:Scala 98.3%Language:Shell 1.7%