NNI - 微软亚洲研究院开源的轻量级AutoML工具包
一个轻量级的AutoML工具包,拥有自动进行超参数搜索/模型搜索的功能,支持用户将任务部署在本地或分布式系统上;NNI也是非常友好的开源工具,用户可以方便地拓展自己的搜索算法 QuanluZhang released this
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)
Assets
2
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)
- Improve the user experience of nnicli with examples (#2713)
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
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 documenation (#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)
Assets
2
Release 1.7.1 - 8/1/2020
Bug Fixes
Assets
2
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.
- Support ignoring files and folders in code directory with .nniignore when uploading code directory to training service.
Neural Architecture Search (NAS)
-
Provide NAS Open Benchmarks (NasBench101, NasBench201, NDS) with friendly APIs.
-
Support Classic NAS (i.e., non-weight-sharing mode) on TensorFlow 2.X.
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 for model compression
- Improve documentation
and examples for NAS benchmarks. - Improve documentation for AzureML training service
- 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.
Assets
2
SparkSnail released this
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 version - support 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)
Assets
2
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
- Model compression examples are refactored and improved
- Added documentation for implementing compressing algorithm
Training Service
Overall Documentation Improvement
- Documentation is significantly improved on grammar, spelling, and wording (thanks @AHartNtkn)
Fixed Bugs
- ENAS cannot have more than one LSTM layers (thanks @marsggbo)
- NNI manager's timers will never unsubscribe (thanks @guilhermehn)
- NNI manager may exhaust head memory (thanks @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
Assets
2
QuanluZhang released this
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 space - Fix 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)
Assets
2
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
- BNN Quantizer
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
Assets
2
Release 1.2 - 12/2/2019
Major Features
- Feature Engineering
- New feature engineering interface
- Feature selection algorithms: Gradient feature selector & GBDT selector
- Examples for feature engineering
- Neural Architecture Search (NAS) on NNI
- New NAS interface
- NAS algorithms: ENAS, DARTS, P-DARTS (in PyTorch)
- 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
Assets
2
Release 1.1 - 10/23/2019
Major Features
- New tuner: PPO Tuner
- View stopped experiments
- 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
Assets
2
Release 1.0 - 29/8/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 Pakdd example
- Add a parallel algorithm to improve the performance of TPE with large concurrency. -PR #1052
- Support multiphase for hyperband -PR #1257
- Support Auto-Feature generator & selection -Issue#877 -PR #1387
-
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
- 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
Assets
2
Release 0.9 - 7/1/2019
Major Features
-
General NAS programming interface
- Add
enas-mode
andoneshot-mode
for NAS interface: PR #1201
- Add
-
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.
For details, please refer to Write a tuner that leverages multi-phase
-
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
Assets
2
xuehui1991 released this
Release 0.8 - 6/4/2019
Major Features
-
Support NNI on Windows for PAI/Remote mode
-
NNI running on windows for remote mode
-
NNI running on windows for PAI 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 code -
Tutorial 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 styles -
Support 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
Assets
2
Release 0.7 - 4/29/2018
Major Features
- Support NNI on Windows
- NNI running on windows for local mode
- New advisor: BOHB
- 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-instal
- All trail jobs status stays on 'waiting' for long time on PAI platform
Assets
2
Release 0.6 - 4/2/2019
Major Features
- Version checking
- 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.
- Separate Tuner/Assessor
- 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
- Add shmMB config key for PAI
- 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
Assets
2
chicm-ms released this
Release 0.5.2.1 - 3/4/2019
- Add release note.
- Fix Metis tuner cold start issue.
Assets
2
QuanluZhang released this
Assets
2
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/
- Chinese users are able to learn NNI with the translated Chinese doc: https://github.com/Microsoft/nni/blob/master/zh_CN/README.md.
Dear Contributors: We'd love to provide more language translations, contribute to NNI with more languages =)
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 PAI mode after PAI is upgraded.
- Fix the bug that sometimes in-place flushed stdout makes experiment crash
xuehui1991 released this
Assets
2
Release 0.5.0 - 01/15/2019
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 PAI, 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.
Assets
2
Major Features
New tuner support
- Support network morphism
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.
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
New example
- FashionMnist, work together with network morphism tuner.
- Distributed MNIST example written in PyTorch.
Others
- Show version information both in nnictl and WebUI. You can run nnictl -v to show your current installed NNI version.
- Bug Fix
• fix the bug that WebUI doesn't show latest trial job status, which is caused by OpenPAI token expiration.
• Update annotation to support displaying real choice in searchspace
Assets
2
Major Features
New Platform Support
- Support launch NNI experiment on MAC
New Tuner Support
New Training Service Support
- Kubeflow Training service
- Support tf-operator
- Distributed trial example on Kubeflow
OpenPAI Training Service Improvements
* Support NNI Manager IP configuration(nniManagerIp) in PAI 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 int PAI job’s stdout. Only print useful message once new metrics are recorded, to reduce confusion when user checks PAI trial’s output for debugging purpose
* Add timestamp at the beginning of each log entry in trial keeper.
* Show trial's hdfsLogPath
WebUI Improvements and updates
* Download experiment parameters
* UI support for hyperband tuner
* Show experiment error message
* Show line numbers in search space and trial profile
* Support search a specific trial by trial number
* Remove tensorboard button
Others
- Asynchronous dispatcher
- Docker file update: added pytorch library
- Refactor 'nnictl stop' process, send SIGTERM to nni manager process, rather than calling stop Rest API
Assets
2
Release 0.3.4 - 11/8/2018
- Updated several examples
- Fix the bug that Medianstop assessor does not work
Assets
2
Fix pypi package missing python module
Watchers:275 |
Star:9208 |
Fork:1234 |
创建时间: 2018-06-01 13:51:44 |
最后Commits: 4天前 |
许可协议:MIT |
649ee59
Compare
Verified
Major updates
Neural architecture search
Training service
Model compression
WebUI & nnictl
Others
Documentation
githublink
(#3107)reuse
config in remote mode (#3253)Bug fixes
_compute_hessian
bug in NAS DARTS (PyTorch version) (#3058, thanks external contributor @hroken)