Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
86657dbe
P
Paddle
项目概览
PaddlePaddle
/
Paddle
大约 1 年 前同步成功
通知
2298
Star
20931
Fork
5422
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1423
列表
看板
标记
里程碑
合并请求
543
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1,423
Issue
1,423
列表
看板
标记
里程碑
合并请求
543
合并请求
543
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
未验证
提交
86657dbe
编写于
2月 12, 2018
作者:
C
chengduo
提交者:
GitHub
2月 12, 2018
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #8382 from chengduoZH/feature/multiBoxHead
Add MultiBox API
上级
24509f4a
6e79d01b
变更
2
展开全部
隐藏空白更改
内联
并排
Showing
2 changed file
with
296 addition
and
260 deletion
+296
-260
python/paddle/v2/fluid/layers/detection.py
python/paddle/v2/fluid/layers/detection.py
+276
-221
python/paddle/v2/fluid/tests/test_detection.py
python/paddle/v2/fluid/tests/test_detection.py
+20
-39
未找到文件。
python/paddle/v2/fluid/layers/detection.py
浏览文件 @
86657dbe
此差异已折叠。
点击以展开。
python/paddle/v2/fluid/tests/test_detection.py
浏览文件 @
86657dbe
...
@@ -13,6 +13,7 @@
...
@@ -13,6 +13,7 @@
# limitations under the License.
# limitations under the License.
from
__future__
import
print_function
from
__future__
import
print_function
import
paddle.v2.fluid
as
fluid
import
paddle.v2.fluid.layers
as
layers
import
paddle.v2.fluid.layers
as
layers
from
paddle.v2.fluid.framework
import
Program
,
program_guard
from
paddle.v2.fluid.framework
import
Program
,
program_guard
import
unittest
import
unittest
...
@@ -108,60 +109,40 @@ class TestDetection(unittest.TestCase):
...
@@ -108,60 +109,40 @@ class TestDetection(unittest.TestCase):
print
(
str
(
program
))
print
(
str
(
program
))
class
Test
PriorBox
(
unittest
.
TestCase
):
class
Test
MultiBoxHead
(
unittest
.
TestCase
):
def
test_
prior_box
(
self
):
def
test_
multi_box_head
(
self
):
data_shape
=
[
3
,
224
,
224
]
data_shape
=
[
3
,
224
,
224
]
box
,
var
=
self
.
prior_box
_output
(
data_shape
)
mbox_locs
,
mbox_confs
,
box
,
var
=
self
.
multi_box_head
_output
(
data_shape
)
assert
len
(
box
.
shape
)
==
2
assert
len
(
box
.
shape
)
==
2
assert
box
.
shape
==
var
.
shape
assert
box
.
shape
==
var
.
shape
assert
box
.
shape
[
1
]
==
4
assert
box
.
shape
[
1
]
==
4
def
prior_box_output
(
self
,
data_shape
):
for
loc
,
conf
in
zip
(
mbox_locs
,
mbox_confs
):
images
=
layers
.
data
(
name
=
'pixel'
,
shape
=
data_shape
,
dtype
=
'float32'
)
assert
loc
.
shape
[
1
:
3
]
==
conf
.
shape
[
1
:
3
]
conv1
=
layers
.
conv2d
(
input
=
images
,
def
multi_box_head_output
(
self
,
data_shape
):
num_filters
=
3
,
images
=
fluid
.
layers
.
data
(
filter_size
=
3
,
name
=
'pixel'
,
shape
=
data_shape
,
dtype
=
'float32'
)
stride
=
2
,
conv1
=
fluid
.
layers
.
conv2d
(
images
,
3
,
3
,
2
)
use_cudnn
=
False
)
conv2
=
fluid
.
layers
.
conv2d
(
conv1
,
3
,
3
,
2
)
conv2
=
layers
.
conv2d
(
conv3
=
fluid
.
layers
.
conv2d
(
conv2
,
3
,
3
,
2
)
input
=
conv1
,
conv4
=
fluid
.
layers
.
conv2d
(
conv3
,
3
,
3
,
2
)
num_filters
=
3
,
conv5
=
fluid
.
layers
.
conv2d
(
conv4
,
3
,
3
,
2
)
filter_size
=
3
,
stride
=
2
,
mbox_locs
,
mbox_confs
,
box
,
var
=
layers
.
multi_box_head
(
use_cudnn
=
False
)
conv3
=
layers
.
conv2d
(
input
=
conv2
,
num_filters
=
3
,
filter_size
=
3
,
stride
=
2
,
use_cudnn
=
False
)
conv4
=
layers
.
conv2d
(
input
=
conv3
,
num_filters
=
3
,
filter_size
=
3
,
stride
=
2
,
use_cudnn
=
False
)
conv5
=
layers
.
conv2d
(
input
=
conv4
,
num_filters
=
3
,
filter_size
=
3
,
stride
=
2
,
use_cudnn
=
False
)
box
,
var
=
layers
.
prior_box
(
inputs
=
[
conv1
,
conv2
,
conv3
,
conv4
,
conv5
,
conv5
],
inputs
=
[
conv1
,
conv2
,
conv3
,
conv4
,
conv5
,
conv5
],
image
=
images
,
image
=
images
,
num_classes
=
21
,
min_ratio
=
20
,
min_ratio
=
20
,
max_ratio
=
90
,
max_ratio
=
90
,
# steps=[8, 16, 32, 64, 100, 300],
aspect_ratios
=
[[
2.
],
[
2.
,
3.
],
[
2.
,
3.
],
[
2.
,
3.
],
[
2.
],
[
2.
]],
aspect_ratios
=
[[
2.
],
[
2.
,
3.
],
[
2.
,
3.
],
[
2.
,
3.
],
[
2.
],
[
2.
]],
base_size
=
300
,
base_size
=
300
,
offset
=
0.5
,
offset
=
0.5
,
flip
=
True
,
flip
=
True
,
clip
=
True
)
clip
=
True
)
return
box
,
var
return
mbox_locs
,
mbox_confs
,
box
,
var
if
__name__
==
'__main__'
:
if
__name__
==
'__main__'
:
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录