Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
FluidDoc
提交
c5ad7185
F
FluidDoc
项目概览
PaddlePaddle
/
FluidDoc
通知
5
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
23
列表
看板
标记
里程碑
合并请求
111
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
F
FluidDoc
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
23
Issue
23
列表
看板
标记
里程碑
合并请求
111
合并请求
111
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
c5ad7185
编写于
10月 08, 2019
作者:
Y
Youwei Song
提交者:
Jiabin Yang
10月 08, 2019
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add set_value cn doc, test=develop (#1470)
上级
7f211856
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
33 addition
and
6 deletion
+33
-6
doc/fluid/api_cn/fluid_cn/Program_cn.rst
doc/fluid/api_cn/fluid_cn/Program_cn.rst
+1
-1
doc/fluid/api_cn/fluid_cn/Variable_cn.rst
doc/fluid/api_cn/fluid_cn/Variable_cn.rst
+32
-5
未找到文件。
doc/fluid/api_cn/fluid_cn/Program_cn.rst
浏览文件 @
c5ad7185
...
...
@@ -68,7 +68,7 @@ Program是Paddle Fluid对于计算图的一种静态描述,使用Program的构
.. py:method:: clone(for_test=False)
**注意:**
**1.** ``Program.clone()`` **方法不会克隆例如** :ref:`cn_api_fluid_io_
PyRe
ader` **这样的数据读取相关的部分,这可能会造成的数据读取部分在克隆后丢失**
**1.** ``Program.clone()`` **方法不会克隆例如** :ref:`cn_api_fluid_io_
DataLo
ader` **这样的数据读取相关的部分,这可能会造成的数据读取部分在克隆后丢失**
**2. 此API当** ``for_test=True`` **时将会裁剪部分OP和变量。为防止错误的裁剪,推荐在** :ref:`cn_api_fluid_backward_append_backward` **和执行优化器之前使用** ``clone(for_test=True)`` 。
...
...
doc/fluid/api_cn/fluid_cn/Variable_cn.rst
浏览文件 @
c5ad7185
...
...
@@ -99,6 +99,37 @@ Variable
x = fc(data)
print(x.numpy())
.. py:method:: set_value()
**注意:该API只在** `Dygraph <../../user_guides/howto/dygraph/DyGraph.html>`_ **模式下生效**
为此 :ref:`api_guide_Variable` 设置一个新的值。
**参数:**
- **value**: ( :ref:`api_guide_Variable` 或 ``ndarray`` ) 要赋值给此 :ref:`api_guide_Variable` 的新的值。
返回:无
抛出异常: ``ValueError`` - 当要赋于的新值的 ``shape`` 和此 :ref:`api_guide_Variable` 原有的 ``shape`` 不同时,抛出 ``ValueError`` 。
**示例代码**
.. code-block:: python
import paddle.fluid as fluid
from paddle.fluid.dygraph.base import to_variable
from paddle.fluid.dygraph import FC
import numpy as np
data = np.ones([3, 32, 32], dtype='float32')
with fluid.dygraph.guard():
fc = fluid.dygraph.FC("fc", 4)
t = to_variable(data)
fc(t) # 使用默认参数值调用前向
custom_weight = np.random.randn(1024, 4).astype("float32")
fc.weight.set_value(custom_weight) # 将参数修改为自定义的值
out = fc(t) # 使用新的参数值调用前向
.. py:method:: backward()
**注意:**
...
...
@@ -290,11 +321,7 @@ Variable
.. py:attribute:: name
**注意:**
**1. 在非** `Dygraph <../../user_guides/howto/dygraph/DyGraph.html>`_ **模式下,那么同一个** :ref:`api_guide_Block` **中的两个或更多** :ref:`api_guide_Variable` **拥有相同** ``name`` **将意味着他们会共享相同的内容。通常我们使用这种方式来实现参数共享**
**2. 该属性在** `Dygraph <../../user_guides/howto/dygraph/DyGraph.html>`_ **模式下一经初始化即不能修改,这是由于在动态执行时,** :ref:`api_guide_Variable` **的生命周期将由** ``Python`` **自行控制不再需要通过该属性来修改**
**注意:在非** `Dygraph <../../user_guides/howto/dygraph/DyGraph.html>`_ **模式下,那么同一个** :ref:`api_guide_Block` **中的两个或更多** :ref:`api_guide_Variable` **拥有相同** ``name`` **将意味着他们会共享相同的内容。通常我们使用这种方式来实现参数共享**
此 :ref:`api_guide_Variable` 的名字(str)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录