Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleSlim
提交
763c5f06
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看板
未验证
提交
763c5f06
编写于
10月 09, 2022
作者:
Z
zhouzj
提交者:
GitHub
10月 09, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fix bug of seg demo (#1449)
上级
253c09b5
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
30 addition
and
4 deletion
+30
-4
example/auto_compression/semantic_segmentation/configs/deeplabv3/deeplabv3_qat.yaml
...emantic_segmentation/configs/deeplabv3/deeplabv3_qat.yaml
+4
-3
example/auto_compression/semantic_segmentation/configs/deeplabv3/deeplabv3_reader.yml
...antic_segmentation/configs/deeplabv3/deeplabv3_reader.yml
+24
-0
example/auto_compression/semantic_segmentation/run.py
example/auto_compression/semantic_segmentation/run.py
+2
-1
未找到文件。
example/auto_compression/semantic_segmentation/configs/deeplabv3/deeplabv3_qat.yaml
浏览文件 @
763c5f06
Global
:
reader_config
:
configs/d
ataset/cityscapes_1024x512_scale1.0
.yml
reader_config
:
configs/d
eeplabv3/deeplabv3_reader
.yml
model_dir
:
./RES-paddle2-Deeplabv3-ResNet50
model_filename
:
model
params_filename
:
params
...
...
@@ -11,15 +11,16 @@ Distillation:
-
conv2d_123.tmp_1
Quantization
:
onnx_format
:
True
quantize_op_types
:
-
conv2d
-
depthwise_conv2d
TrainConfig
:
epochs
:
1
0
epochs
:
1
eval_iter
:
360
learning_rate
:
0.0001
optimizer_builder
:
optimizer
:
type
:
SGD
weight_decay
:
0.0005
weight_decay
:
0.0005
\ No newline at end of file
example/auto_compression/semantic_segmentation/configs/deeplabv3/deeplabv3_reader.yml
0 → 100644
浏览文件 @
763c5f06
batch_size
:
4
train_dataset
:
type
:
Cityscapes
dataset_root
:
data/cityscapes
transforms
:
-
type
:
ResizeStepScaling
min_scale_factor
:
0.5
max_scale_factor
:
2.0
scale_step_size
:
0.25
-
type
:
RandomPaddingCrop
crop_size
:
[
1024
,
512
]
-
type
:
RandomHorizontalFlip
-
type
:
RandomDistort
brightness_range
:
0.5
contrast_range
:
0.5
saturation_range
:
0.5
-
type
:
Normalize
mode
:
train
val_dataset
:
type
:
Cityscapes
dataset_root
:
data/cityscapes
transforms
:
-
type
:
Normalize
mode
:
val
example/auto_compression/semantic_segmentation/run.py
浏览文件 @
763c5f06
...
...
@@ -137,6 +137,7 @@ def main(args):
# step1: load dataset config and create dataloader
data_cfg
=
PaddleSegDataConfig
(
config
[
'reader_config'
])
train_dataset
=
data_cfg
.
train_dataset
global
eval_dataset
eval_dataset
=
data_cfg
.
val_dataset
batch_sampler
=
paddle
.
io
.
DistributedBatchSampler
(
train_dataset
,
...
...
@@ -163,7 +164,7 @@ def main(args):
save_dir
=
args
.
save_dir
,
config
=
all_config
,
train_dataloader
=
train_dataloader
,
eval_callback
=
eval_function
if
nranks
>
1
and
rank_id
!
=
0
else
None
,
eval_callback
=
eval_function
if
rank_id
=
=
0
else
None
,
deploy_hardware
=
config
.
get
(
'deploy_hardware'
)
or
None
,
input_shapes
=
config
.
get
(
'input_shapes'
,
None
))
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录