Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleSlim
提交
e020c22f
P
PaddleSlim
项目概览
PaddlePaddle
/
PaddleSlim
大约 1 年 前同步成功
通知
51
Star
1434
Fork
344
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
53
列表
看板
标记
里程碑
合并请求
16
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleSlim
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
53
Issue
53
列表
看板
标记
里程碑
合并请求
16
合并请求
16
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
e020c22f
编写于
5月 27, 2021
作者:
C
ceci3
提交者:
GitHub
5月 27, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix condition of layer_forward in ofa (#777) (#782)
上级
bb224bf7
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
5 addition
and
4 deletion
+5
-4
paddleslim/nas/ofa/get_sub_model.py
paddleslim/nas/ofa/get_sub_model.py
+1
-1
paddleslim/nas/ofa/ofa.py
paddleslim/nas/ofa/ofa.py
+4
-3
未找到文件。
paddleslim/nas/ofa/get_sub_model.py
浏览文件 @
e020c22f
...
...
@@ -225,7 +225,7 @@ def check_search_space(graph):
depthwise_conv
.
append
(
inp
.
_var
.
name
)
if
len
(
same_search_space
)
==
0
:
return
None
,
None
return
None
,
[]
same_search_space
=
sorted
([
sorted
(
x
)
for
x
in
same_search_space
])
final_search_space
=
[]
...
...
paddleslim/nas/ofa/ofa.py
浏览文件 @
e020c22f
...
...
@@ -108,9 +108,9 @@ class OFABase(Layer):
if
getattr
(
self
,
'current_config'
,
None
)
!=
None
:
### if block is fixed, donnot join key into candidate
### concrete config as parameter in kwargs
if
block
.
fixed
==
False
and
(
self
.
_skip_layers
!=
None
and
self
.
_key2name
[
block
.
key
]
not
in
self
.
_skip_layers
)
and
\
if
block
.
fixed
==
False
and
(
self
.
_skip_layers
==
None
or
(
self
.
_skip_layers
!=
None
and
self
.
_key2name
[
block
.
key
]
not
in
self
.
_skip_layers
)
)
and
\
(
block
.
fn
.
weight
.
name
not
in
self
.
_depthwise_conv
):
assert
self
.
_key2name
[
block
.
...
...
@@ -180,6 +180,7 @@ class OFA(OFABase):
self
.
_build_ss
=
False
self
.
_broadcast
=
False
self
.
_skip_layers
=
None
self
.
_depthwise_conv
=
[]
### if elastic_order is none, use default order
if
self
.
elastic_order
is
not
None
:
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录