Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
s920243400
PaddleDetection
提交
609db8ba
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,发现更多精彩内容 >>
未验证
提交
609db8ba
编写于
2月 11, 2021
作者:
G
Guanghua Yu
提交者:
GitHub
2月 11, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix solov2 with_background & from_config (#2205)
上级
ed6b5e99
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
23 addition
and
13 deletion
+23
-13
dygraph/configs/solov2/_base_/solov2_r50_fpn.yml
dygraph/configs/solov2/_base_/solov2_r50_fpn.yml
+0
-6
dygraph/ppdet/data/transform/batch_operator.py
dygraph/ppdet/data/transform/batch_operator.py
+1
-1
dygraph/ppdet/modeling/architectures/solov2.py
dygraph/ppdet/modeling/architectures/solov2.py
+20
-4
dygraph/ppdet/modeling/heads/solov2_head.py
dygraph/ppdet/modeling/heads/solov2_head.py
+1
-1
dygraph/ppdet/py_op/post_process.py
dygraph/ppdet/py_op/post_process.py
+1
-1
未找到文件。
dygraph/configs/solov2/_base_/solov2_r50_fpn.yml
浏览文件 @
609db8ba
...
...
@@ -9,7 +9,6 @@ SOLOv2:
mask_head
:
SOLOv2MaskHead
ResNet
:
# index 0 stands for res2
depth
:
50
norm_type
:
bn
freeze_at
:
0
...
...
@@ -17,11 +16,7 @@ ResNet:
num_stages
:
4
FPN
:
in_channels
:
[
256
,
512
,
1024
,
2048
]
out_channel
:
256
min_level
:
0
max_level
:
4
spatial_scale
:
[
0.25
,
0.125
,
0.0625
,
0.03125
]
SOLOv2Head
:
seg_feat_channels
:
512
...
...
@@ -32,7 +27,6 @@ SOLOv2Head:
mask_nms
:
MaskMatrixNMS
SOLOv2MaskHead
:
in_channels
:
256
mid_channels
:
128
out_channels
:
256
start_level
:
0
...
...
dygraph/ppdet/data/transform/batch_operator.py
浏览文件 @
609db8ba
...
...
@@ -644,7 +644,7 @@ class Gt2Solov2TargetOp(BaseOperator):
max_ins_num
=
[
0
]
*
len
(
self
.
num_grids
)
for
sample
in
samples
:
gt_bboxes_raw
=
sample
[
'gt_bbox'
]
gt_labels_raw
=
sample
[
'gt_class'
]
gt_labels_raw
=
sample
[
'gt_class'
]
+
1
im_c
,
im_h
,
im_w
=
sample
[
'image'
].
shape
[:]
gt_masks_raw
=
sample
[
'gt_segm'
].
astype
(
np
.
uint8
)
mask_feat_size
=
[
...
...
dygraph/ppdet/modeling/architectures/solov2.py
浏览文件 @
609db8ba
...
...
@@ -18,7 +18,7 @@ from __future__ import print_function
import
paddle
from
ppdet.core.workspace
import
register
from
ppdet.core.workspace
import
register
,
create
from
.meta_arch
import
BaseArch
__all__
=
[
'SOLOv2'
]
...
...
@@ -37,7 +37,6 @@ class SOLOv2(BaseArch):
"""
__category__
=
'architecture'
__inject__
=
[
'backbone'
,
'neck'
,
'solov2_head'
,
'mask_head'
]
def
__init__
(
self
,
backbone
,
solov2_head
,
mask_head
,
neck
=
None
):
super
(
SOLOv2
,
self
).
__init__
()
...
...
@@ -46,11 +45,28 @@ class SOLOv2(BaseArch):
self
.
solov2_head
=
solov2_head
self
.
mask_head
=
mask_head
@
classmethod
def
from_config
(
cls
,
cfg
,
*
args
,
**
kwargs
):
backbone
=
create
(
cfg
[
'backbone'
])
kwargs
=
{
'input_shape'
:
backbone
.
out_shape
}
neck
=
create
(
cfg
[
'neck'
],
**
kwargs
)
kwargs
=
{
'input_shape'
:
neck
.
out_shape
}
solov2_head
=
create
(
cfg
[
'solov2_head'
],
**
kwargs
)
mask_head
=
create
(
cfg
[
'mask_head'
],
**
kwargs
)
return
{
'backbone'
:
backbone
,
'neck'
:
neck
,
'solov2_head'
:
solov2_head
,
'mask_head'
:
mask_head
,
}
def
model_arch
(
self
):
body_feats
=
self
.
backbone
(
self
.
inputs
)
if
self
.
neck
is
not
None
:
body_feats
,
spatial_scale
=
self
.
neck
(
body_feats
)
body_feats
=
self
.
neck
(
body_feats
)
self
.
seg_pred
=
self
.
mask_head
(
body_feats
)
...
...
dygraph/ppdet/modeling/heads/solov2_head.py
浏览文件 @
609db8ba
...
...
@@ -190,7 +190,7 @@ class SOLOv2Head(nn.Layer):
self
.
num_classes
=
num_classes
self
.
in_channels
=
in_channels
self
.
seg_num_grids
=
num_grids
self
.
cate_out_channels
=
self
.
num_classes
-
1
self
.
cate_out_channels
=
self
.
num_classes
self
.
seg_feat_channels
=
seg_feat_channels
self
.
stacked_convs
=
stacked_convs
self
.
kernel_out_channels
=
kernel_out_channels
...
...
dygraph/ppdet/py_op/post_process.py
浏览文件 @
609db8ba
...
...
@@ -87,7 +87,7 @@ def get_solov2_segm_res(results, image_id, num_id_to_cat_id_map):
return
None
# for each sample
for
i
in
range
(
lengths
-
1
):
clsid
=
int
(
clsid_labels
[
i
])
+
1
clsid
=
int
(
clsid_labels
[
i
])
catid
=
num_id_to_cat_id_map
[
clsid
]
score
=
float
(
clsid_scores
[
i
])
mask
=
segms
[
i
]
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录