未验证 提交 835102f0 编写于 作者: H Huihuang Zheng 提交者: GitHub

Enrich Chinese declarative Doc (#2450)

As the title
上级 a9cddbc9
...@@ -5,8 +5,7 @@ declarative ...@@ -5,8 +5,7 @@ declarative
.. py:decorator:: paddle.fluid.dygraph.jit.declarative .. py:decorator:: paddle.fluid.dygraph.jit.declarative
本装饰器将函数内的动态图API转化为静态图API。此装饰器自动处理静态图模式下的 本装饰器将函数内的动态图API转化为静态图API。此装饰器自动处理静态图模式下的Program和Executor,并将结果作为动态图Tensor返回。输出的动态图Tensor可以继续进行动态图训练、预测或其他运算。如果被装饰的函数里面调用其他动态图函数,被调用的函数也会被转化为静态图函数。
Program和Executor,并将结果作为动态图VarBase返回。
**示例代码** **示例代码**
...@@ -16,6 +15,8 @@ Program和Executor,并将结果作为动态图VarBase返回。 ...@@ -16,6 +15,8 @@ Program和Executor,并将结果作为动态图VarBase返回。
import numpy as np import numpy as np
from paddle.fluid.dygraph.jit import declarative from paddle.fluid.dygraph.jit import declarative
fluid.enable_dygraph()
@declarative @declarative
def func(x): def func(x):
x = fluid.dygraph.to_variable(x) x = fluid.dygraph.to_variable(x)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册