Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleClas
提交
ec3686c2
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看板
未验证
提交
ec3686c2
编写于
6月 13, 2022
作者:
C
cuicheng01
提交者:
GitHub
6月 13, 2022
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #2031 from cuicheng01/update_pulc_docs
update pulc docs
上级
6abf5320
63ccc3a3
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
10 addition
and
10 deletion
+10
-10
docs/zh_CN/PULC/PULC_model_list.md
docs/zh_CN/PULC/PULC_model_list.md
+1
-1
docs/zh_CN/PULC/PULC_person_exists.md
docs/zh_CN/PULC/PULC_person_exists.md
+3
-3
docs/zh_CN/PULC/PULC_quickstart.md
docs/zh_CN/PULC/PULC_quickstart.md
+2
-2
ppcls/configs/PULC/person_exists/PPLCNet_x1_0.yaml
ppcls/configs/PULC/person_exists/PPLCNet_x1_0.yaml
+4
-4
未找到文件。
docs/zh_CN/PULC/PULC_model_list.md
浏览文件 @
ec3686c2
...
...
@@ -22,4 +22,4 @@
*
以上所有的模型的 backbone 均为 PPLCNet_x1_0,部分模型大小不同是由于分类的输出大小不同导致的,推理耗时是基于Intel(R) Xeon(R) Gold 6148 CPU @ 2.40GHz 测试得到,其中测试过程开启 MKLDNN 加速策略,线程数为10。速度测试过程会有轻微波动。
*
person_exists、safety_helmet、
vehicle
_exists 的评测指标为 TprAtFpr,person_attribute、vehicle_attribute的评测指标为ma、traffic_sign、text_image_orientation、textline_orientation、language_classification的评测指标为Top-1 Acc。
*
person_exists、safety_helmet、
car
_exists 的评测指标为 TprAtFpr,person_attribute、vehicle_attribute的评测指标为ma、traffic_sign、text_image_orientation、textline_orientation、language_classification的评测指标为Top-1 Acc。
docs/zh_CN/PULC/PULC_person_exists.md
浏览文件 @
ec3686c2
...
...
@@ -239,13 +239,13 @@ python3 tools/eval.py \
```
python
python3
tools
/
infer
.
py
\
-
c
.
/
ppcls
/
configs
/
PULC
/
person_exists
/
PPLCNet_x1_0
.
yaml
\
-
o
Global
.
pretrained_model
=
output
/
PPLCNet_x1_0
/
best_model
\
-
o
Global
.
pretrained_model
=
output
/
PPLCNet_x1_0
/
best_model
```
输出结果如下:
```
[{'class_ids': [
0], 'scores': [0.9878496769815683], 'label_names': ['nobody'], 'file_name': './dataset/person_exists/val/objects365_01780637
.jpg'}]
[{'class_ids': [
1], 'scores': [0.9999976], 'label_names': ['someone'], 'file_name': 'deploy/images/PULC/person_exists/objects365_02035329
.jpg'}]
```
**备注:**
...
...
@@ -278,7 +278,7 @@ export CUDA_VISIBLE_DEVICES=0,1,2,3
python3
-m
paddle.distributed.launch
\
--gpus
=
"0,1,2,3"
\
tools/train.py
\
-c
./ppcls/configs/PULC/person_exists/PPLCNet
/PPLCNet
_x1_0.yaml
\
-c
./ppcls/configs/PULC/person_exists/PPLCNet_x1_0.yaml
\
-o
Arch.name
=
ResNet101_vd
```
...
...
docs/zh_CN/PULC/PULC_quickstart.md
浏览文件 @
ec3686c2
...
...
@@ -113,7 +113,7 @@ PULC 系列模型的名称和简介如下:
| safety_helmet | PULC佩戴安全帽分类模型 |
| traffic_sign | PULC交通标志分类模型 |
| vehicle_attribute | PULC车辆属性识别模型 |
|
vehicle
_exists | PULC有车/无车分类模型 |
|
car
_exists | PULC有车/无车分类模型 |
| text_image_orientation | PULC含文字图像方向分类模型 |
| textline_orientation | PULC文本行方向分类模型 |
| language_classification | PULC语种分类模型 |
...
...
@@ -124,7 +124,7 @@ PULC 系列模型的名称和简介如下:
通过本节内容,相信您已经熟练掌握 PaddleClas whl 包的 PULC 模型使用方法并获得了初步效果。
PULC 方法产出的系列模型在人、车、OCR等方向的多个场景中均验证有效,用超轻量模型就可实现与 SwinTransformer 模型接近的精度,预测速度提高 40+ 倍。并且打通数据、模型训练、压缩和推理部署全流程,具体地,您可以参考
[
PULC有人/无人分类模型
](
PULC_person_exists.md
)
、
[
PULC人体属性识别模型
](
PULC_person_attribute.md
)
、
[
PULC佩戴安全帽分类模型
](
PULC_safety_helmet.md
)
、
[
PULC交通标志分类模型
](
PULC_traffic_sign.md
)
、
[
PULC车辆属性识别模型
](
PULC_vehicle_attribute.md
)
、
[
PULC含文字图像方向分类模型
](
PULC_text_image_orientation.md
)
、
[
PULC文本行方向分类模型
](
PULC_textline_orientation.md
)
、
[
PULC语种分类模型
](
PULC_language_classification.md
)
。
PULC 方法产出的系列模型在人、车、OCR等方向的多个场景中均验证有效,用超轻量模型就可实现与 SwinTransformer 模型接近的精度,预测速度提高 40+ 倍。并且打通数据、模型训练、压缩和推理部署全流程,具体地,您可以参考
[
PULC有人/无人分类模型
](
PULC_person_exists.md
)
、
[
PULC人体属性识别模型
](
PULC_person_attribute.md
)
、
[
PULC佩戴安全帽分类模型
](
PULC_safety_helmet.md
)
、
[
PULC交通标志分类模型
](
PULC_traffic_sign.md
)
、
[
PULC车辆属性识别模型
](
PULC_vehicle_attribute.md
)
、
[
PULC
有车/无车分类模型
](
PULC_car_exists.md
)
、
[
PULC
含文字图像方向分类模型
](
PULC_text_image_orientation.md
)
、
[
PULC文本行方向分类模型
](
PULC_textline_orientation.md
)
、
[
PULC语种分类模型
](
PULC_language_classification.md
)
。
...
...
ppcls/configs/PULC/person_exists/PPLCNet_x1_0.yaml
浏览文件 @
ec3686c2
...
...
@@ -54,8 +54,8 @@ DataLoader:
Train
:
dataset
:
name
:
ImageNetDataset
image_root
:
./dataset/person/
cls_label_path
:
./dataset/person/train_list.txt
image_root
:
./dataset/person
_exists
/
cls_label_path
:
./dataset/person
_exists
/train_list.txt
transform_ops
:
-
DecodeImage
:
to_rgb
:
True
...
...
@@ -94,8 +94,8 @@ DataLoader:
Eval
:
dataset
:
name
:
ImageNetDataset
image_root
:
./dataset/person/
cls_label_path
:
./dataset/person/val_list.txt
image_root
:
./dataset/person
_exists
/
cls_label_path
:
./dataset/person
_exists
/val_list.txt
transform_ops
:
-
DecodeImage
:
to_rgb
:
True
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录