Giter VIP home page Giter VIP logo

mlproject's Introduction

MLProject - Toolkit to build Machine Learning projects

Installation

(optional) Install custom dependencies: swift-loader

(1) Install dependencies in requirements.txt

(2) Install this package in development mode: pip3 install -e . from the root of this package

(3) Initialize this tool by running:

mlproject init \
    --authors ${AUTHOR1_NAME,AUTHOR1_EMAIL1,AUTHOR1_EMAIL2;AUTHOR2_name,AUTHOR2_EMAIL..} \
    --company ${YOUR_DEFAULT_COMPANY} \
    --license ${YOUR_DEFAULT_LICENSE}

where:

  • --authors: specifies the default authors for future projects created by the command mlproject new-project if each author is separated by colon (;), name and email is separated by comma for example --authors "First1 Last1,[email protected],[email protected];First2 Last2,[email protected],[email protected]"
  • --company: specifies the name of the default company of the authors
  • --license: specifies default license for future projects created by mlproject new-project. available options: proprietary, apache, mit

Usage

Create a new project from template

To create a new project template, we can run:

mlproject new-project \
    --project-name "name of this project" \
    --path "parent directory to create project under" \
    --authors "authors in this project" \
    --company "company that owns this project" \
    --license "license to use, current support proprietary/apache/mit"
    --template "template to use [currently support only generic]"

In addition, mlproject also provides convenient datastructures and classes that can be used to quickly implement new ML ideas.

Create new file inside a project

When inside a project created by mlproject, we could create an empty file by using the following command:

mlproject new-file \
    --filename ${NAME_OF_THE_FILE} \
    --path ${PATH_TO_CREATE_FILE_UNDER} \
    --desc ${SHORT_DESCRIPTION_OF_THIS_FILE}

with --path is defaulted to .

The new file when created will have the same header structure as other files in the project with proper date, author names, emails, licenses, etc.

Modify project's metadata

When we want to modify the metadata of a project such as the list of authors, the license or the company, we could run the following command in the main directory of a project created by ˋmlproject new-projectˋ as follows:

mlproject modify-metadata \
    --project-name "new name for this project" \
    --authors "new author list" \
    --company "new company that owns this project" \
    --license "new license"

The above command will change content of the metadata file and all the headers of all python files. The convention for --authors is similar to the project creation command above

Launch experiments in parallel

If you're using the project template created by mlproject new-project, you'll run a single experiment configuration via the entry.py script.

What if your machine has many GPUs or CPUs and you would like to run many experiment configurations in parallel?

mlproject launch-exp is the command to use:

mlproject launch-exp \
    --entry-script "path to entry script" \
    --config-path "path to configuration file" \
    --device "either cpu or cuda" \
    --gpu-indices "the list of GPUs to use, comma separated. Default to all GPUs if device is cuda" \
    --gpu-per-exp "the number of GPUs to use for one experiment configuration" \
    --log-prefix "the prefix to dump logs from workers" \
    --nb-parallel-exp "number of parallel experiments to run. Only needed when device is cpu"

Create a summary of experiment results

If you're using the project template created by mlproject new-project and you've run a lot of experiments, you could create a table that summarizes

the results by running the following command:

mlproject summarize-exp \
    --entry-script "path to entry script" \
    --config-path "path to configuration file" \
    --metrics "the list of metrics you want to include in the report. Comma separated"

The last switch --metrics is especially helpful if you only want to take a look at a subset of metrics.

Composing a project

Overall,

  • mlproject.data provides abstraction for data processing. Take a look at mlproject.data for description.
  • mlproject.trainer provides trainer class in pytorch. Take a look at mlproject.trainer for description.
  • mlproject.metric provides abstraction for metrics, which are used in mlproject.trainer. Take a look at mlproject.metric for description.
  • mlproject.loss provides abstraction for losses, which are used in mlproject.loss. Take a look at mlproject.loss for description.

It's also a good idea to take a look at the source code to get an idea about the working mechanism of different abstractions. In addition, examples under examples also serve as a good starting point

Authors

Dat Tran ([email protected])

mlproject's People

Contributors

gogoliri avatar minhquoc0712 avatar viebboy avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

mlproject's Issues

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.