Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Crayon鑫
Paddle
提交
997cef2e
P
Paddle
项目概览
Crayon鑫
/
Paddle
与 Fork 源项目一致
Fork自
PaddlePaddle / Paddle
通知
1
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
997cef2e
编写于
6月 14, 2017
作者:
X
xzl
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
tiny modify
上级
97a2fde9
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
23 addition
and
22 deletion
+23
-22
paddle/parameter/ParameterUpdaterHook.cpp
paddle/parameter/ParameterUpdaterHook.cpp
+16
-17
python/paddle/trainer/config_parser.py
python/paddle/trainer/config_parser.py
+2
-2
python/paddle/trainer_config_helpers/attrs.py
python/paddle/trainer_config_helpers/attrs.py
+5
-3
未找到文件。
paddle/parameter/ParameterUpdaterHook.cpp
浏览文件 @
997cef2e
...
...
@@ -20,6 +20,7 @@ limitations under the License. */
#include <thread>
#include <unordered_map>
#include <vector>
#include <algorithm>
#include "paddle/math/Vector.h"
#include "paddle/parameter/Parameter.h"
...
...
@@ -60,6 +61,7 @@ public:
maskTemp_
=
Vector
::
create
(
para
->
getSize
(),
false
);
maskTemp_
->
zeroMem
();
real
*
dataPtr
=
maskTemp_
->
getData
();
size_t
sparsityNum
=
para
->
getSize
()
*
(
1
-
sparsityRatio_
);
VectorPtr
vecCpu
=
Vector
::
create
(
para
->
getSize
(),
false
);
vecCpu
->
copyFrom
(
*
vec
);
...
...
@@ -67,10 +69,20 @@ public:
for
(
size_t
i
=
0
;
i
<
para
->
getSize
();
i
++
)
param
.
push_back
(
std
::
make_pair
(
fabs
(
vecCpu
->
getData
()[
i
]),
i
));
std
::
sort
(
param
.
begin
(),
param
.
end
(),
sortPairAscend
);
for
(
size_t
i
=
0
;
i
<
para
->
getSize
()
*
sparsityRatio_
;
i
++
)
dataPtr
[
param
[
i
].
second
]
=
1.0
;
std
::
partial_sort
(
param
.
begin
(),
param
.
begin
()
+
sparsityNum
,
param
.
end
(),
sortPairAscend
);
for
(
size_t
i
=
0
;
i
<
sparsityNum
;
i
++
)
dataPtr
[
param
[
i
].
second
]
=
1.0
;
// Currently just use a mask vector for hack.
if
(
para
->
useGpu
())
{
maskVec_
=
Vector
::
create
(
para
->
getSize
(),
para
->
useGpu
());
maskVec_
->
copyFrom
(
*
maskTemp_
);
}
else
{
maskVec_
=
maskTemp_
;
}
}
void
init
(
Parameter
*
para
)
{
...
...
@@ -81,15 +93,6 @@ public:
VLOG
(
3
)
<<
"Initialize Parameter "
<<
para
;
SetDevice
device
(
para
->
getDeviceId
());
// Currently just use a mask vector for hack.
// @TODO(yuyang18): Implemented the mask operation in vector.
if
(
para
->
useGpu
())
{
maskVec_
=
Vector
::
create
(
para
->
getSize
(),
para
->
useGpu
());
maskVec_
->
copyFrom
(
*
maskTemp_
);
}
else
{
maskVec_
=
maskTemp_
;
}
auto
&
vec
=
para
->
getBuf
(
PARAMETER_VALUE
);
vec
->
dotMul
(
*
maskVec_
);
}
...
...
@@ -136,11 +139,7 @@ static IParameterUpdaterHook* createImpl(
const
ParameterUpdaterHookConfig
&
config
)
{
auto
&
type
=
config
.
type
();
if
(
type
==
"pruning"
)
{
if
(
config
.
has_sparsity_ratio
())
return
new
StaticPruningHook
(
config
);
else
LOG
(
FATAL
)
<<
"There must be sparsity_ratio parameter for "
<<
type
<<
" Hook"
;
}
LOG
(
FATAL
)
<<
"Unknown Hook type: "
<<
type
;
...
...
python/paddle/trainer/config_parser.py
浏览文件 @
997cef2e
...
...
@@ -3175,7 +3175,7 @@ def ParameterHook(type, **kwargs):
hook
=
ParameterUpdaterHookConfig
()
hook
.
type
=
type
sparsity_ratio
=
kwargs
.
get
(
'sparsity_ratio'
,
None
)
assert
sparsity_ratio
is
not
None
if
sparsity_ratio
is
not
None
:
hook
.
sparsity_ratio
=
sparsity_ratio
return
hook
else
:
...
...
python/paddle/trainer_config_helpers/attrs.py
浏览文件 @
997cef2e
...
...
@@ -73,7 +73,9 @@ class HookAttribute(object):
def
__init__
(
self
,
type
,
sparsity_ratio
=
None
):
self
.
type
=
type
self
.
sparsity_ratio
=
sparsity_ratio
assert
is_compatible_with
(
self
.
sparsity_ratio
,
if
self
.
sparsity_ratio
is
not
None
:
assert
is_compatible_with
(
self
.
sparsity_ratio
,
float
),
'sparisity_ratio must be float type'
assert
self
.
sparsity_ratio
<=
1
and
self
.
sparsity_ratio
>=
0
,
'sparisity must be a flaot between [0, 1] '
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录