Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleClas
提交
f1065839
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看板
未验证
提交
f1065839
编写于
6月 15, 2021
作者:
W
Walter
提交者:
GitHub
6月 15, 2021
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #812 from RainFrost1/develop_reg
fix vehicle yaml bugs and add vehicle docs
上级
e1d53e7f
31a55526
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
207 addition
and
11 deletion
+207
-11
docs/images/recognotion/vehicle/CompCars.png
docs/images/recognotion/vehicle/CompCars.png
+0
-0
docs/images/recognotion/vehicle/cars.JPG
docs/images/recognotion/vehicle/cars.JPG
+0
-0
docs/zh_CN/application/vehicle_fine_grained_classfication.md
docs/zh_CN/application/vehicle_fine_grained_classfication.md
+19
-0
docs/zh_CN/application/vehicle_reid.md
docs/zh_CN/application/vehicle_reid.md
+173
-0
ppcls/configs/Vehicle/ResNet50.yaml
ppcls/configs/Vehicle/ResNet50.yaml
+6
-4
ppcls/configs/Vehicle/ResNet50_ReID.yaml
ppcls/configs/Vehicle/ResNet50_ReID.yaml
+9
-7
未找到文件。
docs/images/recognotion/vehicle/CompCars.png
0 → 100644
浏览文件 @
f1065839
1.4 MB
docs/images/recognotion/vehicle/cars.JPG
0 → 100644
浏览文件 @
f1065839
186.7 KB
docs/zh_CN/application/vehicle_fine_grained_classfication.md
0 → 100644
浏览文件 @
f1065839
# 车辆细粒度分类
细粒度分类,是对属于某一类基础类别的图像进行子类别的细粉,如各种鸟、各种花、各种矿石之间。顾名思义,车辆细粒度分类是对车辆的不同子类别进行分类。
其训练过程与车辆ReID相比,有以下不同:
-
数据集不同
-
Loss设置不同
其他部分请详见
[
车辆ReID
](
./vehicle_reid.md
)
整体配置文件:
[
ResNet50.yaml
](
../../../ppcls/configs/Vehicle/ResNet50.yaml
)
## 数据集
在此demo中,使用
[
CompCars
](
http://mmlab.ie.cuhk.edu.hk/datasets/comp_cars/index.html
)
作为训练数据集。
<img
src=
"../../images/recognotion/vehicle/CompCars.png"
style=
"zoom:50%;"
/>
图像主要来自网络和监控数据,其中网络数据包含163个汽车制造商、1716个汽车型号的汽车。共
**136,726**
张全车图像,
**27,618**
张部分车图像。其中网络汽车数据包含bounding box、视角、5个属性(最大速度、排量、车门数、车座数、汽车类型)。监控数据包含
**50,000**
张前视角图像。
值得注意的是,此数据集中需要根据自己的需要生成不同的label,如本demo中,将不同年份生产的相同型号的车辆视为同一类,因此,类别总数为:431类。
## Loss设置
与车辆ReID不同,在此分类中,Loss使用的是
[
TtripLet Loss
](
../../../ppcls/loss/triplet.py
)
+
[
ArcLoss
](
../../../ppcls/arch/gears/arcmargin.py
)
,权重比例1:1。
docs/zh_CN/application/vehicle_reid.md
0 → 100644
浏览文件 @
f1065839
# 车辆ReID
ReID,也就是 Re-identification,其定义是利用算法,在图像库中找到要搜索的目标的技术,所以它是属于图像检索的一个子问题。而车辆ReID就是给定一张车辆图像,找出同一摄像头不同的拍摄图像,或者不同摄像头下拍摄的同一车辆图像的过程。在此过程中,如何提取鲁棒特征,尤为重要。因此,此文档主要对车辆ReID中训练特征提取网络部分做相关介绍,内容如下:
-
数据集及预处理方式
-
Backbone的具体设置
-
Loss函数的相关设置
全部的超参数及具体配置:
[
ResNet50_ReID.yaml
](
../../../ppcls/configs/Vehicle/ResNet50_ReID.yaml
)
## 数据集及预处理
### VERI-Wild数据集
<img
src=
"../../images/recognotion/vehicle/cars.JPG"
style=
"zoom:50%;"
/>
此数据集是在一个大型闭路电视监控系统,在无约束的场景下,一个月内(30
*
24小时)中捕获的。该系统由174个摄像头组成,其摄像机分布在200多平方公里的大型区域。原始车辆图像集包含1200万个车辆图像,经过数据清理和标注,采集了416314张40671个不同的车辆图像。
[
具体详见论文
](
https://github.com/PKU-IMRE/VERI-Wild
)
## 数据预处理
由于原始的数据集中,车辆图像已经是由检测器检测后crop出的车辆图像,因此无需像训练
`ImageNet`
中图像crop操作。整体的数据增强方式,按照顺序如下:
-
图像
`Resize`
到224
-
随机水平翻转
-
[
AugMix
](
https://arxiv.org/abs/1912.02781v1
)
-
Normlize:归一化到0~1
-
[
RandomErasing
](
https://arxiv.org/pdf/1708.04896v2.pdf
)
在配置文件中设置如下,详见
`transform_ops`
部分:
```
yaml
DataLoader
:
Train
:
dataset
:
# 具体使用的Dataset的的名称
name
:
"
VeriWild"
# 使用此数据集的具体参数
image_root
:
"
/work/dataset/VeRI-Wild/images/"
cls_label_path
:
"
/work/dataset/VeRI-Wild/train_test_split/train_list_start0.txt"
# 图像增广策略:ResizeImage、RandFlipImage等
transform_ops
:
-
ResizeImage
:
size
:
224
-
RandFlipImage
:
flip_code
:
1
-
AugMix
:
prob
:
0.5
-
NormalizeImage
:
scale
:
0.00392157
mean
:
[
0.485
,
0.456
,
0.406
]
std
:
[
0.229
,
0.224
,
0.225
]
order
:
'
'
-
RandomErasing
:
EPSILON
:
0.5
sl
:
0.02
sh
:
0.4
r1
:
0.3
mean
:
[
0.
,
0.
,
0.
]
sampler
:
name
:
DistributedRandomIdentitySampler
batch_size
:
128
num_instances
:
2
drop_last
:
False
shuffle
:
True
loader
:
num_workers
:
6
use_shared_memory
:
False
```
## Backbone的具体设置
具体是用
`ResNet50`
作为backbone,但在
`ResNet50`
基础上做了如下修改:
-
对Last Stage(第4个stage),没有做下采样,即第4个stage的feature map和第3个stage的feature map大小一致,都是14x14。
-
在最后加入一个embedding 层,即1x1的卷积层,特征维度为512
具体代码:
[
ResNet50_last_stage_stride1
](
../../../ppcls/arch/backbone/variant_models/resnet_variant.py
)
在配置文件中Backbone设置如下:
```
yaml
Arch
:
# 使用RecModel模型进行训练,目前支持普通ImageNet和RecModel两个方式
name
:
"
RecModel"
# 导出inference model的具体配置
infer_output_key
:
"
features"
infer_add_softmax
:
False
# 使用的Backbone
Backbone
:
name
:
"
ResNet50_last_stage_stride1"
pretrained
:
True
# 使用此层作为Backbone的feature输出,name为具体层的full_name
BackboneStopLayer
:
name
:
"
adaptive_avg_pool2d_0"
# Backbone的基础上,新增网络层。此模型添加1x1的卷积层(embedding)
Neck
:
name
:
"
VehicleNeck"
in_channels
:
2048
out_channels
:
512
# 增加ArcMargin, 即ArcLoss的具体实现
Head
:
name
:
"
ArcMargin"
embedding_size
:
512
class_num
:
431
margin
:
0.15
scale
:
32
```
## Loss的设置
车辆ReID中,使用了
[
SupConLoss
](
https://arxiv.org/abs/2004.11362
)
+
[
ArcLoss
](
https://arxiv.org/abs/1801.07698
)
,其中权重比例为1:1
具体代码详见:
[
SupConLoss代码
](
../../../ppcls/loss/supconloss.py
)
、
[
ArcLoss代码
](
../../../ppcls/arch/gears/arcmargin.py
)
在配置文件中设置如下:
```
yaml
Loss
:
Train
:
-
CELoss
:
weight
:
1.0
-
SupConLoss
:
weight
:
1.0
# SupConLoss的具体参数
views
:
2
Eval
:
-
CELoss
:
weight
:
1.0
```
## 其他相关设置
### Optimizer设置
```
yaml
Optimizer
:
# 使用的优化器名称
name
:
Momentum
# 优化器具体参数
momentum
:
0.9
lr
:
# 使用的学习率调节具体名称
name
:
MultiStepDecay
# 学习率调节算法具体参数
learning_rate
:
0.01
milestones
:
[
30
,
60
,
70
,
80
,
90
,
100
,
120
,
140
]
gamma
:
0.5
verbose
:
False
last_epoch
:
-1
regularizer
:
name
:
'
L2'
coeff
:
0.0005
```
### Eval Metric设置
```
yaml
Metric
:
Eval
:
# 使用Recallk和mAP两种评价指标
-
Recallk
:
topk
:
[
1
,
5
]
-
mAP
:
{}
```
### 其他超参数设置
```
yaml
Global
:
# 如为null则从头开始训练。若指定中间训练保存的状态地址,则继续训练
checkpoints
:
null
pretrained_model
:
null
output_dir
:
"
./output/"
device
:
"
gpu"
class_num
:
30671
# 保存模型的粒度,每个epoch保存一次
save_interval
:
1
eval_during_train
:
True
eval_interval
:
1
# 训练的epoch数
epochs
:
160
# log输出频率
print_batch_step
:
10
# 是否使用visualdl库
use_visualdl
:
False
# used for static mode and model export
image_shape
:
[
3
,
224
,
224
]
save_inference_dir
:
"
./inference"
# 使用retrival的方式进行评测
eval_mode
:
"
retrieval"
```
ppcls/configs/Vehicle/ResNet50.yaml
浏览文件 @
f1065839
...
...
@@ -18,6 +18,8 @@ Global:
# model architecture
Arch
:
name
:
"
RecModel"
infer_output_key
:
"
features"
infer_add_softmax
:
False
Backbone
:
name
:
"
ResNet50_last_stage_stride1"
pretrained
:
True
...
...
@@ -66,10 +68,10 @@ DataLoader:
Train
:
dataset
:
name
:
"
CompCars"
image_root
:
"
/work
/dataset/CompCars/image/"
label_root
:
"
/work
/dataset/CompCars/label/"
image_root
:
"
.
/dataset/CompCars/image/"
label_root
:
"
.
/dataset/CompCars/label/"
bbox_crop
:
True
cls_label_path
:
"
/work
/dataset/CompCars/train_test_split/classification/train_label.txt"
cls_label_path
:
"
.
/dataset/CompCars/train_test_split/classification/train_label.txt"
transform_ops
:
-
DecodeImage
:
to_rgb
:
True
...
...
@@ -106,7 +108,7 @@ DataLoader:
# TOTO: modify to the latest trainer
dataset
:
name
:
"
CompCars"
image_root
:
"
.dataset/CompCars/image/"
image_root
:
"
.
/
dataset/CompCars/image/"
label_root
:
"
./dataset/CompCars/label/"
cls_label_path
:
"
./dataset/CompCars/train_test_split/classification/test_label.txt"
bbox_crop
:
True
...
...
ppcls/configs/Vehicle/ResNet50_ReID.yaml
浏览文件 @
f1065839
...
...
@@ -19,6 +19,8 @@ Global:
# model architecture
Arch
:
name
:
"
RecModel"
infer_output_key
:
"
features"
infer_add_softmax
:
False
Backbone
:
name
:
"
ResNet50_last_stage_stride1"
pretrained
:
True
...
...
@@ -31,7 +33,7 @@ Arch:
Head
:
name
:
"
ArcMargin"
embedding_size
:
512
class_num
:
43
1
class_num
:
3067
1
margin
:
0.15
scale
:
32
...
...
@@ -66,8 +68,8 @@ DataLoader:
Train
:
dataset
:
name
:
"
VeriWild"
image_root
:
"
/work
/dataset/VeRI-Wild/images/"
cls_label_path
:
"
/work
/dataset/VeRI-Wild/train_test_split/train_list_start0.txt"
image_root
:
"
.
/dataset/VeRI-Wild/images/"
cls_label_path
:
"
.
/dataset/VeRI-Wild/train_test_split/train_list_start0.txt"
transform_ops
:
-
DecodeImage
:
to_rgb
:
True
...
...
@@ -104,8 +106,8 @@ DataLoader:
# TOTO: modify to the latest trainer
dataset
:
name
:
"
VeriWild"
image_root
:
"
/work
/dataset/VeRI-Wild/images"
cls_label_path
:
"
/work
/dataset/VeRI-Wild/train_test_split/test_3000_id_query.txt"
image_root
:
"
.
/dataset/VeRI-Wild/images"
cls_label_path
:
"
.
/dataset/VeRI-Wild/train_test_split/test_3000_id_query.txt"
transform_ops
:
-
DecodeImage
:
to_rgb
:
True
...
...
@@ -130,8 +132,8 @@ DataLoader:
# TOTO: modify to the latest trainer
dataset
:
name
:
"
VeriWild"
image_root
:
"
/work
/dataset/VeRI-Wild/images"
cls_label_path
:
"
/work
/dataset/VeRI-Wild/train_test_split/test_3000_id.txt"
image_root
:
"
.
/dataset/VeRI-Wild/images"
cls_label_path
:
"
.
/dataset/VeRI-Wild/train_test_split/test_3000_id.txt"
transform_ops
:
-
DecodeImage
:
to_rgb
:
True
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录