Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleSlim
提交
880ad20b
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看板
未验证
提交
880ad20b
编写于
10月 13, 2022
作者:
C
Chang Xu
提交者:
GitHub
10月 13, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fix FullQuant Demo (#1459)
上级
7ed2aa7d
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
5 addition
and
17 deletion
+5
-17
example/full_quantization/image_classification/README.md
example/full_quantization/image_classification/README.md
+2
-2
example/full_quantization/image_classification/configs/eval.yaml
.../full_quantization/image_classification/configs/eval.yaml
+0
-7
example/full_quantization/image_classification/configs/mobilenetv3_large_qat_dis.yaml
...age_classification/configs/mobilenetv3_large_qat_dis.yaml
+1
-1
example/full_quantization/image_classification/eval.py
example/full_quantization/image_classification/eval.py
+2
-7
未找到文件。
example/full_quantization/image_classification/README.md
浏览文件 @
880ad20b
...
...
@@ -89,11 +89,11 @@ python -m paddle.distributed.launch run.py --save_dir='./save_quant_mobilev3/' -
**验证精度**
根据训练log可以看到模型验证的精度,若需再次验证精度,修改配置文件
```./configs/
MobileNetV1/
qat_dis.yaml```
中所需验证模型的文件夹路径及模型和参数名称
```model_dir, model_filename, params_filename```
,然后使用以下命令进行验证:
根据训练log可以看到模型验证的精度,若需再次验证精度,修改配置文件
```./configs/
mobilenetv3_large_
qat_dis.yaml```
中所需验证模型的文件夹路径及模型和参数名称
```model_dir, model_filename, params_filename```
,然后使用以下命令进行验证:
```
shell
export
CUDA_VISIBLE_DEVICES
=
0
python eval.py
--config_path
=
'./configs/
eval
.yaml'
python eval.py
--config_path
=
'./configs/
mobilenetv3_large_qat_dis
.yaml'
```
...
...
example/full_quantization/image_classification/configs/eval.yaml
已删除
100644 → 0
浏览文件 @
7ed2aa7d
model_dir
:
./MobileNetV3_large_x1_0_infer
model_filename
:
inference.pdmodel
params_filename
:
inference.pdiparams
batch_size
:
128
data_dir
:
./ILSVRC2012_data_demo/ILSVRC2012/
img_size
:
224
resize_size
:
256
example/full_quantization/image_classification/configs/mobilenetv3_large_qat_dis.yaml
浏览文件 @
880ad20b
...
...
@@ -4,7 +4,7 @@ Global:
model_filename
:
inference.pdmodel
params_filename
:
inference.pdiparams
batch_size
:
128
data_dir
:
./ILSVRC2012
_data_demo/ILSVRC2012
/
data_dir
:
./ILSVRC2012/
Distillation
:
alpha
:
1.0
...
...
example/full_quantization/image_classification/eval.py
浏览文件 @
880ad20b
...
...
@@ -33,11 +33,6 @@ def argsparser():
type
=
str
,
default
=
'./image_classification/configs/eval.yaml'
,
help
=
"path of compression strategy config."
)
parser
.
add_argument
(
'--model_dir'
,
type
=
str
,
default
=
'./MobileNetV1_infer'
,
help
=
'model directory'
)
return
parser
...
...
@@ -92,6 +87,8 @@ def eval():
acc_num
+=
1
top_5
=
float
(
acc_num
)
/
len
(
label
)
results
.
append
([
top_1
,
top_5
])
if
batch_id
%
100
==
0
:
print
(
'Eval iter:'
,
batch_id
)
result
=
np
.
mean
(
np
.
array
(
results
),
axis
=
0
)
return
result
[
0
]
...
...
@@ -103,8 +100,6 @@ def main(args):
global
data_dir
data_dir
=
global_config
[
'data_dir'
]
if
args
.
model_dir
!=
global_config
[
'model_dir'
]:
global_config
[
'model_dir'
]
=
args
.
model_dir
global
img_size
,
resize_size
img_size
=
int
(
global_config
[
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录