Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleClas
提交
46ec76eb
P
PaddleClas
项目概览
PaddlePaddle
/
PaddleClas
大约 1 年 前同步成功
通知
115
Star
4999
Fork
1114
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
19
列表
看板
标记
里程碑
合并请求
6
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleClas
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
19
Issue
19
列表
看板
标记
里程碑
合并请求
6
合并请求
6
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
46ec76eb
编写于
6月 23, 2022
作者:
littletomatodonkey
提交者:
GitHub
6月 23, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix vehicle attr doc (#2096)
上级
1fe19cb7
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
5 addition
and
5 deletion
+5
-5
docs/zh_CN/PULC/PULC_vehicle_attribute.md
docs/zh_CN/PULC/PULC_vehicle_attribute.md
+5
-5
未找到文件。
docs/zh_CN/PULC/PULC_vehicle_attribute.md
浏览文件 @
46ec76eb
...
...
@@ -58,7 +58,7 @@
从表中可以看出,backbone 为 Res2Net200_vd_26w_4s 时精度较高,但是推理速度较慢。将 backbone 替换为轻量级模型 MobileNetV3_small_x0_35 后,速度可以大幅提升,但是精度下降明显。将 backbone 替换为 PPLCNet_x1_0 时,精度提升 2 个百分点,同时速度也提升 23% 左右。在此基础上,使用 SSLD 预训练模型后,在不改变推理速度的前提下,精度可以提升约 0.5 个百分点,进一步地,当融合EDA策略后,精度可以再提升 0.52 个百分点,最后,在使用 SKL-UGI 知识蒸馏后,精度可以继续提升 0.23 个百分点。此时,PPLCNet_x1_0 的精度与 Res2Net200_vd_26w_4s 仅相差 0.55 个百分点,但是速度快 32 倍。关于 PULC 的训练方法和推理部署方法将在下面详细介绍。
**备注:**
*
延时是基于 Intel(R) Xeon(R) Gold 6148 CPU @ 2.40GHz 测试得到,开启 MKLDNN 加速策略,线程数为10。
*
关于PP-LCNet的介绍可以参考
[
PP-LCNet介绍
](
../models/PP-LCNet.md
)
,相关论文可以查阅
[
PP-LCNet paper
](
https://arxiv.org/abs/2109.15099
)
。
...
...
@@ -178,7 +178,7 @@ from xml.dom.minidom import parse
vehicleids
=
[]
def
convert_annotation
(
input_fp
,
output_fp
):
def
convert_annotation
(
input_fp
,
output_fp
,
subdir
):
in_file
=
open
(
input_fp
)
list_file
=
open
(
output_fp
,
'w'
)
tree
=
parse
(
in_file
)
...
...
@@ -201,12 +201,12 @@ def convert_annotation(input_fp, output_fp):
typeid
=
int
(
item
.
getAttribute
(
"typeID"
))
label
[
typeid
+
9
]
=
'1'
label
=
','
.
join
(
label
)
list_file
.
write
(
os
.
path
.
join
(
'image_train'
,
name
)
+
"
\t
"
+
label
+
"
\n
"
)
list_file
.
write
(
os
.
path
.
join
(
subdir
,
name
)
+
"
\t
"
+
label
+
"
\n
"
)
list_file
.
close
()
convert_annotation
(
'train_label.xml'
,
'train_list.txt'
)
#imagename vehiclenum colorid typeid
convert_annotation
(
'test_label.xml'
,
'test_list.txt'
)
convert_annotation
(
'train_label.xml'
,
'train_list.txt'
,
'image_train'
)
#imagename vehiclenum colorid typeid
convert_annotation
(
'test_label.xml'
,
'test_list.txt'
,
'image_test'
)
```
执行上述命令后,
`VeRi`
目录中具有以下数据:
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录