From b2926e384629198cb382f95c3c2e13bc9122a4c5 Mon Sep 17 00:00:00 2001 From: ranqiu Date: Mon, 25 Sep 2017 11:24:52 +0800 Subject: [PATCH] Update faq --- doc/faq/index_cn.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/doc/faq/index_cn.rst b/doc/faq/index_cn.rst index 500944119e8..b3ecfba791e 100644 --- a/doc/faq/index_cn.rst +++ b/doc/faq/index_cn.rst @@ -506,3 +506,9 @@ PaddlePaddle目前支持8种learning_rate_schedule,这8种learning_rate_schedu learning_rate_args="1:1.0,2:0.9,3:0.8",) 在该示例中,当已训练pass数小于等于1时,学习率为 :code:`1e-3 * 1.0`;当已训练pass数大于1小于等于2时,学习率为 :code:`1e-3 * 0.9`;当已训练pass数大于2时,学习率为 :code:`1e-3 * 0.8`。 + +23. 出现 :code:`Duplicated layer name` 错误怎么办 +-------------------------------------------------- + +出现该错误的原因一般是用户对不同layer的参数 :code:`name` 设置了相同的取值。遇到该错误时,先找出参数 :code:`name` 取值相同的layer,然后将这些layer的参数 :code:`name` 设置为不同的值。 + -- GitLab