Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleDetection
提交
2c07dd50
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看板
提交
2c07dd50
编写于
2月 19, 2017
作者:
Y
Yu Yang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Unify print layer, ValuePrinter evaluator.
上级
6089b7c6
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
50 addition
and
42 deletion
+50
-42
paddle/gserver/evaluators/Evaluator.cpp
paddle/gserver/evaluators/Evaluator.cpp
+8
-21
paddle/gserver/layers/PrintLayer.cpp
paddle/gserver/layers/PrintLayer.cpp
+8
-21
paddle/parameter/Argument.cpp
paddle/parameter/Argument.cpp
+26
-0
paddle/parameter/Argument.h
paddle/parameter/Argument.h
+8
-0
未找到文件。
paddle/gserver/evaluators/Evaluator.cpp
浏览文件 @
2c07dd50
...
...
@@ -892,27 +892,14 @@ public:
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
();
auto
&
argu
=
nn
.
getLayer
(
name
)
->
getOutput
();
std
::
unordered_map
<
std
::
string
,
std
::
string
>
out
;
argu
.
getValueString
(
&
out
);
for
(
auto
field
:
{
"value"
,
"id"
,
"sequence pos"
,
"sub-sequence pos"
})
{
auto
it
=
out
.
find
(
field
);
if
(
it
!=
out
.
end
())
{
LOG
(
INFO
)
<<
"layer="
<<
name
<<
" "
<<
field
<<
":
\n
"
<<
it
->
second
;
}
}
}
}
...
...
paddle/gserver/layers/PrintLayer.cpp
浏览文件 @
2c07dd50
...
...
@@ -26,28 +26,15 @@ public:
void
PrintLayer
::
forward
(
PassType
passType
)
{
Layer
::
forward
(
passType
);
for
(
size_t
i
=
0
;
i
!=
inputLayers_
.
size
();
++
i
)
{
const
auto
&
argu
=
getInput
(
i
);
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
();
std
::
unordered_map
<
std
::
string
,
std
::
string
>
out
;
argu
.
getValueString
(
&
out
);
for
(
auto
field
:
{
"value"
,
"id"
,
"sequence pos"
,
"sub-sequence pos"
})
{
auto
it
=
out
.
find
(
field
);
if
(
it
!=
out
.
end
())
{
LOG
(
INFO
)
<<
"layer="
<<
name
<<
" "
<<
field
<<
":
\n
"
<<
it
->
second
;
}
}
}
}
...
...
paddle/parameter/Argument.cpp
浏览文件 @
2c07dd50
...
...
@@ -602,6 +602,32 @@ 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
::
subArgFrom
(
const
Argument
&
input
,
size_t
offset
,
size_t
height
,
...
...
paddle/parameter/Argument.h
浏览文件 @
2c07dd50
...
...
@@ -297,6 +297,14 @@ 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
;
};
}
// namespace paddle
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录