"driver/driver.hip.cpp" did not exist on "1410850eccabfb0b41cc3d92925aa29d9c071974"
Commit 2076cde4 authored by Irene Tenison's avatar Irene Tenison Committed by goooxu
Browse files

Update README.md

parent 579f816a
...@@ -7,23 +7,24 @@ ...@@ -7,23 +7,24 @@
[![Pull Requests](https://img.shields.io/github/issues-pr-raw/Microsoft/nni.svg)](https://github.com/Microsoft/nni/pulls?q=is%3Apr+is%3Aopen) [![Pull Requests](https://img.shields.io/github/issues-pr-raw/Microsoft/nni.svg)](https://github.com/Microsoft/nni/pulls?q=is%3Apr+is%3Aopen)
[![Version](https://img.shields.io/github/release/Microsoft/nni.svg)](https://github.com/Microsoft/nni/releases) [![Version](https://img.shields.io/github/release/Microsoft/nni.svg)](https://github.com/Microsoft/nni/releases)
NNI (Neural Network Intelligence) is a toolkit to help users run automated machine learning experiments. NNI (Neural Network Intelligence) is a toolkit to help users run automated machine learning (AutoML) 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). The tool dispatches and runs trial jobs generated by tuning algorithms to search the best neural architecture and/or hyper-parameters in different environments like local machine, remote servers and cloud.
<p align="center"> <p align="center">
<img src="./docs/img/nni_arch_overview.png" alt="drawing" width="800"/> <img src="./docs/img/nni_arch_overview.png" alt="drawing" width="800"/>
</p> </p>
## **Who should consider using NNI** ## **Who should consider using NNI**
* You want to try different AutoML algorithms for your training code (model) at local * Those who want to try different AutoML algorithms in their training code (model) at their local machine.
* You want to run AutoML trial jobs in different environments to speed up search (e.g. remote servers and cloud) * Those who want to run AutoML trial jobs in different environments to speed up search (e.g. remote servers and cloud).
* As a researcher and data scientist, you want to implement your own AutoML algorithms and compare with other algorithms * Researchers and data scientists who want to implement their own AutoML algorithms and compare it with other algorithms.
* As a ML platform owner, you want to support AutoML in your platform * ML Platform owners who want to support AutoML in their platform.
## **Install & Verify** ## **Install & Verify**
**Install through source code** **Install through source code**
* We only support Linux in current stage, Ubuntu 16.04 or higher are tested and supported. Simply run the following `pip install` in an environment that has `python >= 3.5`, `git` and `wget`. * We only support Linux (Ubuntu 16.04 or higher) in our current stage.
* Run the following `pip install` in an environment that has `python >= 3.5`, `git` and `wget`.
```bash ```bash
git clone -b v0.3 https://github.com/Microsoft/nni.git git clone -b v0.3 https://github.com/Microsoft/nni.git
cd nni cd nni
...@@ -31,18 +32,18 @@ The tool dispatches and runs trial jobs that generated by tuning algorithms to s ...@@ -31,18 +32,18 @@ The tool dispatches and runs trial jobs that generated by tuning algorithms to s
``` ```
**Verify install** **Verify install**
* The following example is an experiment built on TensorFlow, make sure you have `TensorFlow installed` before running it. * The following example is an experiment built on TensorFlow. Make sure you have `TensorFlow installed` before running it.
* And download the examples via clone the source code * Download the examples via clone the source code.
```bash ```bash
cd ~ cd ~
git clone -b v0.3 https://github.com/Microsoft/nni.git git clone -b v0.3 https://github.com/Microsoft/nni.git
``` ```
* Then, run the mnist example * Run the mnist example.
```bash ```bash
nnictl create --config ~/nni/examples/trials/mnist/config.yml nnictl create --config ~/nni/examples/trials/mnist/config.yml
``` ```
* In the command terminal, waiting for the message `Info: Start experiment success!` which indicates your experiment had been successfully started. You are able to explore the experiment using the `Web UI url`. * Wait for the message `Info: Start experiment success!` in the command line. This message indicates that your experiment has been successfully started. You can explore the experiment using the `Web UI url`.
```diff ```diff
Info: Checking experiment... Info: Checking experiment...
... ...
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment