Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
PaddleRec
提交
6789e1e5
P
PaddleRec
项目概览
BaiXuePrincess
/
PaddleRec
与 Fork 源项目一致
Fork自
PaddlePaddle / PaddleRec
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleRec
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
6789e1e5
编写于
8月 27, 2019
作者:
Y
yaopenghui
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add cost monitor
上级
3c1f7791
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
8 addition
and
28 deletion
+8
-28
paddle/fluid/train/custom_trainer/feed/monitor/auc_monitor.cc
...le/fluid/train/custom_trainer/feed/monitor/auc_monitor.cc
+2
-11
paddle/fluid/train/custom_trainer/feed/monitor/cost_monitor.cc
...e/fluid/train/custom_trainer/feed/monitor/cost_monitor.cc
+1
-15
paddle/fluid/train/custom_trainer/feed/monitor/cost_monitor.h
...le/fluid/train/custom_trainer/feed/monitor/cost_monitor.h
+5
-2
未找到文件。
paddle/fluid/train/custom_trainer/feed/monitor/auc_monitor.cc
浏览文件 @
6789e1e5
...
...
@@ -13,14 +13,8 @@ int AucMonitor::initialize(const YAML::Node& config, std::shared_ptr<TrainerCont
_table_size
=
config
[
"table_size"
].
as
<
int
>
();
}
set_table_size
(
_table_size
);
_compute_interval
=
3600
;
if
(
config
[
"compute_interval"
])
{
uint32_t
interval
=
config
[
"compute_interval"
].
as
<
uint32_t
>
();
if
(
interval
!=
3600
||
interval
!=
86400
)
{
LOG
(
FATAL
)
<<
" AucMonitor config compute_interval just support hour: 3600 or day: 86400. "
;
return
-
1
;
}
_compute_interval
=
interval
;
_compute_interval
=
config
[
"compute_interval"
].
as
<
uint32_t
>
();
}
}
...
...
@@ -80,8 +74,7 @@ std::string AucMonitor::format_result() {
if
(
fabs
(
_predicted_ctr
)
>
1e-6
)
{
copc
=
_actual_ctr
/
_predicted_ctr
;
}
char
buf
[
10240
];
snprintf
(
buf
,
10240
*
sizeof
(
char
),
"%s: AUC=%.6f BUCKET_ERROR=%.6f MAE=%.6f RMSE=%.6f "
return
paddle
::
string
::
format_string
(
"%s: AUC=%.6f BUCKET_ERROR=%.6f MAE=%.6f RMSE=%.6f "
"Actual CTR=%.6f Predicted CTR=%.6f COPC=%.6f INS Count=%.0f"
,
Monitor
::
_name
.
c_str
(),
_auc
,
...
...
@@ -92,8 +85,6 @@ std::string AucMonitor::format_result() {
_predicted_ctr
,
copc
,
_size
);
return
std
::
string
(
buf
);
}
void
AucMonitor
::
add_unlocked
(
double
pred
,
int
label
)
{
...
...
paddle/fluid/train/custom_trainer/feed/monitor/cost_monitor.cc
浏览文件 @
6789e1e5
...
...
@@ -6,14 +6,8 @@ namespace feed {
int
CostMonitor
::
initialize
(
const
YAML
::
Node
&
config
,
std
::
shared_ptr
<
TrainerContext
>
context_ptr
)
{
Monitor
::
initialize
(
config
,
context_ptr
);
_compute_interval
=
3600
;
if
(
config
[
"compute_interval"
])
{
uint32_t
interval
=
config
[
"compute_interval"
].
as
<
uint32_t
>
();
if
(
interval
!=
3600
||
interval
!=
86400
)
{
LOG
(
FATAL
)
<<
" AucMonitor config compute_interval just support hour: 3600 or day: 86400. "
;
return
-
1
;
}
_compute_interval
=
interval
;
_compute_interval
=
config
[
"compute_interval"
].
as
<
uint32_t
>
();
}
}
...
...
@@ -36,14 +30,6 @@ bool CostMonitor::need_compute_result(int epoch_id, EpochAccessor* accessor) {
return
true
;
}
std
::
string
CostMonitor
::
format_result
()
{
char
buf
[
1024
];
snprintf
(
buf
,
1024
*
sizeof
(
char
),
"%s: Cost Time=%lu"
,
Monitor
::
_name
.
c_str
(),
_avg_time_ms
);
return
std
::
string
(
buf
);
}
}
// namespace feed
}
// namespace custom_trainer
}
// namespace paddle
paddle/fluid/train/custom_trainer/feed/monitor/cost_monitor.h
浏览文件 @
6789e1e5
...
...
@@ -10,7 +10,7 @@ namespace feed {
// cost time profile
class
CostMonitor
:
public
Monitor
{
public:
CostMonitor
()
:
_total_time_ms
(
0
),
_total_cnt
(
0
),
_avg_time_ms
(
0
)
{}
CostMonitor
()
:
_total_time_ms
(
0
),
_total_cnt
(
0
),
_avg_time_ms
(
0
)
,
_compute_interval
(
0
)
{}
virtual
~
CostMonitor
()
{}
virtual
int
initialize
(
const
YAML
::
Node
&
config
,
...
...
@@ -30,7 +30,10 @@ public:
_avg_time_ms
=
_total_time_ms
/
_total_cnt
;
}
//基于现有结果,输出格式化的统计信息
virtual
std
::
string
format_result
();
virtual
std
::
string
format_result
()
{
return
paddle
::
string
::
format_string
(
"Monitor %s: Cost Time=%lu"
,
Monitor
::
_name
.
c_str
(),
_avg_time_ms
);
}
virtual
void
reset
()
{
_total_time_ms
=
0
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录