Change Log¶
Release 2.5 - 11/2/2021¶
Model Compression¶
New major version of pruning framework (doc)
Iterative pruning is more automated, users can use less code to implement iterative pruning.
Support exporting intermediate models in the iterative pruning process.
The implementation of the pruning algorithm is closer to the paper.
Users can easily customize their own iterative pruning by using
PruningScheduler
.Optimize the basic pruners underlying generate mask logic, easier to extend new functions.
Optimized the memory usage of the pruners.
MobileNetV2 end-to-end example (notebook)
Improved QAT quantizer (doc)
support dtype and scheme customization
support dp multi-gpu training
support load_calibration_config
Model speed-up now supports directly loading the mask (doc)
Support speed-up depth-wise convolution
Support bn-folding for LSQ quantizer
Support QAT and LSQ resume from PTQ
Added doc for observer quantizer (doc)
Neural Architecture Search¶
NAS benchmark (doc)
Support benchmark table lookup in experiments
New data preparation approach
Improved quick start doc
Experimental CGO execution engine (doc)
Hyper-Parameter Optimization¶
New training platform: Alibaba DSW+DLC (doc)
Support passing ConfigSpace definition directly to BOHB (doc) (thanks to khituras)
Reformatted experiment config doc
Added example config files for Windows (thanks to @politecat314)
FrameworkController now supports reuse mode
Fixed Bugs¶
Experiment cannot start due to platform timestamp format (issue #4077 #4083)
Cannot use
1e-5
in search space (issue #4080)Dependency version conflict caused by ConfigSpace (issue #3909) (thanks to @jexxers)
Hardware-aware SPOS example does not work (issue #4198)
Web UI show wrong remaining time when duration exceeds limit (issue #4015)
cudnn.deterministic is always set in AMC pruner (#4117) thanks to @mstczuo
And…¶
New emoticons!
Release 2.4 - 8/11/2021¶
Major Updates¶
Neural Architecture Search¶
NAS visualization: visualize model graph through Netron (#3878)
Support NAS bench 101/201 on Retiarii framework (#3871 #3920)
Support hypermodule AutoActivation (#3868)
Support PyTorch v1.8/v1.9 (#3937)
Support Hardware-aware NAS with nn-Meter (#3938)
Enable fixed_arch on Retiarii (#3972)
Model Compression¶
Refactor of ModelSpeedup: auto shape/mask inference (#3462)
Added more examples for ModelSpeedup (#3880)
Support global sort for Taylor pruning (#3896)
Support TransformerHeadPruner (#3884)
Support batch normalization folding in QAT quantizer (#3911, thanks the external contributor @chenbohua3)
Support post-training observer quantizer (#3915, thanks the external contributor @chenbohua3)
Support ModelSpeedup for Slim Pruner (#4008)
Support TensorRT 8.0.0 in ModelSpeedup (#3866)
Hyper-parameter Tuning¶
Improve HPO benchmarks (#3925)
Improve type validation of user defined search space (#3975)
Training service & nnictl¶
Support JupyterLab (#3668 #3954)
Support viewing experiment from experiment folder (#3870)
Support kubeflow in training service reuse framework (#3919)
Support viewing trial log on WebUI for an experiment launched in view mode (#3872)
Minor Updates & Bug Fixes¶
Fix the failure of the exit of Retiarii experiment (#3899)
Fix exclude not supported in some config_list cases (#3815)
Fix bug in remote training service on reuse mode (#3941)
Improve IP address detection in modern way (#3860)
Fix bug of the search box on WebUI (#3935)
Fix bug in url_prefix of WebUI (#4051)
Support dict format of intermediate on WebUI (#3895)
Fix bug in openpai training service induced by experiment config v2 (#4027 #4057)
Improved doc (#3861 #3885 #3966 #4004 #3955)
Improved the API export_model in model compression (#3968)
Supported UnSqueeze in ModelSpeedup (#3960)
Thanks other external contributors: @Markus92 (#3936), @thomasschmied (#3963), @twmht (#3842)
Release 2.3 - 6/15/2021¶
Major Updates¶
Neural Architecture Search¶
Retiarii Framework (NNI NAS 2.0) Beta Release with new features:
Support new high-level APIs:
Repeat
andCell
(#3481)Support pure-python execution engine (#3605)
Support policy-based RL strategy (#3650)
Support nested ModuleList (#3652)
Improve documentation (#3785)
Note: there are more exciting features of Retiarii planned in the future releases, please refer to Retiarii Roadmap for more information.
Add new NAS algorithm: Blockwise DNAS FBNet (#3532, thanks the external contributor @alibaba-yiwuyao)
Model Compression¶
Support Auto Compression Framework (#3631)
Support slim pruner in Tensorflow (#3614)
Support LSQ quantizer (#3503, thanks the external contributor @chenbohua3)
Improve APIs for iterative pruners (#3507 #3688)
Training service & Rest¶
Support 3rd-party training service (#3662 #3726)
Support setting prefix URL (#3625 #3674 #3672 #3643)
Improve NNI manager logging (#3624)
Remove outdated TensorBoard code on nnictl (#3613)
Hyper-Parameter Optimization¶
Add new tuner: DNGO (#3479 #3707)
Add benchmark for tuners (#3644 #3720 #3689)
WebUI¶
Improve search parameters on trial detail page (#3651 #3723 #3715)
Make selected trials consistent after auto-refresh in detail table (#3597)
Add trial stdout button on local mode (#3653 #3690)
Examples & Documentation¶
Convert all trial examples’ from config v1 to config v2 (#3721 #3733 #3711 #3600)
Add new jupyter notebook examples (#3599 #3700)
Dev Excellent¶
Upgrade dependencies in Dockerfile (#3713 #3722)
Substitute PyYAML for
ruamel.yaml
(#3702)Add pipelines for AML and hybrid training service and experiment config V2 (#3477 #3648)
Add pipeline badge in README (#3589)
Update issue bug report template (#3501)
Bug Fixes & Minor Updates¶
Fix syntax error on Windows (#3634)
Fix a logging related bug (#3705)
Fix a bug in GPU indices (#3721)
Fix a bug in FrameworkController (#3730)
Fix a bug in
export_data_url format
(#3665)Report version check failure as a warning (#3654)
Fix bugs and lints in nnictl (#3712)
Fix bug of
optimize_mode
on WebUI (#3731)Fix bug of
useActiveGpu
in AML v2 config (#3655)Fix bug of
experiment_working_directory
in Retiarii config (#3607)Fix a bug in mask conflict (#3629, thanks the external contributor @Davidxswang)
Fix a bug in model speedup shape inference (#3588, thanks the external contributor @Davidxswang)
Fix a bug in multithread on Windows (#3604, thanks the external contributor @Ivanfangsc)
Delete redundant code in training service (#3526, thanks the external contributor @maxsuren)
Fix typo in DoReFa compression doc (#3693, thanks the external contributor @Erfandarzi)
Update docstring in model compression (#3647, thanks the external contributor @ichejun)
Fix a bug when using Kubernetes container (#3719, thanks the external contributor @rmfan)
Release 2.2 - 4/26/2021¶
Major updates¶
Neural Architecture Search¶
Improve NAS 2.0 (Retiarii) Framework (Alpha Release)
Support local debug mode (#3476)
Support nesting
ValueChoice
inLayerChoice
(#3508)Support dict/list type in
ValueChoice
(#3508)Improve the format of export architectures (#3464)
Refactor of NAS examples (#3513)
Refer to here for Retiarii Roadmap
Model Compression¶
Support speedup for mixed precision quantization model (Experimental) (#3488 #3512)
Support model export for quantization algorithm (#3458 #3473)
Support model export in model compression for TensorFlow (#3487)
Improve documentation (#3482)
nnictl & nni.experiment¶
Add native support for experiment config V2 (#3466 #3540 #3552)
Add resume and view mode in Python API
nni.experiment
(#3490 #3524 #3545)
Training Service¶
Support umount for shared storage in remote training service (#3456)
Support Windows as the remote training service in reuse mode (#3500)
Remove duplicated env folder in remote training service (#3472)
Add log information for GPU metric collector (#3506)
Enable optional Pod Spec for FrameworkController platform (#3379, thanks the external contributor @mbu93)
WebUI¶
Support launching TensorBoard on WebUI (#3454 #3361 #3531)
Upgrade echarts-for-react to v5 (#3457)
Add wrap for dispatcher/nnimanager log monaco editor (#3461)
Bug Fixes¶
Fix bug of FLOPs counter (#3497)
Fix bug of hyper-parameter Add/Remove axes and table Add/Remove columns button conflict (#3491)
Fix bug that monaco editor search text is not displayed completely (#3492)
Fix bug of Cream NAS (#3498, thanks the external contributor @AliCloud-PAI)
Fix typos in docs (#3448, thanks the external contributor @OliverShang)
Fix typo in NAS 1.0 (#3538, thanks the external contributor @ankitaggarwal23)
Release 2.1 - 3/10/2021¶
Major updates¶
Neural architecture search¶
Improve NAS 2.0 (Retiarii) Framework (Improved Experimental)
Improve the robustness of graph generation and code generation for PyTorch models (#3365)
Support the inline mutation API
ValueChoice
(#3349 #3382)Improve the design and implementation of Model Evaluator (#3359 #3404)
Support Random/Grid/Evolution exploration strategies (i.e., search algorithms) (#3377)
Refer to here for Retiarii Roadmap
Training service¶
Support shared storage for reuse mode (#3354)
Support Windows as the local training service in hybrid mode (#3353)
Remove PAIYarn training service (#3327)
Add “recently-idle” scheduling algorithm (#3375)
Deprecate
preCommand
and enablepythonPath
for remote training service (#3284 #3410)Refactor reuse mode temp folder (#3374)
nnictl & nni.experiment¶
Migrate
nnicli
to new Python APInni.experiment
(#3334)Refactor the way of specifying tuner in experiment Python API (
nni.experiment
), more aligned withnnictl
(#3419)
WebUI¶
Support showing the assigned training service of each trial in hybrid mode on WebUI (#3261 #3391)
Support multiple selection for filter status in experiments management page (#3351)
Improve overview page (#3316 #3317 #3352)
Support copy trial id in the table (#3378)
Documentation¶
Improve model compression examples and documentation (#3326 #3371)
Add Python API examples and documentation (#3396)
Add SECURITY doc (#3358)
Add ‘What’s NEW!’ section in README (#3395)
Update English contributing doc (#3398, thanks external contributor @Yongxuanzhang)
Bug fixes¶
Fix AML outputs path and python process not killed (#3321)
Fix bug that an experiment launched from Python cannot be resumed by nnictl (#3309)
Fix import path of network morphism example (#3333)
Fix bug in the tuple unpack (#3340)
Fix bug of security for arbitrary code execution (#3311, thanks external contributor @huntr-helper)
Fix
NoneType
error on jupyter notebook (#3337, thanks external contributor @tczhangzhi)Fix bugs in Retiarii (#3339 #3341 #3357, thanks external contributor @tczhangzhi)
Fix bug in AdaptDL mode example (#3381, thanks external contributor @ZeyaWang)
Fix the spelling mistake of assessor (#3416, thanks external contributor @ByronCHAO)
Fix bug in ruamel import (#3430, thanks external contributor @rushtehrani)
Release 2.0 - 1/14/2021¶
Major updates¶
Neural architecture search¶
Support an improved NAS framework: Retiarii (experimental)
Feature roadmap (issue #3301)
Documentation (#3221 #3282 #3287)
Support a new NAS algorithm: Cream (#2705)
Add a new NAS benchmark for NLP model search (#3140)
Training service¶
Support hybrid training service (#3097 #3251 #3252)
Support AdlTrainingService, a new training service based on Kubernetes (#3022, thanks external contributors Petuum @pw2393)
Model compression¶
Support pruning schedule for fpgm pruning algorithm (#3110)
ModelSpeedup improvement: support torch v1.7 (updated graph_utils.py) (#3076)
Improve model compression utility: model flops counter (#3048 #3265)
WebUI & nnictl¶
Support experiments management on WebUI, add a web page for it (#3081 #3127)
Improve the layout of overview page (#3046 #3123)
Add navigation bar on the right for logs and configs; add expanded icons for table (#3069 #3103)
Others¶
Support launching an experiment from Python code (#3111 #3210 #3263)
Refactor builtin/customized tuner installation (#3134)
Support new experiment configuration V2 (#3138 #3248 #3251)
Reorganize source code directory hierarchy (#2962 #2987 #3037)
Change SIGKILL to SIGTERM in local mode when cancelling trial jobs (#3173)
Refector hyperband (#3040)
Documentation¶
Port markdown docs to reStructuredText docs and introduce
githublink
(#3107)List related research and publications in doc (#3150)
Add tutorial of saving and loading quantized model (#3192)
Remove paiYarn doc and add description of
reuse
config in remote mode (#3253)Update EfficientNet doc to clarify repo versions (#3158, thanks external contributor @ahundt)
Bug fixes¶
Fix exp-duration pause timing under NO_MORE_TRIAL status (#3043)
Fix bug in NAS SPOS trainer, apply_fixed_architecture (#3051, thanks external contributor @HeekangPark)
Fix
_compute_hessian
bug in NAS DARTS (PyTorch version) (#3058, thanks external contributor @hroken)Fix bug of conv1d in the cdarts utils (#3073, thanks external contributor @athaker)
Fix the handling of unknown trials when resuming an experiment (#3096)
Fix bug of kill command under Windows (#3106)
Fix lazy logging (#3108, thanks external contributor @HarshCasper)
Fix checkpoint load and save issue in QAT quantizer (#3124, thanks external contributor @eedalong)
Fix quant grad function calculation error (#3160, thanks external contributor @eedalong)
Fix device assignment bug in quantization algorithm (#3212, thanks external contributor @eedalong)
Fix bug in ModelSpeedup and enhance UT for it (#3279)
and others (#3063 #3065 #3098 #3109 #3125 #3143 #3156 #3168 #3175 #3180 #3181 #3183 #3203 #3205 #3207 #3214 #3216 #3219 #3223 #3224 #3230 #3237 #3239 #3240 #3245 #3247 #3255 #3257 #3258 #3262 #3263 #3267 #3269 #3271 #3279 #3283 #3289 #3290 #3295)
Release 1.9 - 10/22/2020¶
Major updates¶
Neural architecture search¶
Support regularized evolution algorithm for NAS scenario (#2802)
Add NASBench201 in search space zoo (#2766)
Model compression¶
AMC pruner improvement: support resnet, support reproduction of the experiments (default parameters in our example code) in AMC paper (#2876 #2906)
Support constraint-aware on some of our pruners to improve model compression efficiency (#2657)
Support “tf.keras.Sequential” in model compression for TensorFlow (#2887)
Support customized op in the model flops counter (#2795)
Support quantizing bias in QAT quantizer (#2914)
Training service¶
Support configuring python environment using “preCommand” in remote mode (#2875)
Support AML training service in Windows (#2882)
Support reuse mode for remote training service (#2923)
WebUI & nnictl¶
The “Overview” page on WebUI is redesigned with new layout (#2914)
Upgraded node, yarn and FabricUI, and enabled Eslint (#2894 #2873 #2744)
Add/Remove columns in hyper-parameter chart and trials table in “Trials detail” page (#2900)
JSON format utility beautify on WebUI (#2863)
Support nnictl command auto-completion (#2857)
UT & IT¶
Add integration test for experiment import and export (#2878)
Add integration test for user installed builtin tuner (#2859)
Add unit test for nnictl (#2912)
Documentation¶
Refactor of the document for model compression (#2919)
Bug fixes¶
Bug fix of naïve evolution tuner, correctly deal with trial fails (#2695)
Resolve the warning “WARNING (nni.protocol) IPC pipeline not exists, maybe you are importing tuner/assessor from trial code?” (#2864)
Fix search space issue in experiment save/load (#2886)
Fix bug in experiment import data (#2878)
Fix annotation in remote mode (python 3.8 ast update issue) (#2881)
Support boolean type for “choice” hyper-parameter when customizing trial configuration on WebUI (#3003)
Release 1.8 - 8/27/2020¶
Major updates¶
Training service¶
Access trial log directly on WebUI (local mode only) (#2718)
Add OpenPAI trial job detail link (#2703)
Support GPU scheduler in reusable environment (#2627) (#2769)
Add timeout for
web_channel
intrial_runner
(#2710)Show environment error message in AzureML mode (#2724)
Add more log information when copying data in OpenPAI mode (#2702)
WebUI, nnictl and nnicli¶
Improve hyper-parameter parallel coordinates plot (#2691) (#2759)
Add pagination for trial job list (#2738) (#2773)
Enable panel close when clicking overlay region (#2734)
Remove support for Multiphase on WebUI (#2760)
Support save and restore experiments (#2750)
Add intermediate results in export result (#2706)
Add command to list trial results with highest/lowest metrics (#2747)
Neural architecture search¶
Search space zoo: ENAS and DARTS (#2589)
API to query intermediate results in NAS benchmark (#2728)
Model compression¶
Support the List/Tuple Construct/Unpack operation for TorchModuleGraph (#2609)
Model speedup improvement: Add support of DenseNet and InceptionV3 (#2719)
Support the multiple successive tuple unpack operations (#2768)
Doc of comparing the performance of supported pruners (#2742)
New pruners: Sensitivity pruner (#2684) and AMC pruner (#2573) (#2786)
TensorFlow v2 support in model compression (#2755)
Backward incompatible changes¶
Update the default experiment folder from
$HOME/nni/experiments
to$HOME/nni-experiments
. If you want to view the experiments created by previous NNI releases, you can move the experiments folders from$HOME/nni/experiments
to$HOME/nni-experiments
manually. (#2686) (#2753)Dropped support for Python 3.5 and scikit-learn 0.20 (#2778) (#2777) (2783) (#2787) (#2788) (#2790)
Others¶
Upgrade TensorFlow version in Docker image (#2732) (#2735) (#2720)
Examples¶
Remove gpuNum in assessor examples (#2641)
Documentation¶
Improve customized tuner documentation (#2628)
Fix several typos and grammar mistakes in documentation (#2637 #2638, thanks @tomzx)
Improve AzureML training service documentation (#2631)
Improve CI of Chinese translation (#2654)
Improve OpenPAI training service documentation (#2685)
Improve documentation of community sharing (#2640)
Add tutorial of Colab support (#2700)
Improve documentation structure for model compression (#2676)
Bug fixes¶
Fix mkdir error in training service (#2673)
Fix bug when using chmod in remote training service (#2689)
Fix dependency issue by making
_graph_utils
imported inline (#2675)Fix mask issue in
SimulatedAnnealingPruner
(#2736)Fix intermediate graph zooming issue (#2738)
Fix issue when dict is unordered when querying NAS benchmark (#2728)
Fix import issue for gradient selector dataloader iterator (#2690)
Fix support of adding tens of machines in remote training service (#2725)
Fix several styling issues in WebUI (#2762 #2737)
Fix support of unusual types in metrics including NaN and Infinity (#2782)
Fix nnictl experiment delete (#2791)
Release 1.7 - 7/8/2020¶
Major Features¶
Training Service¶
Support AML(Azure Machine Learning) platform as NNI training service.
OpenPAI job can be reusable. When a trial is completed, the OpenPAI job won’t stop, and wait next trial. refer to reuse flag in OpenPAI config.
Neural Architecture Search (NAS)¶
Model Compression¶
Improve Model Speedup: track more dependencies among layers and automatically resolve mask conflict, support the speedup of pruned resnet.
Added new pruners, including three auto model pruning algorithms: NetAdapt Pruner, SimulatedAnnealing Pruner, AutoCompress Pruner, and ADMM Pruner.
Added model sensitivity analysis tool to help users find the sensitivity of each layer to the pruning.
Update lottery ticket pruner to export winning ticket.
Examples¶
Automatically optimize tensor operators on NNI with a new customized tuner OpEvo.
Built-in tuners/assessors/advisors¶
WebUI¶
Support visualizing nested search space more friendly.
Show trial’s dict keys in hyper-parameter graph.
Enhancements to trial duration display.
Others¶
Provide utility function to merge parameters received from NNI
Support setting paiStorageConfigName in pai mode
Documentation¶
Improve documentation and examples for NAS benchmarks.
Homepage migration to readthedoc.
Bug Fixes¶
Fix bug for model graph with shared nn.Module
Fix nodejs OOM when
make build
Fix NASUI bugs
Fix duration and intermediate results pictures update issue.
Fix minor WebUI table style issues.
Release 1.6 - 5/26/2020¶
Major Features¶
New Features and improvement¶
Improve IPC limitation to 100W
improve code storage upload logic among trials in non-local platform
support
__version__
for SDK versionsupport windows dev intall
Web UI¶
Show trial error message
finalize homepage layout
Refactor overview’s best trials module
Remove multiphase from webui
add tooltip for trial concurrency in the overview page
Show top trials for hyper-parameter graph
HPO Updates¶
Improve PBT on failure handling and support experiment resume for PBT
NAS Updates¶
NAS support for TensorFlow 2.0 (preview) TF2.0 NAS examples
Use OrderedDict for LayerChoice
Prettify the format of export
Replace layer choice with selected module after applied fixed architecture
Model Compression Updates¶
Model compression PyTorch 1.4 support
Training Service Updates¶
update pai yaml merge logic
support windows as remote machine in remote mode Remote Mode
Bug Fix¶
fix dev install
SPOS example crash when the checkpoints do not have state_dict
Fix table sort issue when experiment had failed trial
Support multi python env (conda, pyenv etc)
Release 1.5 - 4/13/2020¶
New Features and Documentation¶
Hyper-Parameter Optimizing¶
New tuner: Population Based Training (PBT)
Trials can now report infinity and NaN as result
Neural Architecture Search¶
New NAS algorithm: TextNAS
ENAS and DARTS now support visualization through web UI.
Model Compression¶
New Pruner: GradientRankFilterPruner
Compressors will validate configuration by default
Refactor: Adding optimizer as an input argument of pruner, for easy support of DataParallel and more efficient iterative pruning. This is a broken change for the usage of iterative pruning algorithms.
Model compression examples are refactored and improved
Added documentation for implementing compressing algorithm
Training Service¶
Kubeflow now supports pytorchjob crd v1 (thanks external contributor @jiapinai)
Experimental DLTS support
Overall Documentation Improvement¶
Documentation is significantly improved on grammar, spelling, and wording (thanks external contributor @AHartNtkn)
Fixed Bugs¶
ENAS cannot have more than one LSTM layers (thanks external contributor @marsggbo)
NNI manager’s timers will never unsubscribe (thanks external contributor @guilhermehn)
NNI manager may exhaust head memory (thanks external contributor @Sundrops)
Batch tuner does not support customized trials (#2075)
Experiment cannot be killed if it failed on start (#2080)
Non-number type metrics break web UI (#2278)
A bug in lottery ticket pruner
Other minor glitches
Release 1.4 - 2/19/2020¶
Major Features¶
Neural Architecture Search¶
Support C-DARTS algorithm and add the example using it
Support a preliminary version of ProxylessNAS and the corresponding example
Add unit tests for the NAS framework
Model Compression¶
Support DataParallel for compressing models, and provide an example of using DataParallel
Support model speedup for compressed models, in Alpha version
Training Service¶
Support complete PAI configurations by allowing users to specify PAI config file path
Add example config yaml files for the new PAI mode (i.e., paiK8S)
Support deleting experiments using sshkey in remote mode (thanks external contributor @tyusr)
WebUI¶
WebUI refactor: adopt fabric framework
Others¶
Support running NNI experiment at foreground, i.e.,
--foreground
argument innnictl create/resume/view
Support canceling the trials in UNKNOWN state
Support large search space whose size could be up to 50mb (thanks external contributor @Sundrops)
Documentation¶
Improve the index structure of NNI readthedocs
Improve documentation for NAS
Improve documentation for the new PAI mode
Add QuickStart guidance for NAS and model compression
Improve documentation for the supported EfficientNet
Bug Fixes¶
Correctly support NaN in metric data, JSON compliant
Fix the out-of-range bug of
randint
type in search spaceFix the bug of wrong tensor device when exporting onnx model in model compression
Fix incorrect handling of nnimanagerIP in the new PAI mode (i.e., paiK8S)
Release 1.3 - 12/30/2019¶
Major Features¶
Neural Architecture Search Algorithms Support¶
Single Path One Shot algorithm and the example using it
Model Compression Algorithms Support¶
Knowledge Distillation algorithm and the example using itExample
Pruners
Training Service¶
NFS Support for PAI
Instead of using HDFS as default storage, since OpenPAI v0.11, OpenPAI can have NFS or AzureBlob or other storage as default storage. In this release, NNI extended the support for this recent change made by OpenPAI, and could integrate with OpenPAI v0.11 or later version with various default storage.
Kubeflow update adoption
Adopted the Kubeflow 0.7’s new supports for tf-operator.
Engineering (code and build automation)¶
Enforced ESLint on static code analysis.
Small changes & Bug Fixes¶
Release 1.2 - 12/02/2019¶
Major Features¶
-
New feature engineering interface
Feature selection algorithms: Gradient feature selector & GBDT selector
Neural Architecture Search (NAS) on NNI
NAS in classic mode (each trial runs independently)
Model compression
New model pruning algorithms: lottery ticket pruning approach, L1Filter pruner, Slim pruner, FPGM pruner
New model quantization algorithms: QAT quantizer, DoReFa quantizer
Support the API for exporting compressed model.
Training Service
Support OpenPAI token authentication
Examples:
Engineering Improvements
For remote training service, trial jobs require no GPU are now scheduled with round-robin policy instead of random.
Pylint rules added to check pull requests, new pull requests need to comply with these pylint rules.
Web Portal & User Experience
Support user to add customized trial.
User can zoom out/in in detail graphs, except Hyper-parameter.
Documentation
Improved NNI API documentation with more API docstring.
Bug fix¶
Fix the table sort issue when failed trials haven’t metrics. -Issue #1773
Maintain selected status(Maximal/Minimal) when the page switched. -PR#1710
Make hyper-parameters graph’s default metric yAxis more accurate. -PR#1736
Fix GPU script permission issue. -Issue #1665
Release 1.1 - 10/23/2019¶
Major Features¶
New tuner: PPO Tuner
Tuners can now use dedicated GPU resource (see
gpuIndices
in tutorial for details)Web UI improvements
Trials detail page can now list hyperparameters of each trial, as well as their start and end time (via “add column”)
Viewing huge experiment is now less laggy
More examples
Model compression toolkit - Alpha release: We are glad to announce the alpha release for model compression toolkit on top of NNI, it’s still in the experiment phase which might evolve based on usage feedback. We’d like to invite you to use, feedback and even contribute
Fixed Bugs¶
Multiphase job hangs when search space exhuasted (issue #1204)
nnictl
fails when log not available (issue #1548)
Release 1.0 - 9/2/2019¶
Major Features¶
Tuners and Assessors
Support Auto-Feature generator & selection -Issue#877 -PR #1387
Provide auto feature interface
Tuner based on beam search
Add a parallel algorithm to improve the performance of TPE with large concurrency. -PR #1052
Support multiphase for hyperband -PR #1257
Training Service
Support private docker registry -PR #755
Engineering Improvements
Python wrapper for rest api, support retrieve the values of the metrics in a programmatic way PR #1318
New python API : get_experiment_id(), get_trial_id() -PR #1353 -Issue #1331 & -Issue#1368
Optimized NAS Searchspace -PR #1393
Unify NAS search space with _type – “mutable_type”e
Update random search tuner
Set gpuNum as optional -Issue #1365
Remove outputDir and dataDir configuration in PAI mode -Issue #1342
When creating a trial in Kubeflow mode, codeDir will no longer be copied to logDir -Issue #1224
Web Portal & User Experience
Show the best metric curve during search progress in WebUI -Issue #1218
Show the current number of parameters list in multiphase experiment -Issue1210 -PR #1348
Add “Intermediate count” option in AddColumn. -Issue #1210
Support search parameters value in WebUI -Issue #1208
Enable automatic scaling of axes for metric value in default metric graph -Issue #1360
Add a detailed documentation link to the nnictl command in the command prompt -Issue #1260
UX improvement for showing Error log -Issue #1173
Documentation
Update the docs structure -Issue #1231
(deprecated) Multi phase document improvement -Issue #1233 -PR #1242
Add configuration example
WebUI description improvement -PR #1419
Bug fix¶
(Bug fix)Fix the broken links in 0.9 release -Issue #1236
(Bug fix)Script for auto-complete
(Bug fix)Fix pipeline issue that it only check exit code of last command in a script. -PR #1417
(Bug fix)quniform fors tuners -Issue #1377
(Bug fix)’quniform’ has different meaning beween GridSearch and other tuner. -Issue #1335
(Bug fix)”nnictl experiment list” give the status of a “RUNNING” experiment as “INITIALIZED” -PR #1388
(Bug fix)SMAC cannot be installed if nni is installed in dev mode -Issue #1376
(Bug fix)The filter button of the intermediate result cannot be clicked -Issue #1263
(Bug fix)API “/api/v1/nni/trial-jobs/xxx” doesn’t show a trial’s all parameters in multiphase experiment -Issue #1258
(Bug fix)Succeeded trial doesn’t have final result but webui show ×××(FINAL) -Issue #1207
(Bug fix)IT for nnictl stop -Issue #1298
(Bug fix)fix security warning
(Bug fix)Hyper-parameter page broken -Issue #1332
(Bug fix)Run flake8 tests to find Python syntax errors and undefined names -PR #1217
Release 0.9 - 7/1/2019¶
Major Features¶
General NAS programming interface
Add
enas-mode
andoneshot-mode
for NAS interface: PR #1201
(deprecated) Multiphase experiment supports
Added new training service support for multiphase experiment: PAI mode supports multiphase experiment since v0.9.
Added multiphase capability for the following builtin tuners:
TPE, Random Search, Anneal, Naïve Evolution, SMAC, Network Morphism, Metis Tuner.
Web Portal
Enable trial comparation in Web Portal. For details, refer to View trials status
Allow users to adjust rendering interval of Web Portal. For details, refer to View Summary Page
show intermediate results more friendly. For details, refer to View trials status
-
nnictl experiment delete
: delete one or all experiments, it includes log, result, environment information and cache. It uses to delete useless experiment result, or save disk space.nnictl platform clean
: It uses to clean up disk on a target platform. The provided YAML file includes the information of target platform, and it follows the same schema as the NNI configuration file.
Bug fix and other changes¶
Tuner Installation Improvements: add sklearn to nni dependencies.
(Bug Fix) Failed to connect to PAI http code - Issue #1076
(Bug Fix) Validate file name for PAI platform - Issue #1164
(Bug Fix) Update GMM evaluation in Metis Tuner
(Bug Fix) Negative time number rendering in Web Portal - Issue #1182, Issue #1185
(Bug Fix) Hyper-parameter not shown correctly in WebUI when there is only one hyper parameter - Issue #1192
Release 0.8 - 6/4/2019¶
Major Features¶
Support NNI on Windows for OpenPAI/Remote mode
NNI running on windows for remote mode
NNI running on windows for OpenPAI mode
Advanced features for using GPU
Run multiple trial jobs on the same GPU for local and remote mode
Run trial jobs on the GPU running non-NNI jobs
Kubeflow v1beta2 operator
Support Kubeflow TFJob/PyTorchJob v1beta2
General NAS programming interface
Provide NAS programming interface for users to easily express their neural architecture search space through NNI annotation
Provide a new command
nnictl trial codegen
for debugging the NAS codeTutorial of NAS programming interface, example of NAS on MNIST, customized random tuner for NAS
Support resume tuner/advisor’s state for experiment resume
For experiment resume, tuner/advisor will be resumed by replaying finished trial data
Web Portal
Improve the design of copying trial’s parameters
Support ‘randint’ type in hyper-parameter graph
Use should ComponentUpdate to avoid unnecessary render
Bug fix and other changes¶
Bug fix that
nnictl update
has inconsistent command stylesSupport import data for SMAC tuner
Bug fix that experiment state transition from ERROR back to RUNNING
Fix bug of table entries
Nested search space refinement
Refine ‘randint’ type and support lower bound
Release 0.7 - 4/29/2018¶
Major Features¶
-
NNI running on windows for local mode
-
Support a new advisor BOHB, which is a robust and efficient hyperparameter tuning algorithm, combines the advantages of Bayesian optimization and Hyperband
Support import and export experiment data through nnictl
Generate analysis results report after the experiment execution
Support import data to tuner and advisor for tuning
Designated gpu devices for NNI trial jobs
Specify GPU devices for NNI trial jobs by gpuIndices configuration, if gpuIndices is set in experiment configuration file, only the specified GPU devices are used for NNI trial jobs.
Web Portal enhancement
Decimal format of metrics other than default on the Web UI
Hints in WebUI about Multi-phase
Enable copy/paste for hyperparameters as python dict
Enable early stopped trials data for tuners.
NNICTL provide better error message
nnictl provide more meaningful error message for YAML file format error
Bug fix¶
Unable to kill all python threads after nnictl stop in async dispatcher mode
nnictl –version does not work with make dev-install
All trail jobs status stays on ‘waiting’ for long time on OpenPAI platform
Release 0.6 - 4/2/2019¶
Major Features¶
-
check whether the version is consistent between nniManager and trialKeeper
Report final metrics for early stop job
If includeIntermediateResults is true, the last intermediate result of the trial that is early stopped by assessor is sent to tuner as final result. The default value of includeIntermediateResults is false.
-
Adds two pipes to separate message receiving channels for tuner and assessor.
Make log collection feature configurable
Add intermediate result graph for all trials
Bug fix¶
Fix the bug that doesn’t show any result if metrics is dict
Fix the number calculation issue for float types in hyperband
Fix a bug in the search space conversion in SMAC tuner
Fix the WebUI issue when parsing experiment.json with illegal format
Fix cold start issue in Metis Tuner
Release 0.5.2 - 3/4/2019¶
Improvements¶
Curve fitting assessor performance improvement.
Documentation¶
Chinese version document: https://nni.readthedocs.io/zh/latest/
Debuggability/serviceability document: https://nni.readthedocs.io/en/latest/Tutorial/HowToDebug.html
Tuner assessor reference: https://nni.readthedocs.io/en/latest/sdk_reference.html
Bug Fixes and Other Changes¶
Fix a race condition bug that does not store trial job cancel status correctly.
Fix search space parsing error when using SMAC tuner.
Fix cifar10 example broken pipe issue.
Add unit test cases for nnimanager and local training service.
Add integration test azure pipelines for remote machine, OpenPAI and kubeflow training services.
Support Pylon in OpenPAI webhdfs client.
Release 0.5.1 - 1/31/2018¶
Improvements¶
Making log directory configurable
Support different levels of logs, making it easier for debugging
Documentation¶
Reorganized documentation & New Homepage Released: https://nni.readthedocs.io/en/latest/
Bug Fixes and Other Changes¶
Fix the bug of installation in python virtualenv, and refactor the installation logic
Fix the bug of HDFS access failure on OpenPAI mode after OpenPAI is upgraded.
Fix the bug that sometimes in-place flushed stdout makes experiment crash
Release 0.5.0 - 01/14/2019¶
Major Features¶
New tuner and assessor supports¶
Support Metis tuner as a new NNI tuner. Metis algorithm has been proofed to be well performed for online hyper-parameter tuning.
Support ENAS customized tuner, a tuner contributed by github community user, is an algorithm for neural network search, it could learn neural network architecture via reinforcement learning and serve a better performance than NAS.
Support Curve fitting assessor for early stop policy using learning curve extrapolation.
Advanced Support of Weight Sharing: Enable weight sharing for NAS tuners, currently through NFS.
Training Service Enhancement¶
FrameworkController Training service: Support run experiments using frameworkcontroller on kubernetes
FrameworkController is a Controller on kubernetes that is general enough to run (distributed) jobs with various machine learning frameworks, such as tensorflow, pytorch, MXNet.
NNI provides unified and simple specification for job definition.
MNIST example for how to use FrameworkController.
User Experience improvements¶
A better trial logging support for NNI experiments in OpenPAI, Kubeflow and FrameworkController mode:
An improved logging architecture to send stdout/stderr of trials to NNI manager via Http post. NNI manager will store trial’s stdout/stderr messages in local log file.
Show the link for trial log file on WebUI.
Support to show final result’s all key-value pairs.
Release 0.4.1 - 12/14/2018¶
Major Features¶
New tuner supports¶
Support network morphism as a new tuner
Training Service improvements¶
Migrate Kubeflow training service‘s dependency from kubectl CLI to Kubernetes API client
Pytorch-operator support for Kubeflow training service
Improvement on local code files uploading to OpenPAI HDFS
Fixed OpenPAI integration WebUI bug: WebUI doesn’t show latest trial job status, which is caused by OpenPAI token expiration
NNICTL improvements¶
Show version information both in nnictl and WebUI. You can run nnictl -v to show your current installed NNI version
WebUI improvements¶
Enable modify concurrency number during experiment
Add feedback link to NNI github ‘create issue’ page
Enable customize top 10 trials regarding to metric numbers (largest or smallest)
Enable download logs for dispatcher & nnimanager
Enable automatic scaling of axes for metric number
Update annotation to support displaying real choice in searchspace
New examples¶
FashionMnist, work together with network morphism tuner
Distributed MNIST example written in PyTorch
Release 0.4 - 12/6/2018¶
Major Features¶
-
Support tf-operator
Distributed trial example on Kubeflow
Support launch NNI experiment on MAC
WebUI
UI support for hyperband tuner
Remove tensorboard button
Show experiment error message
Show line numbers in search space and trial profile
Support search a specific trial by trial number
Show trial’s hdfsLogPath
Download experiment parameters
Others¶
Asynchronous dispatcher
Docker file update, add pytorch library
Refactor ‘nnictl stop’ process, send SIGTERM to nni manager process, rather than calling stop Rest API.
OpenPAI training service bug fix
Support NNI Manager IP configuration(nniManagerIp) in OpenPAI cluster config file, to fix the issue that user’s machine has no eth0 device
File number in codeDir is capped to 1000 now, to avoid user mistakenly fill root dir for codeDir
Don’t print useless ‘metrics is empty’ log in OpenPAI job’s stdout. Only print useful message once new metrics are recorded, to reduce confusion when user checks OpenPAI trial’s output for debugging purpose
Add timestamp at the beginning of each log entry in trial keeper.
Release 0.3.0 - 11/2/2018¶
NNICTL new features and updates¶
Support running multiple experiments simultaneously.
Before v0.3, NNI only supports running single experiment once a time. After this release, users are able to run multiple experiments simultaneously. Each experiment will require a unique port, the 1st experiment will be set to the default port as previous versions. You can specify a unique port for the rest experiments as below:
nnictl create --port 8081 --config <config file path>
Support updating max trial number. use
nnictl update --help
to learn more. Or refer to NNICTL Spec for the fully usage of NNICTL.
API new features and updates¶
**breaking change**: nn.get_parameters() is refactored to nni.get_next_parameter. All examples of prior releases can not run on v0.3, please clone nni repo to get new examples. If you had applied NNI to your own codes, please update the API accordingly.
New API nni.get_sequence_id(). Each trial job is allocated a unique sequence number, which can be retrieved by nni.get_sequence_id() API.
git clone -b v0.3 https://github.com/microsoft/nni.git
nni.report_final_result(result) API supports more data types for result parameter.
It can be of following types:
int
float
A python dict containing ‘default’ key, the value of ‘default’ key should be of type int or float. The dict can contain any other key value pairs.
New tuner support¶
Batch Tuner which iterates all parameter combination, can be used to submit batch trial jobs.
New examples¶
A NNI Docker image for public usage:
docker pull msranni/nni:latest
New trial example: NNI Sklearn Example
New competition example: Kaggle Competition TGS Salt Example
Others¶
UI refactoring, refer to WebUI doc for how to work with the new UI.
Continuous Integration: NNI had switched to Azure pipelines
Release 0.2.0 - 9/29/2018¶
Major Features¶
Support OpenPAI Training Platform (See here for instructions about how to submit NNI job in pai mode)
Support training services on pai mode. NNI trials will be scheduled to run on OpenPAI cluster
NNI trial’s output (including logs and model file) will be copied to OpenPAI HDFS for further debugging and checking
Support SMAC tuner (See here for instructions about how to use SMAC tuner)
Support NNI installation on conda and python virtual environment
Others
Update ga squad example and related documentation
WebUI UX small enhancement and bug fix
Release 0.1.0 - 9/10/2018 (initial release)¶
Initial release of Neural Network Intelligence (NNI).
Major Features¶
Installation and Deployment
Support pip install and source codes install
Support training services on local mode(including Multi-GPU mode) as well as multi-machines mode
Tuners, Assessors and Trial
Support AutoML algorithms including: hyperopt_tpe, hyperopt_annealing, hyperopt_random, and evolution_tuner
Support assessor(early stop) algorithms including: medianstop algorithm
Provide Python API for user defined tuners and assessors
Provide Python API for user to wrap trial code as NNI deployable codes
Experiments
Provide a command line toolkit ‘nnictl’ for experiments management
Provide a WebUI for viewing experiments details and managing experiments
Continuous Integration
Support CI by providing out-of-box integration with travis-ci on ubuntu
Others
Support simple GPU job scheduling