From 13c251df1f6f17e29eb9d9536decb98520407b72 Mon Sep 17 00:00:00 2001 From: "Wang,Jeff" Date: Wed, 28 Feb 2018 15:15:03 -0800 Subject: [PATCH] There should be a line breaker before list in MD RST list should manually iterate the number or use #. --- doc/build_and_install/build_from_source_cn.rst | 2 +- doc/build_and_install/build_from_source_en.rst | 2 +- doc/dev/contribute_to_paddle_cn.md | 2 ++ doc/howto/capi/organization_of_the_inputs_cn.md | 1 + 4 files changed, 5 insertions(+), 2 deletions(-) diff --git a/doc/build_and_install/build_from_source_cn.rst b/doc/build_and_install/build_from_source_cn.rst index cb766c3838..115b92a338 100644 --- a/doc/build_and_install/build_from_source_cn.rst +++ b/doc/build_and_install/build_from_source_cn.rst @@ -9,7 +9,7 @@ 为了编译PaddlePaddle,我们需要 1. 一台电脑,可以装的是 Linux, Windows 或者 MacOS 操作系统 -1. Docker +2. Docker 不需要依赖其他任何软件了。即便是 Python 和 GCC 都不需要,因为我们会把所有编译工具都安装进一个 Docker 镜像里。 diff --git a/doc/build_and_install/build_from_source_en.rst b/doc/build_and_install/build_from_source_en.rst index 556cbfdf08..8fef9e7347 100644 --- a/doc/build_and_install/build_from_source_en.rst +++ b/doc/build_and_install/build_from_source_en.rst @@ -9,7 +9,7 @@ Requirements To build PaddlePaddle, you need 1. A computer -- Linux, Windows, MacOS. -1. Docker. +2. Docker. Nothing else. Not even Python and GCC, because you can install all build tools into a Docker image. We run all the tools by running this image. diff --git a/doc/dev/contribute_to_paddle_cn.md b/doc/dev/contribute_to_paddle_cn.md index 3e0bf7b397..d8bf093e09 100644 --- a/doc/dev/contribute_to_paddle_cn.md +++ b/doc/dev/contribute_to_paddle_cn.md @@ -222,6 +222,7 @@ upstream ## 提交代码的一些约定 为了使评审人在评审代码时更好地专注于代码本身,请您每次提交代码时,遵守以下约定: + 1. 请保证Travis-CI 中单元测试能顺利通过。如果没过,说明提交的代码存在问题,评审人一般不做评审。 2. 提交PUll Request前: - 请注意commit的数量: @@ -231,6 +232,7 @@ upstream 3. 如果解决了某个Issue的问题,请在该PUll Request的**第一个**评论框中加上:`fix #issue_number`,这样当该PUll Request被合并后,会自动关闭对应的Issue。关键词包括:close, closes, closed, fix, fixes, fixed, resolve, resolves, resolved,请选择合适的词汇。详细可参考[Closing issues via commit messages](https://help.github.com/articles/closing-issues-via-commit-messages)。 此外,在回复评审人意见时,请您遵守以下约定: + 1. 评审人的每个意见都必须回复(这是开源社区的基本礼貌,别人帮了忙,应该说谢谢): - 对评审意见同意且按其修改完的,给个简单的`Done`即可; - 对评审意见不同意的,请给出您自己的反驳理由。 diff --git a/doc/howto/capi/organization_of_the_inputs_cn.md b/doc/howto/capi/organization_of_the_inputs_cn.md index a889ae4ffa..33a53caa09 100644 --- a/doc/howto/capi/organization_of_the_inputs_cn.md +++ b/doc/howto/capi/organization_of_the_inputs_cn.md @@ -274,6 +274,7 @@ PaddlePaddle中一个计算层的输出数据组织方式和输入数据组织 如果是一个序列输入/输出由 `sequence start positions` 来记录输入/输出的序列信息。 于是,在组织神经网络输入时,需要思考完成以下工作: + 1. 为每一个输入/输出创建`argument`。 - C-API 中操作`argument`的接口请查看[argument.h](https://github.com/PaddlePaddle/Paddle/blob/develop/paddle/capi/arguments.h)。 1. 为每一个`argument`创建`paddle_matrix`或者`paddle_ivector`来存储数据。 -- GitLab