Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleSlim
提交
e95a22ca
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看板
未验证
提交
e95a22ca
编写于
6月 28, 2022
作者:
C
ceci3
提交者:
GitHub
6月 28, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix save_inference_model (#1198)
* fix save_inference_model
上级
a10fc884
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
39 addition
and
26 deletion
+39
-26
paddleslim/auto_compression/auto_strategy.py
paddleslim/auto_compression/auto_strategy.py
+1
-1
paddleslim/auto_compression/compressor.py
paddleslim/auto_compression/compressor.py
+11
-11
paddleslim/auto_compression/utils/fake_ptq.py
paddleslim/auto_compression/utils/fake_ptq.py
+4
-2
paddleslim/auto_compression/utils/load_model.py
paddleslim/auto_compression/utils/load_model.py
+12
-3
paddleslim/auto_compression/utils/prune_model.py
paddleslim/auto_compression/utils/prune_model.py
+8
-6
paddleslim/quant/post_quant_hpo.py
paddleslim/quant/post_quant_hpo.py
+3
-3
未找到文件。
paddleslim/auto_compression/auto_strategy.py
浏览文件 @
e95a22ca
...
...
@@ -105,7 +105,7 @@ def create_strategy_config(strategy_str, model_type):
'prune_strategy'
:
'gmp'
,
### default unstruture prune strategy is gmp
'prune_mode'
:
'ratio'
,
'
pruned_
ratio'
:
float
(
tmp_s
[
1
]),
'ratio'
:
float
(
tmp_s
[
1
]),
'local_sparsity'
:
True
,
'prune_params_type'
:
'conv1x1_only'
}
...
...
paddleslim/auto_compression/compressor.py
浏览文件 @
e95a22ca
...
...
@@ -205,13 +205,14 @@ class AutoCompression:
train_configs
=
[
train_config
]
for
idx
in
range
(
1
,
len
(
self
.
_strategy
)):
if
'qat'
in
self
.
_strategy
[
idx
]:
###
if compress strategy more than one, the train config in the yaml set for prune
###
the train config for quantization is extrapolate from the yaml
if
'qat'
in
self
.
_strategy
[
idx
]
or
'ptq'
in
self
.
_strategy
[
idx
]
:
###
If compress strategy more than one, the TrainConfig in the yaml only used in prune.
###
The TrainConfig for quantization is extrapolate from above.
tmp_train_config
=
copy
.
deepcopy
(
train_config
.
__dict__
)
### the epoch, train_iter, learning rate of quant is 10% of the prune compress
tmp_train_config
[
'epochs'
]
=
max
(
int
(
train_config
.
epochs
*
0.1
),
1
)
if
self
.
model_type
!=
'transformer'
:
tmp_train_config
[
'epochs'
]
=
max
(
int
(
train_config
.
epochs
*
0.1
),
1
)
if
train_config
.
train_iter
is
not
None
:
tmp_train_config
[
'train_iter'
]
=
int
(
train_config
.
train_iter
*
0.1
)
...
...
@@ -228,8 +229,6 @@ class AutoCompression:
map
(
lambda
x
:
x
*
0.1
,
train_config
.
learning_rate
[
'values'
]))
train_cfg
=
TrainConfig
(
**
tmp_train_config
)
elif
'ptq'
in
self
.
_strategy
[
idx
]:
train_cfg
=
None
else
:
tmp_train_config
=
copy
.
deepcopy
(
train_config
.
__dict__
)
train_cfg
=
TrainConfig
(
**
tmp_train_config
)
...
...
@@ -802,11 +801,12 @@ class AutoCompression:
for
name
in
test_program_info
.
feed_target_names
]
model_name
=
'.'
.
join
(
self
.
model_filename
.
split
(
'.'
)[:
-
1
])
if
self
.
model_filename
is
not
None
else
'model'
path_prefix
=
os
.
path
.
join
(
model_dir
,
model_name
)
paddle
.
static
.
save_inference_model
(
path_prefix
=
str
(
model_dir
)
,
path_prefix
=
path_prefix
,
feed_vars
=
feed_vars
,
fetch_vars
=
test_program_info
.
fetch_targets
,
executor
=
self
.
_exe
,
program
=
test_program
,
model_filename
=
self
.
model_filename
,
params_filename
=
self
.
params_filename
)
program
=
test_program
)
paddleslim/auto_compression/utils/fake_ptq.py
浏览文件 @
e95a22ca
import
os
import
paddle
from
paddle.fluid.framework
import
IrGraph
from
paddle.framework
import
core
...
...
@@ -111,10 +112,11 @@ def post_quant_fake(executor,
_program
=
graph
.
to_program
()
feed_vars
=
[
_program
.
global_block
().
var
(
name
)
for
name
in
_feed_list
]
model_name
=
model_filename
.
split
(
'.'
)[
0
]
if
model_filename
is
not
None
else
'model'
save_model_path
=
os
.
path
.
join
(
save_model_path
,
model_name
)
paddle
.
static
.
save_inference_model
(
path_prefix
=
save_model_path
,
model_filename
=
model_filename
,
params_filename
=
params_filename
,
feed_vars
=
feed_vars
,
fetch_vars
=
_fetch_list
,
executor
=
executor
,
...
...
paddleslim/auto_compression/utils/load_model.py
浏览文件 @
e95a22ca
...
...
@@ -12,6 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import
os
import
paddle
__all__
=
[
'load_inference_model'
]
...
...
@@ -29,8 +30,16 @@ def load_inference_model(path_prefix,
model_filename
=
model_filename
,
params_filename
=
params_filename
))
else
:
[
inference_program
,
feed_target_names
,
fetch_targets
]
=
(
paddle
.
static
.
load_inference_model
(
path_prefix
=
path_prefix
,
executor
=
executor
))
model_name
=
'.'
.
join
(
model_filename
.
split
(
'.'
)
[:
-
1
])
if
model_filename
is
not
None
else
'model'
if
os
.
path
.
exists
(
os
.
path
.
join
(
path_prefix
,
model_name
+
'.pdmodel'
)):
model_path_prefix
=
os
.
path
.
join
(
path_prefix
,
model_name
)
[
inference_program
,
feed_target_names
,
fetch_targets
]
=
(
paddle
.
static
.
load_inference_model
(
path_prefix
=
model_path_prefix
,
executor
=
executor
))
else
:
[
inference_program
,
feed_target_names
,
fetch_targets
]
=
(
paddle
.
static
.
load_inference_model
(
path_prefix
=
path_prefix
,
executor
=
executor
))
return
[
inference_program
,
feed_target_names
,
fetch_targets
]
paddleslim/auto_compression/utils/prune_model.py
浏览文件 @
e95a22ca
...
...
@@ -86,14 +86,15 @@ def get_sparse_model(executor, places, model_file, param_file, ratio,
feed_vars
=
[
inference_program
.
global_block
().
var
(
name
)
for
name
in
feed_target_names
]
model_name
=
'.'
.
join
(
model_name
.
split
(
'.'
)
[:
-
1
])
if
model_name
is
not
None
else
'model'
save_path
=
os
.
path
.
join
(
save_path
,
model_name
)
static
.
save_inference_model
(
save_path
,
feed_vars
=
feed_vars
,
fetch_vars
=
fetch_targets
,
executor
=
executor
,
program
=
inference_program
,
model_filename
=
model_name
,
params_filename
=
param_name
)
program
=
inference_program
)
print
(
"The pruned model is saved in: "
,
save_path
)
...
...
@@ -160,11 +161,12 @@ def get_prune_model(executor, places, model_file, param_file, ratio, save_path):
feed_vars
=
[
main_program
.
global_block
().
var
(
name
)
for
name
in
feed_target_names
]
model_name
=
'.'
.
join
(
model_name
.
split
(
'.'
)
[:
-
1
])
if
model_name
is
not
None
else
'model'
save_path
=
os
.
path
.
join
(
save_path
,
model_name
)
static
.
save_inference_model
(
save_path
,
feed_vars
=
feed_vars
,
fetch_vars
=
fetch_targets
,
executor
=
executor
,
program
=
main_program
,
model_filename
=
model_name
,
params_filename
=
param_name
)
program
=
main_program
)
paddleslim/quant/post_quant_hpo.py
浏览文件 @
e95a22ca
...
...
@@ -307,7 +307,7 @@ def quantize(cfg):
quant_scope
=
paddle
.
static
.
Scope
()
with
paddle
.
static
.
scope_guard
(
float_scope
):
[
float_inference_program
,
feed_target_names
,
fetch_targets
]
=
fluid
.
io
.
load_inference_model
(
\
dirname
=
g_quant_config
.
model_filename
,
\
dirname
=
g_quant_config
.
float_infer_model_path
,
\
model_filename
=
g_quant_config
.
model_filename
,
params_filename
=
g_quant_config
.
params_filename
,
executor
=
g_quant_config
.
executor
)
float_metric
=
g_quant_config
.
eval_function
(
...
...
@@ -320,8 +320,8 @@ def quantize(cfg):
model_filename
=
g_quant_config
.
model_filename
,
params_filename
=
g_quant_config
.
params_filename
,
executor
=
g_quant_config
.
executor
)
quant_metric
=
g_quant_config
.
eval_function
(
g_quant_config
.
executor
,
inference_program
,
feed_target_names
,
fetch_targets
)
g_quant_config
.
executor
,
quant_inference_program
,
fe
ed_target_names
,
fe
tch_targets
)
emd_loss
=
float
(
abs
(
float_metric
-
quant_metric
))
/
float_metric
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录