Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
models
提交
365971e5
M
models
项目概览
PaddlePaddle
/
models
大约 2 年 前同步成功
通知
232
Star
6828
Fork
2962
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
602
列表
看板
标记
里程碑
合并请求
255
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
M
models
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
602
Issue
602
列表
看板
标记
里程碑
合并请求
255
合并请求
255
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
365971e5
编写于
10月 17, 2019
作者:
L
Liufang Sang
提交者:
whs
10月 17, 2019
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
skip max pool2d in resnet34 test=release/1.6 (#3618)
上级
35a81579
变更
7
隐藏空白更改
内联
并排
Showing
7 changed file
with
19 addition
and
6 deletion
+19
-6
PaddleCV/PaddleDetection/slim/distillation/README.md
PaddleCV/PaddleDetection/slim/distillation/README.md
+2
-0
PaddleCV/PaddleDetection/slim/prune/README.md
PaddleCV/PaddleDetection/slim/prune/README.md
+2
-0
PaddleCV/PaddleDetection/slim/quantization/README.md
PaddleCV/PaddleDetection/slim/quantization/README.md
+2
-0
PaddleSlim/classification/distillation/README.md
PaddleSlim/classification/distillation/README.md
+2
-0
PaddleSlim/classification/models/resnet.py
PaddleSlim/classification/models/resnet.py
+7
-6
PaddleSlim/classification/pruning/README.md
PaddleSlim/classification/pruning/README.md
+2
-0
PaddleSlim/classification/quantization/README.md
PaddleSlim/classification/quantization/README.md
+2
-0
未找到文件。
PaddleCV/PaddleDetection/slim/distillation/README.md
浏览文件 @
365971e5
...
...
@@ -128,6 +128,8 @@ python ../infer.py \
## 示例结果
>当前release的结果并非超参调优后的最好结果,仅做示例参考,后续我们会优化当前结果。
### MobileNetV1-YOLO-V3
| FLOPS |Box AP|
...
...
PaddleCV/PaddleDetection/slim/prune/README.md
浏览文件 @
365971e5
...
...
@@ -209,6 +209,8 @@ python ../infer.py \
## 示例结果
> 当前release的结果并非超参调优后的最好结果,仅做示例参考,后续我们会优化当前结果。
### MobileNetV1-YOLO-V3
| FLOPS |Box AP| model_size |Paddle Fluid inference time(ms)| Paddle Lite inference time(ms)|
...
...
PaddleCV/PaddleDetection/slim/quantization/README.md
浏览文件 @
365971e5
...
...
@@ -224,6 +224,8 @@ FP32模型可使用PaddleLite进行加载预测,可参见教程[Paddle-Lite如
## 示例结果
>当前release的结果并非超参调优后的最好结果,仅做示例参考,后续我们会优化当前结果。
### MobileNetV1
| weight量化方式 | activation量化方式| Box ap |Paddle Fluid inference time(ms)| Paddle Lite inference time(ms)|
...
...
PaddleSlim/classification/distillation/README.md
浏览文件 @
365971e5
...
...
@@ -151,6 +151,8 @@ python infer.py \
## 示例结果
> 当前release的结果并非超参调优后的最好结果,仅做示例参考,后续我们会优化当前结果。
### MobileNetV1
| FLOPS | top1_acc/top5_acc |
...
...
PaddleSlim/classification/models/resnet.py
浏览文件 @
365971e5
...
...
@@ -51,12 +51,13 @@ class ResNet():
stride
=
2
,
act
=
'relu'
,
name
=
prefix_name
+
conv1_name
)
conv
=
fluid
.
layers
.
pool2d
(
input
=
conv
,
pool_size
=
3
,
pool_stride
=
2
,
pool_padding
=
1
,
pool_type
=
'max'
)
with
fluid
.
name_scope
(
"skip_quant"
):
conv
=
fluid
.
layers
.
pool2d
(
input
=
conv
,
pool_size
=
3
,
pool_stride
=
2
,
pool_padding
=
1
,
pool_type
=
'max'
)
if
layers
>=
50
:
for
block
in
range
(
len
(
depth
)):
...
...
PaddleSlim/classification/pruning/README.md
浏览文件 @
365971e5
...
...
@@ -140,6 +140,8 @@ python infer.py \
## 示例结果
>当前release的结果并非超参调优后的最好结果,仅做示例参考,后续我们会优化当前结果。
### MobileNetV1
| FLOPS |top1_acc/top5_acc| model_size |Paddle Fluid inference time(ms)| Paddle Lite inference time(ms)|
...
...
PaddleSlim/classification/quantization/README.md
浏览文件 @
365971e5
...
...
@@ -162,6 +162,8 @@ FP32模型可使用Paddle-Lite进行加载预测,可参见教程[Paddle-Lite
## 示例结果
>当前release的结果并非超参调优后的最好结果,仅做示例参考,后续我们会优化当前结果。
### MobileNetV1
| weight量化方式 | activation量化方式| top1_acc/top5_acc |Paddle Fluid inference time(ms)| Paddle Lite inference time(ms)| 模型下载|
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录