diff --git a/doc/fluid/api_cn/layers_cn.rst b/doc/fluid/api_cn/layers_cn.rst index fc55e9a99f6ebf385851b1d520bcebf213479ac1..99fab075c3b82998fe6bdcabc1b4c5c3c8dca6d1 100644 --- a/doc/fluid/api_cn/layers_cn.rst +++ b/doc/fluid/api_cn/layers_cn.rst @@ -9643,8 +9643,7 @@ has_inf 参数: - **x(variable)** - 用于被检查的Tensor/LoDTensor -返回: - tensor变量存储输出值,包含一个bool型数值 +返回: tensor变量存储输出值,包含一个bool型数值 返回类型:Variable @@ -9672,8 +9671,7 @@ has_nan 参数: - **x(variable)** - 用于被检查的Tensor/LoDTensor -返回: - tensor变量存储输出值,包含一个bool型数值 +返回: tensor变量存储输出值,包含一个bool型数值 返回类型:Variable @@ -9695,8 +9693,7 @@ isfinite 参数: - **x(variable)** - 用于被检查的Tensor/LoDTensor -返回: - Variable: tensor变量存储输出值,包含一个bool型数值 +返回: Variable: tensor变量存储输出值,包含一个bool型数值 返回类型:Variable diff --git a/doc/fluid/user_guides/howto/training/cluster_howto.rst b/doc/fluid/user_guides/howto/training/cluster_howto.rst index 7d488cc118e83c136db7968c8971cb13ad20f687..e9da20ff9cc15f0747aca583bb07a940f12d2e4b 100644 --- a/doc/fluid/user_guides/howto/training/cluster_howto.rst +++ b/doc/fluid/user_guides/howto/training/cluster_howto.rst @@ -96,7 +96,7 @@ Fluid分布式任务可以支持同步训练或异步训练,在同步训练方式下,所有的trainer节点,会在每个mini-batch 同步地合并所有节点的梯度数据并发送给parameter server完成更新,在异步训练方式下,每个trainer没有相互\ -同步等待的过程,可以独立的parameter server的参数。通常情况下,使用异步训练方式,可以在trainer节点\ +同步等待的过程,可以独立地更新parameter server的参数。通常情况下,使用异步训练方式,可以在trainer节点\ 更多的时候比同步训练方式有更高的总体吞吐量。 在调用 :code:`transpile` 函数时,默认会生成同步训练的分布式程序,通过指定 :code:`sync_mode=False`