README.md 3.32 KB
Newer Older
1
2
3
# Neural Network Intelligence

[![Build Status](https://travis-ci.org/Microsoft/nni.svg?branch=master)](https://travis-ci.org/Microsoft/nni)
Microsoft Open Source's avatar
Microsoft Open Source committed
4

QuanluZhang's avatar
QuanluZhang committed
5
6
NNI (Neural Network Intelligence) is a toolkit to help users run automated machine learning experiments. 
The tool dispatches and runs trial jobs that generated by tuning algorithms to search the best neural architecture and/or hyper-parameters in different environments (e.g. local machine, remote servers and cloud).
7

QuanluZhang's avatar
QuanluZhang committed
8
9
10
11
<p align="center">
<img src="./docs/nni_overview.png" alt="drawing" width="800"/>
</p>

12
13
## **Who should consider using NNI**
* You want to try different AutoML algorithms for your training code (model) at local
Scarlett Li's avatar
Scarlett Li committed
14
* You want to run AutoML trial jobs in different environments to speed up search (e.g. remote servers and cloud)
15
16
17
* As a researcher and data scientist, you want to implement your own AutoML algorithms and compare with other algorithms
* As a ML platform owner, you want to support AutoML in your platform

Scarlett Li's avatar
Scarlett Li committed
18
# Get Started with NNI
19
20

## **Installation**
Scarlett Li's avatar
Scarlett Li committed
21
22
23
24
25
pip Installation Prerequisites
* linux (ubuntu 16.04 or newer version has been well tested)
* python >= 3.5
* git, wget

26
```
fishyds's avatar
fishyds committed
27
python3 -m pip install -v --user git+https://github.com/Microsoft/nni.git@v0.2
28
29
30
source ~/.bashrc
```

Scarlett Li's avatar
Scarlett Li committed
31
32
33
34
35
36
## **Quick start: run your first experiment at local**
It only requires 3 steps to start an experiment on NNI:
![](./docs/3_steps.jpg)


NNI provides a set of examples in the package to get you familiar with the above process. In the following example [/examples/trials/mnist], we had already set up the configuration and updated the training codes for you. You can directly run the following command to start an experiment. 
37

Scarlett Li's avatar
Scarlett Li committed
38
**NOTE**: The following example is an experiment built on TensorFlow, make sure you have **TensorFlow installed** before running the following command.
39

Scarlett Li's avatar
Scarlett Li committed
40
Try it out:
41
```bash
Scarlett Li's avatar
Scarlett Li committed
42
    nnictl create --config ~/nni/examples/trials/mnist/config.yml
43
```
Scarlett Li's avatar
Scarlett Li committed
44

goooxu's avatar
goooxu committed
45
In the command output, find out the **WebUI url** and open it in your browser. You can analyze your experiment through WebUI, or browse trials' tensorboard. 
Scarlett Li's avatar
Scarlett Li committed
46

goooxu's avatar
goooxu committed
47
To learn more about how this example was constructed and how to analyze the experiment results in NNI WebUI, please refer to [How to write a trial run on NNI (MNIST as an example)?](docs/WriteYourTrial.md)
Microsoft Open Source's avatar
Microsoft Open Source committed
48

Scarlett Li's avatar
Scarlett Li committed
49
50
## **Please refer to [Get Started Tutorial](docs/GetStarted.md) for more detailed information.**
## More tutorials
Scarlett Li's avatar
Scarlett Li committed
51

gongwuji's avatar
gongwuji committed
52
53
54
55
* [Tutorial of NNI python annotation.](tools/nni_annotation/README.md)
* [Tuners supported by NNI.](src/sdk/pynni/nni/README.md)
* [How to enable early stop (i.e. assessor) in an experiment?](docs/EnableAssessor.md)
* [How to run an experiment on multiple machines?](docs/RemoteMachineMode.md)
fishyds's avatar
fishyds committed
56
* [How to run an experiment on OpenPAI?](docs/PAIMode.md)
gongwuji's avatar
gongwuji committed
57
58
59
60
* [How to write a customized tuner?](docs/CustomizedTuner.md)
* [How to write a customized assessor?](examples/assessors/README.md)
* [How to resume an experiment?](docs/NNICTLDOC.md)
* [Tutorial of the command tool *nnictl*.](docs/NNICTLDOC.md)
xuehui's avatar
xuehui committed
61
* [How to debug in NNI](docs/HowToDebug.md)
Microsoft Open Source's avatar
Microsoft Open Source committed
62

Scarlett Li's avatar
Scarlett Li committed
63
# Contributing
Vipul Gupta's avatar
Vipul Gupta committed
64
This project welcomes contributions and suggestions, please refer to our [contributing](./docs/CONTRIBUTING.md) document for the same.
Scarlett Li's avatar
Scarlett Li committed
65
66

We use [GitHub issues](https://github.com/Microsoft/nni/issues) for tracking requests and bugs.
Microsoft Open Source's avatar
Microsoft Open Source committed
67

Vipul Gupta's avatar
Vipul Gupta committed
68
69
70
# License 
The entire codebase is under [MIT license](https://github.com/Microsoft/nni/blob/master/LICENSE)