Git Product home page Git Product logo

easeml's Introduction

Ease.ml - A Scalable Auto-ML System

Logo

Ease.ml is a declarative machine learning service platform. It enables users to upload their datasets and start model selection and tuning jobs. Given the schema of the dataset, ease.ml does an automatic search for applicable models and performs training, prediction and evaluation. All models are stored as Docker images which allows greater portability and reproducibility.

For more details, check out out recent publications:

T Li, J Zhong, J Liu, W Wu, C Zhang. Ease.ml: Towards Multi-tenant Resource Sharing for Machine Learning Workloads. VLDB 2018. [PDF]

Bojan Karlas, Ji Liu, Wentao Wu, Ce Zhang. Ease.ml in Action: Towards Multi-tenant Declarative Learning Services. VLDB (Demo) 2018. [PDF]

The project is being developed by the DS3 Lab at ETH Zurich and is still in its early stages. Stay tuned for more updates.

Build ease.ml from source (Linux)

Prerequisites

  • go and packr2
  • nodejs and npm
  • Mongo DB
  • Docker

Install go

sudo snap install --classic go

Make sure the go binary directory is in PATH (add this to the ~/.profile file):

export GOPATH=$HOME/go
export PATH=$PATH:/usr/local/go/bin:$GOPATH/bin

Install packr2 which we will be using to bundle the web UI files into the go binary:

go get -v -u github.com/gobuffalo/packr/v2/...

Install node and npm

curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -
sudo apt-get install -y nodejs
sudo apt-get install -y npm

Install Mongo DB

See this page.

sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 9DA31620334BD75D9DCB49F368818C72E52529D4

echo "deb [ arch=amd64 ] https://repo.mongodb.org/apt/ubuntu trusty/mongodb-org/4.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-4.0.list

sudo apt-get update

sudo apt-get install -y mongodb-org

If you would like to set up a different database directory

mongod --dbpath <your_new_db_path>

Install Docker

See this page.

sudo apt install apt-transport-https ca-certificates curl software-properties-common

curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -

sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable"

sudo apt update

sudo apt install docker-ce

To enable execution of docker commands without sudo, add the current user to the docker group:

sudo usermod -aG docker ${USER}

su - ${USER}

Ease.ml

Get the source code

go get -v github.com/ds3lab/easeml

Build and Install binary from source

cd $GOPATH/src/github.com/ds3lab/easeml/engine

#Install in GOPATH/bin
make install

# Alternative:

# Install in ALT_PATH
# ALT_PATH should be added to PATH
make install INSTALL_PATH=ALT_PATH

Run ease.ml

easeml start --browser

easeml's People

Contributors

bojan-karlas avatar dependabot[bot] avatar leaguilar avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.