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 @@
.. autoclass:: nni.bohb_advisor.bohb_advisor.BOHB
:members:
```
## 工具
```eval_rst
.. autofunction:: nni.utils.merge_parameter
```
......@@ -28,7 +28,7 @@ author = 'Microsoft'
# The short X.Y version
version = ''
# The full version, including alpha/beta/rc tags
release = 'v1.5'
release = 'v1.6'
# -- General configuration ---------------------------------------------------
......@@ -46,6 +46,8 @@ extensions = [
'sphinxarg.ext',
'sphinx.ext.napoleon',
'sphinx.ext.viewcode',
'sphinx.ext.intersphinx',
'nbsphinx',
]
# 添加示例模块
......@@ -64,7 +66,7 @@ source_parsers = {
source_suffix = ['.rst', '.md']
# The master toctree document.
master_doc = 'index'
master_doc = 'contents'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
......@@ -82,6 +84,10 @@ exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store', 'Release_v1.0.md']
pygments_style = None
html_additional_pages = {
'index': 'index.html',
}
# -- Options for HTML output -------------------------------------------------
# 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 @@
EvolutionSQuAD<./TrialExample/SquadEvolutionExamples>
GBDT<./TrialExample/GbdtExample>
RocksDB <./TrialExample/RocksdbExamples>
OpEvo <./TrialExample/OpEvoExamples>
KD 示例 <./TrialExample/KDExample>
EfficientNet <./TrialExample/EfficientNet>
......@@ -8,3 +8,5 @@
编写新的 Assessor <Assessor/CustomizeAssessor>
编写新的 Advisor <Tuner/CustomizeAdvisor>
编写新的训练平台 <TrainingService/HowToImplementTrainingService>
安装自定义的 Tuner,Assessor,Advisor <Tutorial/InstallCustomizedAlgos>
如何将自定义的 Tuner 安装为内置 Tuner <Tuner/InstallCustomizedTuner.md>
......@@ -17,8 +17,10 @@ NNI 中也内置了一些流程的模型压缩算法。
概述 <Compressor/Overview>
快速入门 <Compressor/QuickStart>
Pruner <pruners>
Quantizer <quantizers>
模型加速 <Compressor/ModelSpeedup>
Pruners <Compressor/Pruner>
Quantizers <Compressor/Quantizer>
自动模型压缩 <Compressor/AutoCompression>
实现 <Compressor/Framework>
模型加速 <Compressor/ModelSpeedup>
模型压缩 <Compressor/CompressionUtils>
压缩框架 <Compressor/Framework>
自定义压缩算法 <Compressor/CustomizeCompressor>
......@@ -18,15 +18,10 @@
:maxdepth: 2
概述 <NAS/Overview>
快速入门 <NAS/QuickStart>
教程 <NAS/NasGuide>
ENAS <NAS/ENAS>
DARTS <NAS/DARTS>
P-DARTS <NAS/PDARTS>
SPOS <NAS/SPOS>
CDARTS <NAS/CDARTS>
ProxylessNAS <NAS/Proxylessnas>
TextNAS <NAS/TextNAS>
编写搜索空间 <NAS/WriteSearchSpace>
经典 NAS <NAS/ClassicNas>
One-Shot NAS <NAS/one_shot_nas>
自定义 NAS 算法 <NAS/Advanced>
NAS 可视化 <NAS/Visualization>
NAS 基准测试 <NAS/Benchmarks>
API 参考 <NAS/NasReference>
......@@ -7,4 +7,5 @@ Python API 参考
:maxdepth: 1
自动调优 <autotune_ref>
NAS <NAS/NasReference>
\ No newline at end of file
NAS <NAS/NasReference>
模型压缩 <Compressor/CompressionReference>
\ No newline at end of file
......@@ -2,7 +2,7 @@ NNI 支持的训练平台介绍
=====================================
.. toctree::
概述 <./TrainingService/SupportTrainingService>
Overview <./TrainingService/Overview>
本机<./TrainingService/LocalMode>
远程<./TrainingService/RemoteMachineMode>
OpenPAI<./TrainingService/PaiMode>
......@@ -10,3 +10,4 @@ NNI 支持的训练平台介绍
Kubeflow<./TrainingService/KubeflowMode>
FrameworkController<./TrainingService/FrameworkControllerMode>
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