Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
s920243400
PaddleDetection
提交
40ff9a63
P
PaddleDetection
项目概览
s920243400
/
PaddleDetection
与 Fork 源项目一致
Fork自
PaddlePaddle / PaddleDetection
通知
2
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleDetection
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
未验证
提交
40ff9a63
编写于
9月 03, 2020
作者:
Y
Yang Zhang
提交者:
GitHub
9月 03, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Add inference support for efficientdet (#1345)
reuse RetinaNet pipeline for now
上级
929c7f20
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
10 addition
and
1 deletion
+10
-1
tools/export_model.py
tools/export_model.py
+10
-1
未找到文件。
tools/export_model.py
浏览文件 @
40ff9a63
...
@@ -78,6 +78,15 @@ def parse_reader(reader_cfg, metric, arch):
...
@@ -78,6 +78,15 @@ def parse_reader(reader_cfg, metric, arch):
params
[
'image_shape'
]
=
image_shape
[
1
:]
params
[
'image_shape'
]
=
image_shape
[
1
:]
if
'target_dim'
in
params
:
if
'target_dim'
in
params
:
params
.
pop
(
'target_dim'
)
params
.
pop
(
'target_dim'
)
if
p
[
'type'
]
==
'ResizeAndPad'
:
assert
has_shape_def
,
"missing input shape"
p
[
'type'
]
=
'Resize'
p
[
'target_size'
]
=
params
[
'target_dim'
]
p
[
'max_size'
]
=
params
[
'target_dim'
]
p
[
'interp'
]
=
params
[
'interp'
]
p
[
'image_shape'
]
=
image_shape
[
1
:]
preprocess_list
.
append
(
p
)
continue
p
.
update
(
params
)
p
.
update
(
params
)
preprocess_list
.
append
(
p
)
preprocess_list
.
append
(
p
)
batch_transforms
=
reader_cfg
.
get
(
'batch_transforms'
,
None
)
batch_transforms
=
reader_cfg
.
get
(
'batch_transforms'
,
None
)
...
@@ -113,9 +122,9 @@ def dump_infer_config(FLAGS, config):
...
@@ -113,9 +122,9 @@ def dump_infer_config(FLAGS, config):
'Face'
:
3
,
'Face'
:
3
,
'TTFNet'
:
3
,
'TTFNet'
:
3
,
'FCOS'
:
3
,
'FCOS'
:
3
,
'EfficientDet'
:
40
}
}
infer_arch
=
config
[
'architecture'
]
infer_arch
=
config
[
'architecture'
]
infer_arch
=
'RetinaNet'
if
infer_arch
==
'EfficientDet'
else
infer_arch
for
arch
,
min_subgraph_size
in
trt_min_subgraph
.
items
():
for
arch
,
min_subgraph_size
in
trt_min_subgraph
.
items
():
if
arch
in
infer_arch
:
if
arch
in
infer_arch
:
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录