Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
2d669443
P
Paddle
项目概览
PaddlePaddle
/
Paddle
大约 2 年 前同步成功
通知
2325
Star
20933
Fork
5424
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1423
列表
看板
标记
里程碑
合并请求
543
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1,423
Issue
1,423
列表
看板
标记
里程碑
合并请求
543
合并请求
543
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
2d669443
编写于
9月 27, 2020
作者:
J
jiweibo
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update 2.0 api.
上级
d014e29f
变更
7
隐藏空白更改
内联
并排
Showing
7 changed file
with
41 addition
and
36 deletion
+41
-36
python/paddle/fluid/executor.py
python/paddle/fluid/executor.py
+4
-4
python/paddle/fluid/layers/nn.py
python/paddle/fluid/layers/nn.py
+19
-17
python/paddle/fluid/layers/tensor.py
python/paddle/fluid/layers/tensor.py
+4
-6
python/paddle/fluid/param_attr.py
python/paddle/fluid/param_attr.py
+9
-8
python/paddle/static/__init__.py
python/paddle/static/__init__.py
+3
-0
python/paddle/static/nn/__init__.py
python/paddle/static/nn/__init__.py
+2
-0
tools/wlist.json
tools/wlist.json
+0
-1
未找到文件。
python/paddle/fluid/executor.py
浏览文件 @
2d669443
...
@@ -94,12 +94,12 @@ def scope_guard(scope):
...
@@ -94,12 +94,12 @@ def scope_guard(scope):
Examples:
Examples:
.. code-block:: python
.. code-block:: python
import paddle
.fluid as fluid
import paddle
import numpy
import numpy
new_scope =
fluid
.Scope()
new_scope =
paddle.static
.Scope()
with
fluid
.scope_guard(new_scope):
with
paddle.static
.scope_guard(new_scope):
fluid.global_scope().var("data").get_tensor().set(numpy.ones((2, 2)), fluid
.CPUPlace())
paddle.static.global_scope().var("data").get_tensor().set(paddle.ones((2, 2)), paddle
.CPUPlace())
numpy.array(new_scope.find_var("data").get_tensor())
numpy.array(new_scope.find_var("data").get_tensor())
"""
"""
...
...
python/paddle/fluid/layers/nn.py
浏览文件 @
2d669443
...
@@ -13510,7 +13510,7 @@ def py_func(func, x, out, backward_func=None, skip_vars_in_backward_input=None):
...
@@ -13510,7 +13510,7 @@ def py_func(func, x, out, backward_func=None, skip_vars_in_backward_input=None):
"""
"""
:api_attr: Static Graph
:api_attr: Static Graph
This OP is used to register customized Python OP to Paddle
Fluid
. The design
This OP is used to register customized Python OP to Paddle. The design
principe of py_func is that LodTensor and numpy array can be converted to each
principe of py_func is that LodTensor and numpy array can be converted to each
other easily. So you can use Python and numpy API to register a python OP.
other easily. So you can use Python and numpy API to register a python OP.
...
@@ -13564,7 +13564,7 @@ def py_func(func, x, out, backward_func=None, skip_vars_in_backward_input=None):
...
@@ -13564,7 +13564,7 @@ def py_func(func, x, out, backward_func=None, skip_vars_in_backward_input=None):
.. code-block:: python
.. code-block:: python
# example 1:
# example 1:
import paddle
.fluid as fluid
import paddle
import six
import six
# Creates a forward function, LodTensor can be input directly without
# Creates a forward function, LodTensor can be input directly without
...
@@ -13583,34 +13583,36 @@ def py_func(func, x, out, backward_func=None, skip_vars_in_backward_input=None):
...
@@ -13583,34 +13583,36 @@ def py_func(func, x, out, backward_func=None, skip_vars_in_backward_input=None):
print(x)
print(x)
def create_tmp_var(name, dtype, shape):
def create_tmp_var(name, dtype, shape):
return
fluid
.default_main_program().current_block().create_var(
return
paddle.static
.default_main_program().current_block().create_var(
name=name, dtype=dtype, shape=shape)
name=name, dtype=dtype, shape=shape)
def simple_net(img, label):
def simple_net(img, label):
hidden = img
hidden = img
for idx in six.moves.range(4):
for idx in six.moves.range(4):
hidden =
fluid.layers
.fc(hidden, size=200)
hidden =
paddle.static.nn
.fc(hidden, size=200)
new_hidden = create_tmp_var(name='hidden_{}'.format(idx),
new_hidden = create_tmp_var(name='hidden_{}'.format(idx),
dtype=hidden.dtype, shape=hidden.shape)
dtype=hidden.dtype, shape=hidden.shape)
# User-defined forward and backward
# User-defined forward and backward
hidden =
fluid.layers
.py_func(func=tanh, x=hidden,
hidden =
paddle.static.nn
.py_func(func=tanh, x=hidden,
out=new_hidden, backward_func=tanh_grad,
out=new_hidden, backward_func=tanh_grad,
skip_vars_in_backward_input=hidden)
skip_vars_in_backward_input=hidden)
# User-defined debug functions that print out the input LodTensor
# User-defined debug functions that print out the input LodTensor
fluid.layers
.py_func(func=debug_func, x=hidden, out=None)
paddle.static.nn
.py_func(func=debug_func, x=hidden, out=None)
prediction =
fluid.layers
.fc(hidden, size=10, act='softmax')
prediction =
paddle.static.nn
.fc(hidden, size=10, act='softmax')
loss =
fluid.layers
.cross_entropy(input=prediction, label=label)
loss =
paddle.static.nn
.cross_entropy(input=prediction, label=label)
return
fluid.layers
.mean(loss)
return
paddle
.mean(loss)
# example 2:
# example 2:
# This example shows how to turn LoDTensor into numpy array and
# This example shows how to turn LoDTensor into numpy array and
# use numpy API to register an Python OP
# use numpy API to register an Python OP
import paddle
.fluid as fluid
import paddle
import numpy as np
import numpy as np
paddle.enable_static()
def element_wise_add(x, y):
def element_wise_add(x, y):
# LodTensor must be actively converted to numpy array, otherwise,
# LodTensor must be actively converted to numpy array, otherwise,
# numpy.shape can't be used.
# numpy.shape can't be used.
...
@@ -13628,24 +13630,24 @@ def py_func(func, x, out, backward_func=None, skip_vars_in_backward_input=None):
...
@@ -13628,24 +13630,24 @@ def py_func(func, x, out, backward_func=None, skip_vars_in_backward_input=None):
return result
return result
def create_tmp_var(name, dtype, shape):
def create_tmp_var(name, dtype, shape):
return
fluid
.default_main_program().current_block().create_var(
return
paddle.static
.default_main_program().current_block().create_var(
name=name, dtype=dtype, shape=shape)
name=name, dtype=dtype, shape=shape)
def py_func_demo():
def py_func_demo():
start_program =
fluid
.default_startup_program()
start_program =
paddle.static
.default_startup_program()
main_program =
fluid
.default_main_program()
main_program =
paddle.static
.default_main_program()
# Input of the forward function
# Input of the forward function
x =
fluid
.data(name='x', shape=[2,3], dtype='int32')
x =
paddle
.data(name='x', shape=[2,3], dtype='int32')
y =
fluid
.data(name='y', shape=[2,3], dtype='int32')
y =
paddle
.data(name='y', shape=[2,3], dtype='int32')
# Output of the forward function, name/dtype/shape must be specified
# Output of the forward function, name/dtype/shape must be specified
output = create_tmp_var('output','int32', [3,1])
output = create_tmp_var('output','int32', [3,1])
# Multiple Variable should be passed in the form of tuple(Variale) or list[Variale]
# Multiple Variable should be passed in the form of tuple(Variale) or list[Variale]
fluid.layers
.py_func(func=element_wise_add, x=[x,y], out=output)
paddle.static.nn
.py_func(func=element_wise_add, x=[x,y], out=output)
exe=
fluid.Executor(fluid
.CPUPlace())
exe=
paddle.static.Executor(paddle
.CPUPlace())
exe.run(start_program)
exe.run(start_program)
# Feed numpy array to main_program
# Feed numpy array to main_program
...
...
python/paddle/fluid/layers/tensor.py
浏览文件 @
2d669443
...
@@ -103,9 +103,8 @@ def create_parameter(shape,
...
@@ -103,9 +103,8 @@ def create_parameter(shape,
Examples:
Examples:
.. code-block:: python
.. code-block:: python
import paddle.fluid as fluid
import paddle
import paddle.fluid.layers as layers
W = paddle.static.create_parameter(shape=[784, 200], dtype='float32')
W = layers.create_parameter(shape=[784, 200], dtype='float32')
"""
"""
check_type
(
shape
,
'shape'
,
(
list
,
tuple
,
numpy
.
ndarray
),
'create_parameter'
)
check_type
(
shape
,
'shape'
,
(
list
,
tuple
,
numpy
.
ndarray
),
'create_parameter'
)
for
item
in
shape
:
for
item
in
shape
:
...
@@ -161,9 +160,8 @@ def create_global_var(shape,
...
@@ -161,9 +160,8 @@ def create_global_var(shape,
Examples:
Examples:
.. code-block:: python
.. code-block:: python
import paddle.fluid as fluid
import paddle
import paddle.fluid.layers as layers
var = paddle.static.create_global_var(shape=[2,3], value=1.0, dtype='float32',
var = layers.create_global_var(shape=[2,3], value=1.0, dtype='float32',
persistable=True, force_cpu=True, name='new_var')
persistable=True, force_cpu=True, name='new_var')
"""
"""
check_type
(
shape
,
'shape'
,
(
list
,
tuple
,
numpy
.
ndarray
),
check_type
(
shape
,
'shape'
,
(
list
,
tuple
,
numpy
.
ndarray
),
...
...
python/paddle/fluid/param_attr.py
浏览文件 @
2d669443
...
@@ -61,15 +61,16 @@ class ParamAttr(object):
...
@@ -61,15 +61,16 @@ class ParamAttr(object):
Examples:
Examples:
.. code-block:: python
.. code-block:: python
import paddle
.fluid as fluid
import paddle
w_param_attrs =
fluid
.ParamAttr(name="fc_weight",
w_param_attrs =
paddle
.ParamAttr(name="fc_weight",
learning_rate=0.5,
learning_rate=0.5,
regularizer=fluid
.regularizer.L2Decay(1.0),
regularizer=paddle
.regularizer.L2Decay(1.0),
trainable=True)
trainable=True)
print(w_param_attrs.name) # "fc_weight"
print(w_param_attrs.name) # "fc_weight"
x = fluid.data(name='X', shape=[None, 1], dtype='float32')
paddle.enable_static()
y_predict = fluid.layers.fc(input=x, size=10, param_attr=w_param_attrs)
x = paddle.data(name='X', shape=[None, 1], dtype='float32')
y_predict = paddle.static.nn.fc(input=x, size=10, param_attr=w_param_attrs)
"""
"""
def
__init__
(
self
,
def
__init__
(
self
,
...
@@ -202,7 +203,7 @@ class ParamAttr(object):
...
@@ -202,7 +203,7 @@ class ParamAttr(object):
class
WeightNormParamAttr
(
ParamAttr
):
class
WeightNormParamAttr
(
ParamAttr
):
"""
"""
:api_attr: Static Graph
:api_attr: Static Graph
Note:
Note:
Please use 'paddle.nn.utils.weight_norm' in dygraph mode.
Please use 'paddle.nn.utils.weight_norm' in dygraph mode.
...
...
python/paddle/static/__init__.py
浏览文件 @
2d669443
...
@@ -23,6 +23,7 @@ __all__ = [
...
@@ -23,6 +23,7 @@ __all__ = [
]
]
from
.
import
nn
from
.
import
nn
from
.fluid
import
Scope
#DEFINE_ALIAS
from
.input
import
data
#DEFINE_ALIAS
from
.input
import
data
#DEFINE_ALIAS
from
.input
import
InputSpec
#DEFINE_ALIAS
from
.input
import
InputSpec
#DEFINE_ALIAS
from
..fluid.executor
import
Executor
#DEFINE_ALIAS
from
..fluid.executor
import
Executor
#DEFINE_ALIAS
...
@@ -48,3 +49,5 @@ from ..fluid.io import save_inference_model #DEFINE_ALIAS
...
@@ -48,3 +49,5 @@ from ..fluid.io import save_inference_model #DEFINE_ALIAS
from
..fluid.io
import
load_inference_model
#DEFINE_ALIAS
from
..fluid.io
import
load_inference_model
#DEFINE_ALIAS
from
..fluid.io
import
load_program_state
#DEFINE_ALIAS
from
..fluid.io
import
load_program_state
#DEFINE_ALIAS
from
..fluid.io
import
set_program_state
#DEFINE_ALIAS
from
..fluid.io
import
set_program_state
#DEFINE_ALIAS
from
..fluid.layers
import
create_parameter
#DEFINE_ALIAS
from
..fluid.layers
import
create_global_var
#DEFINE_ALIAS
python/paddle/static/nn/__init__.py
浏览文件 @
2d669443
...
@@ -32,6 +32,7 @@ __all__ = [
...
@@ -32,6 +32,7 @@ __all__ = [
'multi_box_head'
,
'multi_box_head'
,
'nce'
,
'nce'
,
'prelu'
,
'prelu'
,
'py_func'
,
'row_conv'
,
'row_conv'
,
'spectral_norm'
,
'spectral_norm'
,
]
]
...
@@ -54,6 +55,7 @@ from ...fluid.layers import layer_norm #DEFINE_ALIAS
...
@@ -54,6 +55,7 @@ from ...fluid.layers import layer_norm #DEFINE_ALIAS
from
...fluid.layers
import
multi_box_head
#DEFINE_ALIAS
from
...fluid.layers
import
multi_box_head
#DEFINE_ALIAS
from
...fluid.layers
import
nce
#DEFINE_ALIAS
from
...fluid.layers
import
nce
#DEFINE_ALIAS
from
...fluid.layers
import
prelu
#DEFINE_ALIAS
from
...fluid.layers
import
prelu
#DEFINE_ALIAS
from
...fluid.layers
import
py_func
#DEFINE_ALIAS
from
...fluid.layers
import
row_conv
#DEFINE_ALIAS
from
...fluid.layers
import
row_conv
#DEFINE_ALIAS
from
...fluid.layers
import
spectral_norm
#DEFINE_ALIAS
from
...fluid.layers
import
spectral_norm
#DEFINE_ALIAS
...
...
tools/wlist.json
浏览文件 @
2d669443
...
@@ -279,7 +279,6 @@
...
@@ -279,7 +279,6 @@
"thresholded_relu"
,
"thresholded_relu"
,
"group_norm"
,
"group_norm"
,
"random_crop"
,
"random_crop"
,
"py_func"
,
"row_conv"
,
"row_conv"
,
"hard_shrink"
,
"hard_shrink"
,
"ssd_loss"
,
"ssd_loss"
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录