Unverified Commit c5ac923a authored by Chi Song's avatar Chi Song Committed by GitHub
Browse files

Chinese translation (#2458)

parent 93f96d4f
{% extends "!layout.html" %}
{% block sidebartitle %}
{% if logo and theme_logo_only %}
<a href="{{ pathto('index') }}">
{% else %}
<a href="{{ pathto('index') }}" class="icon icon-home"> {{ project }}
{% endif %}
{% if logo %}
{# Not strictly valid HTML, but it's the only way to display/scale it properly, without weird scripting or heaps of work #}
<img src="{{ pathto('_static/' + logo, 1) }}" class="logo" />
{% endif %}
</a>
{% if theme_display_version %}
{%- set nav_version = version %}
{% if READTHEDOCS and current_version %}
{%- set nav_version = current_version %}
{% endif %}
{% if nav_version %}
<div class="version">
{{ nav_version }}
</div>
{% endif %}
{% endif %}
{% include "searchbox.html" %}
{% endblock %}
...@@ -78,3 +78,9 @@ ...@@ -78,3 +78,9 @@
.. autoclass:: nni.bohb_advisor.bohb_advisor.BOHB .. autoclass:: nni.bohb_advisor.bohb_advisor.BOHB
:members: :members:
``` ```
## 工具
```eval_rst
.. autofunction:: nni.utils.merge_parameter
```
...@@ -28,7 +28,7 @@ author = 'Microsoft' ...@@ -28,7 +28,7 @@ author = 'Microsoft'
# The short X.Y version # The short X.Y version
version = '' version = ''
# The full version, including alpha/beta/rc tags # The full version, including alpha/beta/rc tags
release = 'v1.5' release = 'v1.6'
# -- General configuration --------------------------------------------------- # -- General configuration ---------------------------------------------------
...@@ -46,6 +46,8 @@ extensions = [ ...@@ -46,6 +46,8 @@ extensions = [
'sphinxarg.ext', 'sphinxarg.ext',
'sphinx.ext.napoleon', 'sphinx.ext.napoleon',
'sphinx.ext.viewcode', 'sphinx.ext.viewcode',
'sphinx.ext.intersphinx',
'nbsphinx',
] ]
# 添加示例模块 # 添加示例模块
...@@ -64,7 +66,7 @@ source_parsers = { ...@@ -64,7 +66,7 @@ source_parsers = {
source_suffix = ['.rst', '.md'] source_suffix = ['.rst', '.md']
# The master toctree document. # The master toctree document.
master_doc = 'index' master_doc = 'contents'
# The language for content autogenerated by Sphinx. Refer to documentation # The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages. # for a list of supported languages.
...@@ -82,6 +84,10 @@ exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store', 'Release_v1.0.md'] ...@@ -82,6 +84,10 @@ exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store', 'Release_v1.0.md']
pygments_style = None pygments_style = None
html_additional_pages = {
'index': 'index.html',
}
# -- Options for HTML output ------------------------------------------------- # -- Options for HTML output -------------------------------------------------
# The theme to use for HTML and HTML Help pages. See the documentation for # The theme to use for HTML and HTML Help pages. See the documentation for
......
###########################
Neural Network Intelligence
###########################
.. toctree::
:caption: 目录
:maxdepth: 2
:titlesonly:
概述<Overview>
安装 <installation>
入门<Tutorial/QuickStart>
自动(超参数)调优 <hyperparameter_tune>
神经网络架构搜索<nas>
模型压缩<model_compression>
特征工程<feature_engineering>
参考<reference>
社区分享 <CommunitySharings/community_sharings>
常见问题 <Tutorial/FAQ>
如何贡献 <contribution>
更改日志 <Release>
\ No newline at end of file
...@@ -11,5 +11,6 @@ ...@@ -11,5 +11,6 @@
EvolutionSQuAD<./TrialExample/SquadEvolutionExamples> EvolutionSQuAD<./TrialExample/SquadEvolutionExamples>
GBDT<./TrialExample/GbdtExample> GBDT<./TrialExample/GbdtExample>
RocksDB <./TrialExample/RocksdbExamples> RocksDB <./TrialExample/RocksdbExamples>
OpEvo <./TrialExample/OpEvoExamples>
KD 示例 <./TrialExample/KDExample> KD 示例 <./TrialExample/KDExample>
EfficientNet <./TrialExample/EfficientNet> EfficientNet <./TrialExample/EfficientNet>
...@@ -8,3 +8,5 @@ ...@@ -8,3 +8,5 @@
编写新的 Assessor <Assessor/CustomizeAssessor> 编写新的 Assessor <Assessor/CustomizeAssessor>
编写新的 Advisor <Tuner/CustomizeAdvisor> 编写新的 Advisor <Tuner/CustomizeAdvisor>
编写新的训练平台 <TrainingService/HowToImplementTrainingService> 编写新的训练平台 <TrainingService/HowToImplementTrainingService>
安装自定义的 Tuner,Assessor,Advisor <Tutorial/InstallCustomizedAlgos>
如何将自定义的 Tuner 安装为内置 Tuner <Tuner/InstallCustomizedTuner.md>
...@@ -17,8 +17,10 @@ NNI 中也内置了一些流程的模型压缩算法。 ...@@ -17,8 +17,10 @@ NNI 中也内置了一些流程的模型压缩算法。
概述 <Compressor/Overview> 概述 <Compressor/Overview>
快速入门 <Compressor/QuickStart> 快速入门 <Compressor/QuickStart>
Pruner <pruners> Pruners <Compressor/Pruner>
Quantizer <quantizers> Quantizers <Compressor/Quantizer>
模型加速 <Compressor/ModelSpeedup>
自动模型压缩 <Compressor/AutoCompression> 自动模型压缩 <Compressor/AutoCompression>
实现 <Compressor/Framework> 模型加速 <Compressor/ModelSpeedup>
模型压缩 <Compressor/CompressionUtils>
压缩框架 <Compressor/Framework>
自定义压缩算法 <Compressor/CustomizeCompressor>
...@@ -18,15 +18,10 @@ ...@@ -18,15 +18,10 @@
:maxdepth: 2 :maxdepth: 2
概述 <NAS/Overview> 概述 <NAS/Overview>
快速入门 <NAS/QuickStart> 编写搜索空间 <NAS/WriteSearchSpace>
教程 <NAS/NasGuide> 经典 NAS <NAS/ClassicNas>
ENAS <NAS/ENAS> One-Shot NAS <NAS/one_shot_nas>
DARTS <NAS/DARTS>
P-DARTS <NAS/PDARTS>
SPOS <NAS/SPOS>
CDARTS <NAS/CDARTS>
ProxylessNAS <NAS/Proxylessnas>
TextNAS <NAS/TextNAS>
自定义 NAS 算法 <NAS/Advanced> 自定义 NAS 算法 <NAS/Advanced>
NAS 可视化 <NAS/Visualization> NAS 可视化 <NAS/Visualization>
NAS 基准测试 <NAS/Benchmarks>
API 参考 <NAS/NasReference> API 参考 <NAS/NasReference>
...@@ -8,3 +8,4 @@ Python API 参考 ...@@ -8,3 +8,4 @@ Python API 参考
自动调优 <autotune_ref> 自动调优 <autotune_ref>
NAS <NAS/NasReference> NAS <NAS/NasReference>
模型压缩 <Compressor/CompressionReference>
\ No newline at end of file
...@@ -2,7 +2,7 @@ NNI 支持的训练平台介绍 ...@@ -2,7 +2,7 @@ NNI 支持的训练平台介绍
===================================== =====================================
.. toctree:: .. toctree::
概述 <./TrainingService/SupportTrainingService> Overview <./TrainingService/Overview>
本机<./TrainingService/LocalMode> 本机<./TrainingService/LocalMode>
远程<./TrainingService/RemoteMachineMode> 远程<./TrainingService/RemoteMachineMode>
OpenPAI<./TrainingService/PaiMode> OpenPAI<./TrainingService/PaiMode>
...@@ -10,3 +10,4 @@ NNI 支持的训练平台介绍 ...@@ -10,3 +10,4 @@ NNI 支持的训练平台介绍
Kubeflow<./TrainingService/KubeflowMode> Kubeflow<./TrainingService/KubeflowMode>
FrameworkController<./TrainingService/FrameworkControllerMode> FrameworkController<./TrainingService/FrameworkControllerMode>
DLTS<./TrainingService/DLTSMode> DLTS<./TrainingService/DLTSMode>
AML<./TrainingService/AMLMode>
# 如何将自定义的 Tuner 安装为内置 Tuner
参考[文档](https://github.com/microsoft/nni/blob/master/docs/zh_CN/Tuner/InstallCustomizedTuner.md), 安装自定义 Tuner。
\ No newline at end of file
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