"...resnet50_tensorflow.git" did not exist on "db2fab9906b8fcfe44948e6a300ff4ecc25853f1"
Unverified Commit 3a2b2484 authored by QuanluZhang's avatar QuanluZhang Committed by GitHub
Browse files

update doc of community sharing (#2640)

parent 8fb8f8b3
# Automatically tuning SVD on NNI # Automatically tuning SVD (NNI in Recommenders)
In this tutorial, we first introduce a github repo [Recommenders](https://github.com/Microsoft/Recommenders). It is a repository that provides examples and best practices for building recommendation systems, provided as Jupyter notebooks. It has various models that are popular and widely deployed in recommendation systems. To provide a complete end-to-end experience, they present each example in five key tasks, as shown below: In this tutorial, we first introduce a github repo [Recommenders](https://github.com/Microsoft/Recommenders). It is a repository that provides examples and best practices for building recommendation systems, provided as Jupyter notebooks. It has various models that are popular and widely deployed in recommendation systems. To provide a complete end-to-end experience, they present each example in five key tasks, as shown below:
......
# Automatically tune systems with NNI
As computer systems and networking get increasingly complicated, optimizing them manually with explicit rules and heuristics becomes harder than ever before, sometimes impossible. Below are two examples of tuning systems with NNI. Anyone can easily tune their own systems by following them.
* [Tuning RocksDB with NNI](../TrialExample/RocksdbExamples.md)
* [Tuning parameters of SPTAG (Space Partition Tree And Graph) with NNI](SptagAutoTune.md)
Please see [this paper](https://dl.acm.org/citation.cfm?id=3352031) for more details:
Mike Liang, Chieh-Jan, et al. "The Case for Learning-and-System Co-design." ACM SIGOPS Operating Systems Review 53.1 (2019): 68-74.
######################
Automatic Model Tuning
######################
NNI can be applied on various model tuning tasks. Some state-of-the-art model search algorithms, such as EfficientNet, can be easily built on NNI. Popular models, e.g., recommendation models, can be tuned with NNI. The following are some use cases to illustrate how to leverage NNI in your model tuning tasks and how to build your own pipeline with NNI.
.. toctree::
:maxdepth: 1
Tuning SVD automatically <RecommendersSvd>
EfficientNet on NNI <../TrialExample/EfficientNet>
Automatic Model Architecture Search for Reading Comprehension <../TrialExample/SquadEvolutionExamples>
Parallelizing Optimization for TPE <ParallelizingTpeSearch>
\ No newline at end of file
#######################
Automatic System Tuning
#######################
The performance of systems, such as database, tensor operator implementaion, often need to be tuned to adapt to specific hardware configuration, targeted workload, etc. Manually tuning a system is complicated and often requires detailed understanding of hardware and workload. NNI can make such tasks much easier and help system owners find the best configuration to the system automatically. The detailed design philosophy of automatic system tuning can be found in [this paper](https://dl.acm.org/doi/10.1145/3352020.3352031). The following are some typical cases that NNI can help.
.. toctree::
:maxdepth: 1
Tuning SPTAG (Space Partition Tree And Graph) automatically <SptagAutoTune>
Tuning the performance of RocksDB <../TrialExample/RocksdbExamples>
Tuning Tensor Operators automatically <../TrialExample/OpEvoExamples>
\ No newline at end of file
###################### #######################
Community Sharings Use Cases and Solutions
###################### #######################
In addtion to the official tutorilas and examples, we encourage community contributors to share their AutoML practices especially the NNI usage practices from their experience. Different from the tutorials and examples in the rest of the document which show the usage of a feature, this part mainly introduces end-to-end scenarios and use cases to help users further understand how NNI can help them. NNI can be widely adopted in various scenarios. We also encourage community contributors to share their AutoML practices especially the NNI usage practices from their experience.
.. toctree:: .. toctree::
:maxdepth: 2 :maxdepth: 2
NNI in Recommenders <RecommendersSvd> Automatic Model Tuning (HPO/NAS) <automodel>
Automatically tuning SPTAG with NNI <SptagAutoTune> Automatic System Tuning (AutoSys) <autosys>
Neural Architecture Search Comparison <NasComparison> Model Compression <model_compression>
Hyper-parameter Tuning Algorithm Comparison <HpoComparison> Feature Engineering <feature_engineering>
Parallelizing Optimization for TPE <ParallelizingTpeSearch> Performance measurement, comparison and analysis <perf_compare>
Automatically tune systems with NNI <TuningSystems>
NNI review article from Zhihu: - By Garvin Li <NNI_AutoFeatureEng>
###################
Feature Engineering
###################
The following is an article about how NNI helps in auto feature engineering shared by a community contributor. More use cases and solutions will be added in the future.
.. toctree::
:maxdepth: 1
NNI review article from Zhihu: - By Garvin Li <NNI_AutoFeatureEng>
\ No newline at end of file
#################
Model Compression
#################
The following one shows how to apply knowledge distillation on NNI model compression. More use cases and solutions will be added in the future.
.. toctree::
:maxdepth: 1
Knowledge distillation with NNI model compression <../TrialExample/KDExample>
\ No newline at end of file
################################################
Performance Measurement, Comparison and Analysis
################################################
Performance comparison and analysis can help users decide a proper algorithm (e.g., tuner, NAS algorithm) for their scenario. The following are some measurement and comparison data for users' reference.
.. toctree::
:maxdepth: 1
Neural Architecture Search Comparison <NasComparison>
Hyper-parameter Tuning Algorithm Comparsion <HpoComparison>
\ No newline at end of file
...@@ -16,7 +16,7 @@ Neural Network Intelligence ...@@ -16,7 +16,7 @@ Neural Network Intelligence
Model Compression <model_compression> Model Compression <model_compression>
Feature Engineering <feature_engineering> Feature Engineering <feature_engineering>
References <reference> References <reference>
Community Sharings <CommunitySharings/community_sharings> Use Cases and Solutions <CommunitySharings/community_sharings>
FAQ <Tutorial/FAQ> FAQ <Tutorial/FAQ>
How to Contribute <contribution> How to Contribute <contribution>
Changelog <Release> Changelog <Release>
...@@ -8,9 +8,4 @@ Examples ...@@ -8,9 +8,4 @@ Examples
MNIST<./TrialExample/MnistExamples> MNIST<./TrialExample/MnistExamples>
Cifar10<./TrialExample/Cifar10Examples> Cifar10<./TrialExample/Cifar10Examples>
Scikit-learn<./TrialExample/SklearnExamples> Scikit-learn<./TrialExample/SklearnExamples>
EvolutionSQuAD<./TrialExample/SquadEvolutionExamples> GBDT<./TrialExample/GbdtExample>
GBDT<./TrialExample/GbdtExample> \ No newline at end of file
RocksDB <./TrialExample/RocksdbExamples>
OpEvo <./TrialExample/OpEvoExamples>
KDExample <./TrialExample/KDExample>
EfficientNet <./TrialExample/EfficientNet>
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