diff --git a/doc/fluid/api_cn/dygraph_cn/Layer_cn.rst b/doc/fluid/api_cn/dygraph_cn/Layer_cn.rst
index 01f2dfbf9c06deee6bdf9f07f0b6e24cff9a1af0..ebd44c52b16fb5fa7b41bdb1e4de79b204f07864 100644
--- a/doc/fluid/api_cn/dygraph_cn/Layer_cn.rst
+++ b/doc/fluid/api_cn/dygraph_cn/Layer_cn.rst
@@ -150,11 +150,8 @@ Layer的全名。组成方式为: ``name_scope`` + “/” + MyLayer.__class__
.. py:method:: load_dict(stat_dict, include_sublayers=True)
-.. raw:: html
-
-.. role:: red
-
-:red:`注意:该函数将被弃用。请使用set_dict函数。`
+.. warning::
+ 该函数将被弃用。请使用set_dict函数。
根据传入的 ``stat_dict`` 设置参数。 所有参数将由 ``stat_dict`` 中的 ``Tensor`` 设置。
diff --git a/doc/fluid/api_cn/fluid_cn/CUDAPlace_cn.rst b/doc/fluid/api_cn/fluid_cn/CUDAPlace_cn.rst
index 1bbad7ce22c5e1994bfc9a9399014b9cd2588b3c..0ebbf7f6fe993b38bfe502c1aaef40e496464380 100644
--- a/doc/fluid/api_cn/fluid_cn/CUDAPlace_cn.rst
+++ b/doc/fluid/api_cn/fluid_cn/CUDAPlace_cn.rst
@@ -5,7 +5,8 @@ CUDAPlace
.. py:class:: paddle.fluid.CUDAPlace
-**注意:多卡任务请先使用 FLAGS_selected_gpus 环境变量设置可见的GPU设备,下个版本将会修正 CUDA_VISIBLE_DEVICES 环境变量无效的问题。 **
+.. note::
+ 多卡任务请先使用 FLAGS_selected_gpus 环境变量设置可见的GPU设备,下个版本将会修正 CUDA_VISIBLE_DEVICES 环境变量无效的问题。
``CUDAPlace`` 是一个设备描述符,表示一个分配或将要分配 ``Tensor`` 或 ``LoDTensor`` 的 GPU 设备。
每个 ``CUDAPlace`` 有一个 ``dev_id`` (设备id)来表明当前的 ``CUDAPlace`` 所代表的显卡编号,编号从 0 开始。
diff --git a/doc/fluid/api_cn/fluid_cn/cuda_places_cn.rst b/doc/fluid/api_cn/fluid_cn/cuda_places_cn.rst
index 3164c6e831d269bd0c8743ecfe56b447bff15713..babb94512a7649449dee100a65705badf7379d62 100644
--- a/doc/fluid/api_cn/fluid_cn/cuda_places_cn.rst
+++ b/doc/fluid/api_cn/fluid_cn/cuda_places_cn.rst
@@ -5,7 +5,8 @@ cuda_places
.. py:function:: paddle.fluid.cuda_places(device_ids=None)
-**注意:多卡任务请先使用 FLAGS_selected_gpus 环境变量设置可见的GPU设备,下个版本将会修正 CUDA_VISIBLE_DEVICES 环境变量无效的问题。 **
+.. note::
+ 多卡任务请先使用 FLAGS_selected_gpus 环境变量设置可见的GPU设备,下个版本将会修正 CUDA_VISIBLE_DEVICES 环境变量无效的问题。
该接口根据 ``device_ids`` 创建一个或多个 ``fluid.CUDAPlace`` 对象,并返回所创建的对象列表。
diff --git a/doc/fluid/api_cn/layers_cn/dynamic_lstm_cn.rst b/doc/fluid/api_cn/layers_cn/dynamic_lstm_cn.rst
index d2348658f84be2b13ed91c2c50ae300adb9961a8..69813bc7a3dc187d05f4aa2829afa2c97cfece3c 100644
--- a/doc/fluid/api_cn/layers_cn/dynamic_lstm_cn.rst
+++ b/doc/fluid/api_cn/layers_cn/dynamic_lstm_cn.rst
@@ -7,15 +7,9 @@ dynamic_lstm
该OP实现了 LSTM,即 Long-Short Term Memory(长短期记忆)运算 - `Hochreiter, S., & Schmidhuber, J. (1997) `_。
-.. raw:: html
-
-
-
-.. role:: red
-
-:red:`注意:`
- - :red:`该OP仅支持 LoDTensor 作为输入,如果您需要处理的是Tensor,请使用` :ref:`cn_api_fluid_layers_lstm` 。
- - :red:`在实现的时候为了提升效率,用户必须将LSTM的输入先进行线性映射,将维度为 [T, hidden_size] 的输入映射为 [T, 4 × hidden_size] 输入,然后再传给该OP。`
+.. note::
+ - 该OP仅支持 LoDTensor 作为输入,如果您需要处理的是Tensor,请使用 :ref:`cn_api_fluid_layers_lstm` 。
+ - 在实现的时候为了提升效率,用户必须将LSTM的输入先进行线性映射,将维度为 [T, hidden_size] 的输入映射为 [T, 4 × hidden_size] 输入,然后再传给该OP。
该OP的默认实现方式为 diagonal/peephole 连接,参见 `Gers, F. A., & Schmidhuber, J. (2000) `_。
如果需要禁用 peephole 连接方法,将 use_peepholes 设为 False 即可。
diff --git a/doc/fluid/api_cn/layers_cn/dynamic_lstmp_cn.rst b/doc/fluid/api_cn/layers_cn/dynamic_lstmp_cn.rst
index 573bf9058cc5376452eadc7056847e234463138a..0d6696c7ed1e5f72df8122d2503592931ea138a9 100644
--- a/doc/fluid/api_cn/layers_cn/dynamic_lstmp_cn.rst
+++ b/doc/fluid/api_cn/layers_cn/dynamic_lstmp_cn.rst
@@ -4,13 +4,8 @@ dynamic_lstmp
-------------------------------
.. py:function:: paddle.fluid.layers.dynamic_lstmp(input, size, proj_size, param_attr=None, bias_attr=None, use_peepholes=True, is_reverse=False, gate_activation='sigmoid', cell_activation='tanh', candidate_activation='tanh', proj_activation='tanh', dtype='float32', name=None, h_0=None, c_0=None, cell_clip=None, proj_clip=None)
-.. raw:: html
-
-
-
-.. role:: red
-
-:red:`注意:在实现的时候为了提升效率,用户必须将输入先进行线性映射,将维度为 [T, hidden_size] 的输入映射为 [T, 4×hidden_size] 输入,然后再传给该OP。`
+.. note::
+ 在实现的时候为了提升效率,用户必须将输入先进行线性映射,将维度为 [T, hidden_size] 的输入映射为 [T, 4×hidden_size] 输入,然后再传给该OP。
该OP实现了LSTMP(LSTM Projected)层。LSTMP层在LSTM层之后有一个单独的的线性映射层。 -- `Sak, H., Senior, A., & Beaufays, F. (2014) `_。
diff --git a/doc/fluid/api_cn/layers_cn/lstm_cn.rst b/doc/fluid/api_cn/layers_cn/lstm_cn.rst
index 8eff06d25f308414fcb7f5b65d5940182c21c64e..4889e45fbab5bd8f425025806540b8203f2ff949 100644
--- a/doc/fluid/api_cn/layers_cn/lstm_cn.rst
+++ b/doc/fluid/api_cn/layers_cn/lstm_cn.rst
@@ -5,13 +5,8 @@ lstm
.. py:function:: paddle.fluid.layers.lstm(input, init_h, init_c, max_len, hidden_size, num_layers, dropout_prob=0.0, is_bidirec=False, is_test=False, name=None, default_initializer=None, seed=-1)
-.. raw:: html
-
-
-
-.. role:: red
-
-:red:`注意:该OP仅支持 GPU 设备运行`
+.. note::
+ 该OP仅支持 GPU 设备运行
该OP实现了 LSTM,即 Long-Short Term Memory(长短期记忆)运算 - `Hochreiter, S., & Schmidhuber, J. (1997) `_。
diff --git a/doc/fluid/api_cn/layers_cn/sequence_scatter_cn.rst b/doc/fluid/api_cn/layers_cn/sequence_scatter_cn.rst
index 688358bd2e55ab74b29c7078e7d4c92960109a8c..bc969c7c528b619fc0f22cd2bf79a8548401c187 100644
--- a/doc/fluid/api_cn/layers_cn/sequence_scatter_cn.rst
+++ b/doc/fluid/api_cn/layers_cn/sequence_scatter_cn.rst
@@ -1,9 +1,3 @@
-.. raw:: html
-
-
-
-.. role:: red
-
.. _cn_api_fluid_layers_sequence_scatter:
sequence_scatter
@@ -11,7 +5,8 @@ sequence_scatter
.. py:function:: paddle.fluid.layers.sequence_scatter(input, index, updates, name=None)
-:red:`注意:该OP的输入index,updates必须是LoDTensor。`
+.. note::
+ 该OP的输入index,updates必须是LoDTensor。
该OP根据index提供的位置将updates中的信息更新到输出中。
diff --git a/doc/fluid/api_cn/layers_cn/sequence_softmax_cn.rst b/doc/fluid/api_cn/layers_cn/sequence_softmax_cn.rst
index 04617248f43b3418f0eff863e81aef83f1597e14..45f2e59c71f2b88622b3a1162eb662df6ba15e53 100644
--- a/doc/fluid/api_cn/layers_cn/sequence_softmax_cn.rst
+++ b/doc/fluid/api_cn/layers_cn/sequence_softmax_cn.rst
@@ -1,9 +1,3 @@
-.. raw:: html
-
-
-
-.. role:: red
-
.. _cn_api_fluid_layers_sequence_softmax:
sequence_softmax
@@ -11,7 +5,8 @@ sequence_softmax
.. py:function:: paddle.fluid.layers.sequence_softmax(input, use_cudnn=False, name=None)
-:red:`注意:该OP的输入只能是LoDTensor,如果要处理的输入是Tensor类型,请使用` :ref:`cn_api_fluid_layers_softmax`
+.. note::
+ 该OP的输入只能是LoDTensor,如果要处理的输入是Tensor类型,请使用 :ref:`cn_api_fluid_layers_softmax`
该OP根据LoD信息将输入的第0维度进行划分,在划分的每一个区间内部进行运算。
diff --git a/doc/fluid/api_cn/layers_cn/sequence_unpad_cn.rst b/doc/fluid/api_cn/layers_cn/sequence_unpad_cn.rst
index e45f2947a549a077f7eadd13c893c8e8f215c367..177489e87b2fe0a8a641541fa6883e25d2db0ccd 100644
--- a/doc/fluid/api_cn/layers_cn/sequence_unpad_cn.rst
+++ b/doc/fluid/api_cn/layers_cn/sequence_unpad_cn.rst
@@ -1,9 +1,3 @@
-.. raw:: html
-
-
-
-.. role:: red
-
.. _cn_api_fluid_layers_sequence_unpad:
sequence_unpad
@@ -11,7 +5,8 @@ sequence_unpad
.. py:function:: paddle.fluid.layers.sequence_unpad(x, length, name=None)
-:red:`注意:该OP的输入为Tensor,输出为LoDTensor。该OP用于移除填充元素,与之对应,还存在进行数据填充的OP sequence_pad,详情见:` :ref:`cn_api_fluid_layers_sequence_pad`
+.. note::
+ 该OP的输入为Tensor,输出为LoDTensor。该OP用于移除填充元素,与之对应,还存在进行数据填充的OP sequence_pad,详情见: :ref:`cn_api_fluid_layers_sequence_pad`
该OP根据length的信息,将input中padding(填充)元素移除,并且返回一个LoDTensor。
diff --git a/doc/fluid/api_cn/layers_cn/sqrt_cn.rst b/doc/fluid/api_cn/layers_cn/sqrt_cn.rst
index 2548d4efecaee50a6b1e8d050872bd210c24bcfc..ac2d4f1bdcbbe972c3497d5a2f18f9e80ff78ae0 100644
--- a/doc/fluid/api_cn/layers_cn/sqrt_cn.rst
+++ b/doc/fluid/api_cn/layers_cn/sqrt_cn.rst
@@ -9,7 +9,8 @@ sqrt
.. math:: out=\sqrt x=x^{1/2}
-**注意:请确保输入中的数值是非负数。**
+.. note::
+ 请确保输入中的数值是非负数。
参数: