Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleDetection
提交
8c6f05f5
P
PaddleDetection
项目概览
PaddlePaddle
/
PaddleDetection
1 年多 前同步成功
通知
696
Star
11112
Fork
2696
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
184
列表
看板
标记
里程碑
合并请求
40
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleDetection
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
184
Issue
184
列表
看板
标记
里程碑
合并请求
40
合并请求
40
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
8c6f05f5
编写于
6月 30, 2021
作者:
T
topduke
提交者:
GitHub
6月 30, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update blazeface mAP, add pre-training model. (#3544)
* update blazeface mAP, add pre-training model.
上级
12a38c7f
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
6 addition
and
4 deletion
+6
-4
configs/face_detection/README.md
configs/face_detection/README.md
+4
-4
configs/face_detection/_base_/blazeface.yml
configs/face_detection/_base_/blazeface.yml
+1
-0
configs/face_detection/_base_/blazeface_fpn.yml
configs/face_detection/_base_/blazeface_fpn.yml
+1
-0
未找到文件。
configs/face_detection/README.md
浏览文件 @
8c6f05f5
...
@@ -12,11 +12,10 @@
...
@@ -12,11 +12,10 @@
| 网络结构 | 输入尺寸 | 图片个数/GPU | 学习率策略 | Easy/Medium/Hard Set | 预测时延(SD855)| 模型大小(MB) | 下载 | 配置文件 |
| 网络结构 | 输入尺寸 | 图片个数/GPU | 学习率策略 | Easy/Medium/Hard Set | 预测时延(SD855)| 模型大小(MB) | 下载 | 配置文件 |
|:------------:|:--------:|:----:|:-------:|:-------:|:---------:|:----------:|:---------:|:--------:|
|:------------:|:--------:|:----:|:-------:|:-------:|:---------:|:----------:|:---------:|:--------:|
| BlazeFace | 640 | 8 | 1000e | 0.885 / 0.855 / 0.731 | - | 0.472 |
[
下载链接
](
https://paddledet.bj.bcebos.com/models/blazeface_1000e.pdparams
)
|
[
配置文件
](
https://github.com/PaddlePaddle/PaddleDetection/tree/release/2.1/configs/face_detection/blazeface_1000e.yml
)
|
| BlazeFace | 640 | 8 | 1000e | 0.885 / 0.855 / 0.731 | - | 0.472 |
[
下载链接
](
https://paddledet.bj.bcebos.com/models/blazeface_1000e.pdparams
)
|
[
配置文件
](
https://github.com/PaddlePaddle/PaddleDetection/tree/release/2.1/configs/face_detection/blazeface_1000e.yml
)
|
| BlazeFace-FPN-SSH | 640 | 8 | 1000e | 0.9
07 / 0.883 / 0.793 | - | 0.479
|
[
下载链接
](
https://paddledet.bj.bcebos.com/models/blazeface_fpn_ssh_1000e.pdparams
)
|
[
配置文件
](
https://github.com/PaddlePaddle/PaddleDetection/tree/release/2.1/configs/face_detection/blazeface_fpn_ssh_1000e.yml
)
|
| BlazeFace-FPN-SSH | 640 | 8 | 1000e | 0.9
20 / 0.900 / 0.822 | - | 0.646
|
[
下载链接
](
https://paddledet.bj.bcebos.com/models/blazeface_fpn_ssh_1000e.pdparams
)
|
[
配置文件
](
https://github.com/PaddlePaddle/PaddleDetection/tree/release/2.1/configs/face_detection/blazeface_fpn_ssh_1000e.yml
)
|
**注意:**
**注意:**
-
我们使用多尺度评估策略得到
`Easy/Medium/Hard Set`
里的mAP。具体细节请参考
[
在WIDER-FACE数据集上评估
](
#在WIDER-FACE数据集上评估
)
。
-
我们使用多尺度评估策略得到
`Easy/Medium/Hard Set`
里的mAP。具体细节请参考
[
在WIDER-FACE数据集上评估
](
#在WIDER-FACE数据集上评估
)
。
## 快速开始
## 快速开始
### 数据准备
### 数据准备
...
@@ -79,9 +78,9 @@ BlazeNeck:
...
@@ -79,9 +78,9 @@ BlazeNeck:
```
shell
```
shell
python
-u
tools/eval.py
-c
configs/face_detection/blazeface_1000e.yml
\
python
-u
tools/eval.py
-c
configs/face_detection/blazeface_1000e.yml
\
-o
weights
=
output/blazeface_1000e/model_final
\
-o
weights
=
output/blazeface_1000e/model_final
\
multi_scale
=
True
multi_scale
_eval
=
True
```
```
设置
`multi_scale=True`
进行多尺度评估,评估完成后,将在
`output/pred`
中生成txt格式的测试结果。
设置
`multi_scale
_eval
=True`
进行多尺度评估,评估完成后,将在
`output/pred`
中生成txt格式的测试结果。
-
步骤二:下载官方评估脚本和Ground Truth文件:
-
步骤二:下载官方评估脚本和Ground Truth文件:
```
```
...
@@ -112,6 +111,7 @@ matlab -nodesktop -nosplash -nojvm -r "run wider_eval.m;quit;"
...
@@ -112,6 +111,7 @@ matlab -nodesktop -nosplash -nojvm -r "run wider_eval.m;quit;"
```
```
## Citations
## Citations
```
```
...
...
configs/face_detection/_base_/blazeface.yml
浏览文件 @
8c6f05f5
architecture
:
BlazeFace
architecture
:
BlazeFace
pretrain_weights
:
https://paddledet.bj.bcebos.com/models/pretrained/blazenet_pretrain.pdparams
BlazeFace
:
BlazeFace
:
backbone
:
BlazeNet
backbone
:
BlazeNet
...
...
configs/face_detection/_base_/blazeface_fpn.yml
浏览文件 @
8c6f05f5
architecture
:
BlazeFace
architecture
:
BlazeFace
pretrain_weights
:
https://paddledet.bj.bcebos.com/models/pretrained/blazenet_pretrain.pdparams
BlazeFace
:
BlazeFace
:
backbone
:
BlazeNet
backbone
:
BlazeNet
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录