Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleDetection
提交
be3adec3
P
PaddleDetection
项目概览
PaddlePaddle
/
PaddleDetection
大约 1 年 前同步成功
通知
695
Star
11112
Fork
2696
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
184
列表
看板
标记
里程碑
合并请求
40
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleDetection
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
184
Issue
184
列表
看板
标记
里程碑
合并请求
40
合并请求
40
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
be3adec3
编写于
2月 20, 2017
作者:
Y
Yu Yang
提交者:
GitHub
2月 20, 2017
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request
#1372
from reyoung/feature/unify_print_layer_evaluator
Unify print layer, ValuePrinter evaluator. Fix #1378
上级
5101adc3
b5b9a9cf
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
65 addition
and
53 deletion
+65
-53
paddle/gserver/evaluators/Evaluator.cpp
paddle/gserver/evaluators/Evaluator.cpp
+2
-24
paddle/gserver/layers/PrintLayer.cpp
paddle/gserver/layers/PrintLayer.cpp
+8
-29
paddle/parameter/Argument.cpp
paddle/parameter/Argument.cpp
+38
-0
paddle/parameter/Argument.h
paddle/parameter/Argument.h
+17
-0
未找到文件。
paddle/gserver/evaluators/Evaluator.cpp
浏览文件 @
be3adec3
...
...
@@ -887,32 +887,10 @@ static InitFunction __reg_type_auc_sum__([]() {
*/
class
ValuePrinter
:
public
Evaluator
{
public:
ValuePrinter
()
{}
virtual
void
eval
(
const
NeuralNetwork
&
nn
)
{
for
(
const
std
::
string
&
name
:
config_
.
input_layers
())
{
const
Argument
&
argu
=
nn
.
getLayer
(
name
)
->
getOutput
();
if
(
argu
.
value
)
{
std
::
ostringstream
os
;
argu
.
value
->
print
(
os
);
LOG
(
INFO
)
<<
"layer="
<<
name
<<
" value matrix:
\n
"
<<
os
.
str
();
}
if
(
argu
.
ids
)
{
std
::
ostringstream
os
;
argu
.
ids
->
print
(
os
,
argu
.
ids
->
getSize
());
LOG
(
INFO
)
<<
"layer="
<<
name
<<
" ids vector:
\n
"
<<
os
.
str
();
}
if
(
auto
startPos
=
argu
.
sequenceStartPositions
)
{
std
::
ostringstream
os
;
startPos
->
getVector
(
false
)
->
print
(
os
,
startPos
->
getSize
());
LOG
(
INFO
)
<<
"layer="
<<
name
<<
" sequence pos vector:
\n
"
<<
os
.
str
();
}
if
(
auto
subStartPos
=
argu
.
subSequenceStartPositions
)
{
std
::
ostringstream
os
;
subStartPos
->
getVector
(
false
)
->
print
(
os
,
subStartPos
->
getSize
());
LOG
(
INFO
)
<<
"layer="
<<
name
<<
" sub-sequence pos vector:
\n
"
<<
os
.
str
();
}
nn
.
getLayer
(
name
)
->
getOutput
().
printValueString
(
LOG
(
INFO
),
"layer="
+
name
+
" "
);
}
}
...
...
paddle/gserver/layers/PrintLayer.cpp
浏览文件 @
be3adec3
...
...
@@ -19,38 +19,17 @@ namespace paddle {
class
PrintLayer
:
public
Layer
{
public:
explicit
PrintLayer
(
const
LayerConfig
&
config
)
:
Layer
(
config
)
{}
void
forward
(
PassType
passType
)
override
;
void
backward
(
const
UpdateCallback
&
callback
)
override
{}
};
void
PrintLayer
::
forward
(
PassType
passType
)
{
Layer
::
forward
(
passType
);
for
(
size_t
i
=
0
;
i
!=
inputLayers_
.
size
();
++
i
)
{
const
auto
&
argu
=
getInput
(
i
);
const
std
::
string
&
name
=
inputLayers_
[
i
]
->
getName
();
if
(
argu
.
value
)
{
std
::
ostringstream
os
;
argu
.
value
->
print
(
os
);
LOG
(
INFO
)
<<
"layer="
<<
name
<<
" value matrix:
\n
"
<<
os
.
str
();
}
if
(
argu
.
ids
)
{
std
::
ostringstream
os
;
argu
.
ids
->
print
(
os
,
argu
.
ids
->
getSize
());
LOG
(
INFO
)
<<
"layer="
<<
name
<<
" ids vector:
\n
"
<<
os
.
str
();
}
if
(
auto
startPos
=
argu
.
sequenceStartPositions
)
{
std
::
ostringstream
os
;
startPos
->
getVector
(
false
)
->
print
(
os
,
startPos
->
getSize
());
LOG
(
INFO
)
<<
"layer="
<<
name
<<
" sequence pos vector:
\n
"
<<
os
.
str
();
}
if
(
auto
subStartPos
=
argu
.
subSequenceStartPositions
)
{
std
::
ostringstream
os
;
subStartPos
->
getVector
(
false
)
->
print
(
os
,
subStartPos
->
getSize
());
LOG
(
INFO
)
<<
"layer="
<<
name
<<
" sub-sequence pos vector:
\n
"
<<
os
.
str
();
void
forward
(
PassType
passType
)
override
{
Layer
::
forward
(
passType
);
for
(
size_t
i
=
0
;
i
!=
inputLayers_
.
size
();
++
i
)
{
getInput
(
i
).
printValueString
(
LOG
(
INFO
),
"layer="
+
inputLayers_
[
i
]
->
getName
()
+
" "
);
}
}
}
void
backward
(
const
UpdateCallback
&
callback
)
override
{}
};
REGISTER_LAYER
(
print
,
PrintLayer
);
...
...
paddle/parameter/Argument.cpp
浏览文件 @
be3adec3
...
...
@@ -602,6 +602,44 @@ void Argument::degradeSequence(const Argument& input, bool useGpu) {
tgtBuf
[
numSequences
]
=
numSubSequences
;
}
void
Argument
::
getValueString
(
std
::
unordered_map
<
std
::
string
,
std
::
string
>*
out
)
const
{
if
(
value
)
{
std
::
ostringstream
os
;
value
->
print
(
os
);
out
->
insert
({
"value"
,
os
.
str
()});
}
if
(
ids
)
{
std
::
ostringstream
os
;
ids
->
print
(
os
,
ids
->
getSize
());
out
->
insert
({
"ids"
,
os
.
str
()});
}
if
(
sequenceStartPositions
)
{
std
::
ostringstream
os
;
sequenceStartPositions
->
getVector
(
false
)
->
print
(
os
,
sequenceStartPositions
->
getSize
());
out
->
insert
({
"sequence pos"
,
os
.
str
()});
}
if
(
subSequenceStartPositions
)
{
std
::
ostringstream
os
;
subSequenceStartPositions
->
getVector
(
false
)
->
print
(
os
,
subSequenceStartPositions
->
getSize
());
out
->
insert
({
"sub-sequence pos"
,
os
.
str
()});
}
}
void
Argument
::
printValueString
(
std
::
ostream
&
stream
,
const
std
::
string
&
prefix
)
const
{
std
::
unordered_map
<
std
::
string
,
std
::
string
>
out
;
getValueString
(
&
out
);
for
(
auto
field
:
{
"value"
,
"id"
,
"sequence pos"
,
"sub-sequence pos"
})
{
auto
it
=
out
.
find
(
field
);
if
(
it
!=
out
.
end
())
{
stream
<<
prefix
<<
field
<<
":
\n
"
<<
it
->
second
;
}
}
}
void
Argument
::
subArgFrom
(
const
Argument
&
input
,
size_t
offset
,
size_t
height
,
...
...
paddle/parameter/Argument.h
浏览文件 @
be3adec3
...
...
@@ -297,6 +297,23 @@ struct Argument {
sequence has sub-sequence degrades to a sequence.
*/
void
degradeSequence
(
const
Argument
&
input
,
bool
useGpu
);
/**
* @brief getValueString will return the argument's output in string. There
* are several kinds of output. The keys of output dictionary are 'value',
* 'id', 'sequence pos', 'sub-sequence pos'.
* @param out [out]: the return values.
*/
void
getValueString
(
std
::
unordered_map
<
std
::
string
,
std
::
string
>*
out
)
const
;
/**
* @brief printValueString will print the argument's output in order of
* 'value', 'id', 'sequence pos', 'sub-sequence pos'.
* @param stream: Output stream
* @param prefix: line prefix for printing.
*/
void
printValueString
(
std
::
ostream
&
stream
,
const
std
::
string
&
prefix
=
""
)
const
;
};
}
// namespace paddle
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录