Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleSlim
提交
fc0882b8
P
PaddleSlim
项目概览
PaddlePaddle
/
PaddleSlim
大约 1 年 前同步成功
通知
51
Star
1434
Fork
344
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
53
列表
看板
标记
里程碑
合并请求
16
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleSlim
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
53
Issue
53
列表
看板
标记
里程碑
合并请求
16
合并请求
16
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
fc0882b8
编写于
4月 01, 2022
作者:
C
ceci3
提交者:
GitHub
4月 01, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix config and add coco demo (#1028)
上级
70a36428
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
77 addition
and
1 deletion
+77
-1
demo/auto-compression/configs/CV/mbv2_qat_dis.yaml
demo/auto-compression/configs/CV/mbv2_qat_dis.yaml
+2
-1
demo/auto-compression/configs/PaddleDet/coco_dataset.yml
demo/auto-compression/configs/PaddleDet/coco_dataset.yml
+19
-0
demo/auto-compression/configs/PaddleDet/ppyoloe_reader.yml
demo/auto-compression/configs/PaddleDet/ppyoloe_reader.yml
+40
-0
demo/auto-compression/demo_coco.py
demo/auto-compression/demo_coco.py
+16
-0
未找到文件。
demo/auto-compression/configs/CV/mbv2_qat_dis.yaml
浏览文件 @
fc0882b8
...
...
@@ -58,5 +58,6 @@ TrainConfig:
eval_iter
:
1000
learning_rate
:
0.0001
optimizer
:
SGD
optim_args
:
weight_decay
:
4.0e-05
origin_metric
:
0.765
weight_decay
:
4.0e-05
demo/auto-compression/configs/PaddleDet/coco_dataset.yml
0 → 100644
浏览文件 @
fc0882b8
metric
:
COCO
num_classes
:
80
TrainDataset
:
!COCODataSet
image_dir
:
train2017
anno_path
:
annotations/instances_train2017.json
dataset_dir
:
dataset/coco
data_fields
:
[
'
image'
,
'
gt_bbox'
,
'
gt_class'
,
'
is_crowd'
]
EvalDataset
:
!COCODataSet
image_dir
:
val2017
anno_path
:
annotations/instances_val2017.json
dataset_dir
:
dataset/coco
TestDataset
:
!ImageFolder
anno_path
:
annotations/instances_val2017.json
demo/auto-compression/configs/PaddleDet/ppyoloe_reader.yml
0 → 100644
浏览文件 @
fc0882b8
_BASE_
:
[
'
./coco_dataset.yml'
,
]
worker_num
:
8
TrainReader
:
sample_transforms
:
-
Decode
:
{}
-
RandomDistort
:
{}
-
RandomExpand
:
{
fill_value
:
[
123.675
,
116.28
,
103.53
]}
-
RandomCrop
:
{}
-
RandomFlip
:
{}
batch_transforms
:
-
BatchRandomResize
:
{
target_size
:
[
320
,
352
,
384
,
416
,
448
,
480
,
512
,
544
,
576
,
608
,
640
,
672
,
704
,
736
,
768
],
random_size
:
True
,
random_interp
:
True
,
keep_ratio
:
False
}
-
NormalizeImage
:
{
mean
:
[
0.485
,
0.456
,
0.406
],
std
:
[
0.229
,
0.224
,
0.225
],
is_scale
:
True
}
-
Permute
:
{}
-
PadGT
:
{}
batch_size
:
24
shuffle
:
true
drop_last
:
true
use_shared_memory
:
true
collate_batch
:
true
EvalReader
:
sample_transforms
:
-
Decode
:
{}
-
Resize
:
{
target_size
:
[
640
,
640
],
keep_ratio
:
False
,
interp
:
2
}
-
NormalizeImage
:
{
mean
:
[
0.485
,
0.456
,
0.406
],
std
:
[
0.229
,
0.224
,
0.225
],
is_scale
:
True
}
-
Permute
:
{}
batch_size
:
4
TestReader
:
inputs_def
:
image_shape
:
[
3
,
640
,
640
]
sample_transforms
:
-
Decode
:
{}
-
Resize
:
{
target_size
:
[
640
,
640
],
keep_ratio
:
False
,
interp
:
2
}
-
NormalizeImage
:
{
mean
:
[
0.485
,
0.456
,
0.406
],
std
:
[
0.229
,
0.224
,
0.225
],
is_scale
:
True
}
-
Permute
:
{}
batch_size
:
1
demo/auto-compression/demo_coco.py
0 → 100644
浏览文件 @
fc0882b8
import
os
import
sys
sys
.
path
[
0
]
=
os
.
path
.
join
(
os
.
path
.
dirname
(
"__file__"
),
os
.
path
.
pardir
)
import
argparse
from
ppdet.core.workspace
import
load_config
,
merge_config
from
ppdet.core.workspace
import
create
cfg
=
load_config
(
'./configs/PaddleDet/ppyoloe_reader.yml'
)
print
(
cfg
)
coco_loader
=
create
(
'TestReader'
)(
cfg
[
'TrainDataset'
],
cfg
[
'worker_num'
])
for
data
in
coco_loader
:
print
(
data
.
keys
())
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录