Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
Paddle
提交
992b30ba
P
Paddle
项目概览
BaiXuePrincess
/
Paddle
与 Fork 源项目一致
Fork自
PaddlePaddle / Paddle
通知
1
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
992b30ba
编写于
11月 16, 2022
作者:
傅
傅剑寒
提交者:
GitHub
11月 16, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[fluid clear] Remove elu in nn.py (#47855)
上级
99ec2c16
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
2 addition
and
46 deletion
+2
-46
python/paddle/fluid/layers/nn.py
python/paddle/fluid/layers/nn.py
+0
-44
python/paddle/fluid/tests/unittests/test_activation_nn_grad.py
...n/paddle/fluid/tests/unittests/test_activation_nn_grad.py
+1
-1
python/paddle/fluid/tests/unittests/test_inplace_abn_op.py
python/paddle/fluid/tests/unittests/test_inplace_abn_op.py
+1
-1
未找到文件。
python/paddle/fluid/layers/nn.py
浏览文件 @
992b30ba
...
...
@@ -131,7 +131,6 @@ __all__ = [
'log',
'crop',
'crop_tensor',
'elu',
'relu6',
'pow',
'stanh',
...
...
@@ -9923,49 +9922,6 @@ def pad2d(
return out
@deprecated(since="2.0.0", update_to="paddle.nn.functional.elu")
def elu(x, alpha=1.0, name=None):
"""
:alias_main: paddle.nn.functional.elu
:alias: paddle.nn.functional.elu,paddle.nn.functional.activation.elu
:old_api: paddle.fluid.layers.elu
${comment}
Args:
x(${x_type}): ${x_comment}
alpha(${alpha_type}|1.0): ${alpha_comment}
name(str|None): The default value is None. Normally there is no need for user to set this property.
For more information, please refer to :ref:`api_guide_Name`.
Returns:
${out_type}: ${out_comment}
Examples:
.. code-block:: python
import paddle.fluid as fluid
import numpy as np
input_elu = np.array([[-1,6],[1,15.6]])
with fluid.dygraph.guard():
x = fluid.dygraph.to_variable(input_elu)
y = fluid.layers.elu(x, alpha=0.2)
print(y.numpy())
# [[-0.12642411 6. ]
# [ 1. 15.6 ]]
"""
helper = LayerHelper('elu', **locals())
check_variable_and_dtype(x, 'x', ['float16', 'float32', 'float64'], 'elu')
out = helper.create_variable_for_type_inference(dtype=x.dtype)
helper.append_op(
type='elu',
inputs={'X': x},
outputs={'Out': out},
attrs={'alpha': alpha},
)
return out
@deprecated(since="2.0.0", update_to="paddle.nn.functional.relu6")
def relu6(x, threshold=6.0, name=None):
"""
...
...
python/paddle/fluid/tests/unittests/test_activation_nn_grad.py
浏览文件 @
992b30ba
...
...
@@ -252,7 +252,7 @@ class TestELUDoubleGradCheck(unittest.TestCase):
x
=
layers
.
data
(
'x'
,
shape
,
False
,
dtype
)
x
.
persistable
=
True
y
=
layers
.
elu
(
x
,
alpha
=
alpha
)
y
=
paddle
.
nn
.
functional
.
elu
(
x
,
alpha
=
alpha
)
np
.
random
.
RandomState
(
SEED
)
x_arr
=
np
.
random
.
uniform
(
-
1
,
1
,
shape
).
astype
(
dtype
)
gradient_checker
.
double_grad_check
(
...
...
python/paddle/fluid/tests/unittests/test_inplace_abn_op.py
浏览文件 @
992b30ba
...
...
@@ -80,7 +80,7 @@ class TestInplaceANBOpTraining(unittest.TestCase):
if
activation
==
'leaky_relu'
:
bn
=
fluid
.
layers
.
leaky_relu
(
bn
,
alpha
)
if
activation
==
'elu'
:
bn
=
fluid
.
layers
.
elu
(
bn
,
alpha
)
bn
=
paddle
.
nn
.
functional
.
elu
(
bn
,
alpha
)
# NOTE: in inplace mode input and output of bn
# may have same name, multiply 1. to generate
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录