Parameter server framework for distributed machine learning
Перейти к файлу
Qiwei Ye 7da0274a42 Merge pull request #133 from dnouri/feature/py3k
Py3K compatiblity
2016-11-16 16:16:22 +08:00
Applications remove hard tabs 2016-11-06 14:19:38 +08:00
Test Fix typos in comments, log messages and other strings. Fix doxygen descriptions 2016-10-27 16:37:00 +03:00
binding Py3K compatiblity 2016-11-15 23:40:33 -05:00
deploy/docker add Dockerfile 2016-08-05 04:20:24 -07:00
include/multiverso adding git attributes 2016-11-06 14:41:46 +08:00
src Modify configuration to unify the case 2016-11-13 13:03:48 +08:00
.gitattributes adding git attributes 2016-11-06 14:41:46 +08:00
.gitignore add include dlfcn guard 2016-05-03 18:55:29 +09:00
.gitmodules adding DC-ASGD support 2016-10-27 19:23:14 +08:00
.travis.yml diable test in travis since travis server issue 2016-08-26 16:29:44 +08:00
CMakeLists.txt adding DC-ASGD support 2016-10-27 19:23:28 +08:00
LICENSE.md Adding gitattributes 2016-11-06 14:13:42 +08:00
Multiverso.sln Modify configuration to unify the case 2016-11-13 13:03:48 +08:00
README.md Update README.md 2016-11-02 10:14:02 +08:00
cmake_uninstall.cmake.in support make uninstall target 2016-06-14 12:39:34 +08:00

README.md

Multiverso

Build Status

Multiverso is a parameter server based framework for training machine learning models on big data with numbers of machines. It is currently a standard C++ library and provides a series of friendly programming interfaces, and it is extended to support calling from python and Lua programs. With such easy-to-use APIs, machine learning researchers and practitioners do not need to worry about the system routine issues such as distributed model storage and operation, inter-process and inter-thread communication, multi-threading management, and so on. Instead, they are able to focus on the core machine learning logics: data, model, and training.

For more details, please view our website http://www.dmtk.io.

Build

Linux (Tested on Ubuntu 14.04)

sudo apt-get install libopenmpi-dev openmpi-bin build-essential cmake git
git clone https://github.com/Microsoft/multiverso.git && cd multiverso
mkdir build && cd build
cmake .. && make && sudo make install

Windows

Open the Multiverso.sln with Visual Studio 2013 and build.

Current distributed systems based on multiverso:

Microsoft Open Source Code of Conduct

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.