An open source AutoML toolkit for automate machine learning lifecycle, including feature engineering, neural architecture search, model compression and hyper-parameter tuning.
Перейти к файлу
liuzhe-lz b52f7756fb
HPO doc (#4579)
2022-03-10 09:36:20 +08:00
.github Create cffconvert.yml (#4534) 2022-02-11 17:31:14 +08:00
dependencies HPO doc (#4579) 2022-03-10 09:36:20 +08:00
docs HPO doc (#4579) 2022-03-10 09:36:20 +08:00
examples HPO doc (#4579) 2022-03-10 09:36:20 +08:00
nni HPO doc (#4579) 2022-03-10 09:36:20 +08:00
pipelines update ut & extend fast test windows timeout (#4558) 2022-02-17 16:15:19 +08:00
test Lightning implementation for retiarii oneshot nas (#4479) 2022-02-18 14:36:43 +08:00
ts Bump url-parse from 1.5.3 to 1.5.7 in /ts/jupyter_extension (#4565) 2022-02-21 11:12:00 +08:00
.gitattributes Bootstrapping tutorials in documentation (#4522) 2022-02-10 11:10:30 +08:00
.gitignore [Retiarii] cross-graph optimization: device placement and input deduplication (#3202) 2021-07-30 19:11:02 +08:00
.readthedocs.yaml Bootstrapping tutorials in documentation (#4522) 2022-02-10 11:10:30 +08:00
CITATION.cff Fix author field in citation cff (#4356) 2021-12-03 20:03:44 +08:00
CONTRIBUTING.md
CONTRIBUTING_zh_CN.md
Dockerfile update interim patch (#4383) 2021-12-14 11:28:56 +08:00
LICENSE
README.md Update README.md 2022-03-02 11:57:24 +08:00
README_zh_CN.md Update release note and version number (#4471) 2022-01-19 16:14:23 +08:00
SECURITY.md
SECURITY_zh_CN.md Update Chinese documentation (#3886) 2021-07-09 15:30:29 +08:00
crowdin.yml
pylintrc JupyterLab extension (#3954) 2021-07-23 11:32:12 +08:00
setup.py Bump Python version to 3.7~3.9 (#4475) 2022-01-21 18:39:38 +08:00
setup_ts.py Enable development build for webui (#4496) 2022-01-25 14:02:10 +08:00

README.md


Automates feature engineering, neural architecture search, hyperparameter tuning, and model compression for deep learning.

MIT licensed Build Status Issues Bugs Pull Requests Version Documentation Status


Find the latest features, API, examples and tutorials in our official documentation: NNI Doc

What's NEW!  

NNI capabilities in a glance

Neural Network Intelligence (NNI) is a lightweight and powerful toolkit to help users automate Feature Engineering, Neural Architecture Search, Hyperparameter Tuning and Model Compression.

NNI provides CommandLine Tool as well as an user friendly WebUI to manage training experiments. The tool manages automated machine learning (AutoML) experiments, dispatches and runs experiments' trial jobs generated by tuning algorithms to search the best neural architecture and/or hyper-parameters in different training environments like Local Machine, Remote Servers, OpenPAI, Kubeflow, FrameworkController on K8S (AKS etc.), DLWorkspace (aka. DLTS), AML (Azure Machine Learning), AdaptDL (aka. ADL) , other cloud options and even Hybrid mode.

With the extensible API, you can customize your own AutoML algorithms and training services. To make it easy for new users, NNI also provides a set of build-in state-of-the-art AutoML algorithms and out of box support for popular training platforms.

Within the following table, we summarized the current NNI capabilities, we are gradually adding new capabilities and we'd love to have your contribution.

Frameworks & Libraries Algorithms Training Services
Built-in
  • Supported Frameworks
    • PyTorch
    • Keras
    • TensorFlow
    • MXNet
    • Caffe2
    • More...
  • Supported Libraries
    • Scikit-learn
    • XGBoost
    • LightGBM
    • More...
Hyperparameter Tuning Neural Architecture Search (Retiarii) Model Compression Feature Engineering (Beta) Early Stop Algorithms
References

Who should consider using NNI

  • Those who want to try different AutoML algorithms in their training code/model.
  • Those who want to run AutoML trial jobs in different environments to speed up search.
  • Researchers and data scientists who want to easily implement and experiment new AutoML algorithms, may it be: hyperparameter tuning algorithm, neural architect search algorithm or model compression algorithm.
  • ML Platform owners who want to support AutoML in their platform.

Installation

Install

NNI supports and is tested on Ubuntu >= 18.04, Windows 10 >= 21H2, and macOS >= 11. Simply run the following pip install in an environment that has python 64-bit >= 3.7.

Linux or macOS

python3 -m pip install --upgrade nni

Windows

python -m pip install --upgrade nni

If you want to try latest code, please install NNI from source code.

For detail system requirements of NNI, please refer to here for Linux & macOS, and here for Windows.

Installation FAQ * If there is any privilege issue, add `--user` to install NNI in the user directory. * Currently NNI on Windows supports local, remote and pai mode. Anaconda or Miniconda is highly recommended to install [NNI on Windows](https://nni.readthedocs.io/en/stable/Tutorial/InstallationWin.html). * If there is any error like `Segmentation fault`, please refer to [FAQ](https://nni.readthedocs.io/en/stable/Tutorial/FAQ.html). For FAQ on Windows, please refer to [NNI on Windows](https://nni.readthedocs.io/en/stable/Tutorial/InstallationWin.html#faq).

Run your first example

set up and run the example
  • Download the examples via clone the source code.

    git clone -b v2.6 https://github.com/Microsoft/nni.git
    
  • Run the MNIST example.

    Linux or macOS

    nnictl create --config nni/examples/trials/mnist-pytorch/config.yml
    

    Windows

    nnictl create --config nni\examples\trials\mnist-pytorch\config_windows.yml
    
  • Wait for the message INFO: Successfully started experiment! in the command line. This message indicates that your experiment has been successfully started. You can explore the experiment using the Web UI url.

INFO: Starting restful server...
INFO: Successfully started Restful server!
INFO: Setting local config...
INFO: Successfully set local config!
INFO: Starting experiment...
INFO: Successfully started experiment!
-----------------------------------------------------------------------
The experiment id is egchD4qy
The Web UI urls are: http://223.255.255.1:8080   http://127.0.0.1:8080
-----------------------------------------------------------------------

You can use these commands to get more information about the experiment
-----------------------------------------------------------------------
         commands                       description
1. nnictl experiment show        show the information of experiments
2. nnictl trial ls               list all of trial jobs
3. nnictl top                    monitor the status of running experiments
4. nnictl log stderr             show stderr log content
5. nnictl log stdout             show stdout log content
6. nnictl stop                   stop an experiment
7. nnictl trial kill             kill a trial job by id
8. nnictl --help                 get help information about nnictl
-----------------------------------------------------------------------
  • Open the Web UI url in your browser, you can view detailed information of the experiment and all the submitted trial jobs as shown below. Here are more Web UI pages.
webui

Releases and Contributing

NNI has a monthly release cycle (major releases). Please let us know if you encounter a bug by filling an issue.

We appreciate all contributions. If you are planning to contribute any bug-fixes, please do so without further discussions.

If you plan to contribute new features, new tuners, new training services, etc. please first open an issue or reuse an exisiting issue, and discuss the feature with us. We will discuss with you on the issue timely or set up conference calls if needed.

To learn more about making a contribution to NNI, please refer to our How-to contribution page.

We appreciate all contributions and thank all the contributors!

Feedback

Join IM discussion groups:

Gitter WeChat
image OR image

Test status

Essentials

Type Status
Fast test Build Status
Full linux Build Status
Full windows Build Status

Training services

Type Status
Remote - linux to linux Build Status
Remote - linux to windows Build Status
Remote - windows to linux Build Status
OpenPAI Build Status
Frameworkcontroller Build Status
Kubeflow Build Status
Hybrid Build Status
AzureML Build Status

Targeting at openness and advancing state-of-art technology, Microsoft Research (MSR) had also released few other open source projects.

  • OpenPAI : an open source platform that provides complete AI model training and resource management capabilities, it is easy to extend and supports on-premise, cloud and hybrid environments in various scale.
  • FrameworkController : an open source general-purpose Kubernetes Pod Controller that orchestrate all kinds of applications on Kubernetes by a single controller.
  • MMdnn : A comprehensive, cross-framework solution to convert, visualize and diagnose deep neural network models. The "MM" in MMdnn stands for model management and "dnn" is an acronym for deep neural network.
  • SPTAG : Space Partition Tree And Graph (SPTAG) is an open source library for large scale vector approximate nearest neighbor search scenario.
  • nn-Meter : An accurate inference latency predictor for DNN models on diverse edge devices.

We encourage researchers and students leverage these projects to accelerate the AI development and research.

License

The entire codebase is under MIT license