Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
nni
Commits
c5ac923a
Unverified
Commit
c5ac923a
authored
Jul 01, 2020
by
Chi Song
Committed by
GitHub
Jul 01, 2020
Browse files
Chinese translation (#2458)
parent
93f96d4f
Changes
51
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
86 additions
and
17 deletions
+86
-17
docs/zh_CN/_templates/layout.html
docs/zh_CN/_templates/layout.html
+30
-0
docs/zh_CN/autotune_ref.md
docs/zh_CN/autotune_ref.md
+6
-0
docs/zh_CN/conf.py
docs/zh_CN/conf.py
+8
-2
docs/zh_CN/contents.rst
docs/zh_CN/contents.rst
+22
-0
docs/zh_CN/examples.rst
docs/zh_CN/examples.rst
+1
-0
docs/zh_CN/hpo_advanced.rst
docs/zh_CN/hpo_advanced.rst
+2
-0
docs/zh_CN/model_compression.rst
docs/zh_CN/model_compression.rst
+6
-4
docs/zh_CN/nas.rst
docs/zh_CN/nas.rst
+4
-9
docs/zh_CN/sdk_reference.rst
docs/zh_CN/sdk_reference.rst
+2
-1
docs/zh_CN/training_services.rst
docs/zh_CN/training_services.rst
+2
-1
examples/tuners/customized_tuner/README_zh_CN.md
examples/tuners/customized_tuner/README_zh_CN.md
+3
-0
No files found.
docs/zh_CN/_templates/layout.html
0 → 100644
View file @
c5ac923a
{% 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 %}
docs/zh_CN/autotune_ref.md
View file @
c5ac923a
...
@@ -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
```
docs/zh_CN/conf.py
View file @
c5ac923a
...
@@ -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
...
...
docs/zh_CN/contents.rst
0 → 100644
View file @
c5ac923a
###########################
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
docs/zh_CN/examples.rst
View file @
c5ac923a
...
@@ -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>
docs/zh_CN/hpo_advanced.rst
View file @
c5ac923a
...
@@ -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>
docs/zh_CN/model_compression.rst
View file @
c5ac923a
...
@@ -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>
docs/zh_CN/nas.rst
View file @
c5ac923a
...
@@ -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>
docs/zh_CN/sdk_reference.rst
View file @
c5ac923a
...
@@ -7,4 +7,5 @@ Python API 参考
...
@@ -7,4 +7,5 @@ Python API 参考
:maxdepth: 1
:maxdepth: 1
自动调优 <autotune_ref>
自动调优 <autotune_ref>
NAS <NAS/NasReference>
NAS <NAS/NasReference>
\ No newline at end of file
模型压缩 <Compressor/CompressionReference>
\ No newline at end of file
docs/zh_CN/training_services.rst
View file @
c5ac923a
...
@@ -2,7 +2,7 @@ NNI 支持的训练平台介绍
...
@@ -2,7 +2,7 @@ NNI 支持的训练平台介绍
=====================================
=====================================
.. toctree::
.. toctree::
概述
<./TrainingService/
SupportTrainingS
ervi
c
e>
Overview
<./TrainingService/
Ov
ervie
w
>
本机<./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>
examples/tuners/customized_tuner/README_zh_CN.md
0 → 100644
View file @
c5ac923a
# 如何将自定义的 Tuner 安装为内置 Tuner
参考
[
文档
](
https://github.com/microsoft/nni/blob/master/docs/zh_CN/Tuner/InstallCustomizedTuner.md
)
, 安装自定义 Tuner。
\ No newline at end of file
Prev
1
2
3
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment