Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleClas
提交
70877e91
P
PaddleClas
项目概览
PaddlePaddle
/
PaddleClas
1 年多 前同步成功
通知
115
Star
4999
Fork
1114
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
19
列表
看板
标记
里程碑
合并请求
6
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleClas
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
19
Issue
19
列表
看板
标记
里程碑
合并请求
6
合并请求
6
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
70877e91
编写于
12月 18, 2020
作者:
T
Tingquan Gao
提交者:
GitHub
12月 18, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Update + to paddle.add and * to paddle.multiply (#502)
* Updata "*" to "paddle.multiply" * Update "+" to "paddle.add"
上级
62fd1927
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
4 addition
and
4 deletion
+4
-4
ppcls/modeling/architectures/ghostnet.py
ppcls/modeling/architectures/ghostnet.py
+1
-1
ppcls/modeling/architectures/hrnet.py
ppcls/modeling/architectures/hrnet.py
+1
-1
ppcls/modeling/architectures/res2net.py
ppcls/modeling/architectures/res2net.py
+1
-1
ppcls/modeling/architectures/se_resnext_vd.py
ppcls/modeling/architectures/se_resnext_vd.py
+1
-1
未找到文件。
ppcls/modeling/architectures/ghostnet.py
浏览文件 @
70877e91
...
...
@@ -89,7 +89,7 @@ class SEBlock(nn.Layer):
excitation
=
self
.
excitation
(
squeeze
)
excitation
=
paddle
.
clip
(
x
=
excitation
,
min
=
0
,
max
=
1
)
excitation
=
paddle
.
unsqueeze
(
excitation
,
axis
=
[
2
,
3
])
out
=
inputs
*
excitation
out
=
paddle
.
multiply
(
inputs
,
excitation
)
return
out
...
...
ppcls/modeling/architectures/hrnet.py
浏览文件 @
70877e91
...
...
@@ -653,7 +653,7 @@ class HRNet(nn.Layer):
y
=
last_cls
[
0
]
for
idx
in
range
(
3
):
y
=
last_cls
[
idx
+
1
]
+
self
.
cls_head_conv_list
[
idx
](
y
)
y
=
paddle
.
add
(
last_cls
[
idx
+
1
],
self
.
cls_head_conv_list
[
idx
](
y
)
)
y
=
self
.
conv_last
(
y
)
y
=
self
.
pool2d_avg
(
y
)
...
...
ppcls/modeling/architectures/res2net.py
浏览文件 @
70877e91
...
...
@@ -131,7 +131,7 @@ class BottleneckBlock(nn.Layer):
if
s
==
0
or
self
.
stride
==
2
:
ys
.
append
(
conv1
(
xs
[
s
]))
else
:
ys
.
append
(
conv1
(
xs
[
s
]
+
ys
[
-
1
]
))
ys
.
append
(
conv1
(
paddle
.
add
(
xs
[
s
],
ys
[
-
1
])
))
if
self
.
stride
==
1
:
ys
.
append
(
xs
[
-
1
])
else
:
...
...
ppcls/modeling/architectures/se_resnext_vd.py
浏览文件 @
70877e91
...
...
@@ -170,7 +170,7 @@ class SELayer(nn.Layer):
excitation
=
self
.
excitation
(
squeeze
)
excitation
=
self
.
sigmoid
(
excitation
)
excitation
=
paddle
.
unsqueeze
(
excitation
,
axis
=
[
2
,
3
])
out
=
input
*
excitation
out
=
paddle
.
multiply
(
input
,
excitation
)
return
out
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录