From 835102f0209c472f5720a70a84637b96899d9a6e Mon Sep 17 00:00:00 2001 From: Huihuang Zheng Date: Thu, 27 Aug 2020 10:19:37 +0800 Subject: [PATCH] Enrich Chinese declarative Doc (#2450) As the title --- doc/fluid/api_cn/dygraph_cn/declarative_cn.rst | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/doc/fluid/api_cn/dygraph_cn/declarative_cn.rst b/doc/fluid/api_cn/dygraph_cn/declarative_cn.rst index ce3a92944..9920b5b7a 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) -- GitLab