diff --git a/doc/fluid/api_cn/dygraph_cn/declarative_cn.rst b/doc/fluid/api_cn/dygraph_cn/declarative_cn.rst index ce3a9294485974311422b0e83c66136e8ac29141..9920b5b7af2d6913189ac6d0255cea41995e524d 100644 --- a/doc/fluid/api_cn/dygraph_cn/declarative_cn.rst +++ b/doc/fluid/api_cn/dygraph_cn/declarative_cn.rst @@ -5,8 +5,7 @@ declarative .. py:decorator:: paddle.fluid.dygraph.jit.declarative -本装饰器将函数内的动态图API转化为静态图API。此装饰器自动处理静态图模式下的 -Program和Executor,并将结果作为动态图VarBase返回。 +本装饰器将函数内的动态图API转化为静态图API。此装饰器自动处理静态图模式下的Program和Executor,并将结果作为动态图Tensor返回。输出的动态图Tensor可以继续进行动态图训练、预测或其他运算。如果被装饰的函数里面调用其他动态图函数,被调用的函数也会被转化为静态图函数。 **示例代码** @@ -16,6 +15,8 @@ Program和Executor,并将结果作为动态图VarBase返回。 import numpy as np from paddle.fluid.dygraph.jit import declarative + fluid.enable_dygraph() + @declarative def func(x): x = fluid.dygraph.to_variable(x)