Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
PaddleRec
提交
3d4e61ef
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看板
提交
3d4e61ef
编写于
8月 27, 2019
作者:
X
xiexionghang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix code style
上级
d1e62a0a
变更
22
显示空白变更内容
内联
并排
Showing
22 changed file
with
124 addition
and
82 deletion
+124
-82
paddle/fluid/train/custom_trainer/feed/accessor/epoch_accessor.cc
...luid/train/custom_trainer/feed/accessor/epoch_accessor.cc
+1
-1
paddle/fluid/train/custom_trainer/feed/common/pslib_warpper.h
...le/fluid/train/custom_trainer/feed/common/pslib_warpper.h
+0
-14
paddle/fluid/train/custom_trainer/feed/common/runtime_environment.cc
...d/train/custom_trainer/feed/common/runtime_environment.cc
+8
-12
paddle/fluid/train/custom_trainer/feed/common/runtime_environment.h
...id/train/custom_trainer/feed/common/runtime_environment.h
+15
-5
paddle/fluid/train/custom_trainer/feed/conf/gflags.conf
paddle/fluid/train/custom_trainer/feed/conf/gflags.conf
+1
-1
paddle/fluid/train/custom_trainer/feed/executor/multi_thread_executor.cc
...ain/custom_trainer/feed/executor/multi_thread_executor.cc
+30
-2
paddle/fluid/train/custom_trainer/feed/executor/multi_thread_executor.h
...rain/custom_trainer/feed/executor/multi_thread_executor.h
+2
-0
paddle/fluid/train/custom_trainer/feed/monitor/auc_monitor.cc
...le/fluid/train/custom_trainer/feed/monitor/auc_monitor.cc
+25
-32
paddle/fluid/train/custom_trainer/feed/monitor/auc_monitor.h
paddle/fluid/train/custom_trainer/feed/monitor/auc_monitor.h
+5
-7
paddle/fluid/train/custom_trainer/feed/monitor/monitor.h
paddle/fluid/train/custom_trainer/feed/monitor/monitor.h
+6
-2
paddle/fluid/train/custom_trainer/feed/scripts/create_programs.py
...luid/train/custom_trainer/feed/scripts/create_programs.py
+10
-3
paddle/fluid/train/custom_trainer/feed/scripts/example.py
paddle/fluid/train/custom_trainer/feed/scripts/example.py
+1
-1
paddle/fluid/train/custom_trainer/feed/scripts/join.py
paddle/fluid/train/custom_trainer/feed/scripts/join.py
+5
-1
paddle/fluid/train/custom_trainer/feed/scripts/model/join/main_program
...train/custom_trainer/feed/scripts/model/join/main_program
+0
-0
paddle/fluid/train/custom_trainer/feed/scripts/model/join/model.yaml
...d/train/custom_trainer/feed/scripts/model/join/model.yaml
+5
-0
paddle/fluid/train/custom_trainer/feed/scripts/model/join/startup_program
...in/custom_trainer/feed/scripts/model/join/startup_program
+0
-0
paddle/fluid/train/custom_trainer/feed/scripts/model/join/test_program
...train/custom_trainer/feed/scripts/model/join/test_program
+0
-0
paddle/fluid/train/custom_trainer/feed/scripts/model/update/main_program
...ain/custom_trainer/feed/scripts/model/update/main_program
+0
-0
paddle/fluid/train/custom_trainer/feed/scripts/model/update/model.yaml
...train/custom_trainer/feed/scripts/model/update/model.yaml
+5
-0
paddle/fluid/train/custom_trainer/feed/scripts/model/update/startup_program
.../custom_trainer/feed/scripts/model/update/startup_program
+0
-0
paddle/fluid/train/custom_trainer/feed/scripts/model/update/test_program
...ain/custom_trainer/feed/scripts/model/update/test_program
+0
-0
paddle/fluid/train/custom_trainer/feed/scripts/update.py
paddle/fluid/train/custom_trainer/feed/scripts/update.py
+5
-1
未找到文件。
paddle/fluid/train/custom_trainer/feed/accessor/epoch_accessor.cc
浏览文件 @
3d4e61ef
...
@@ -126,7 +126,7 @@ namespace feed {
...
@@ -126,7 +126,7 @@ namespace feed {
case
ModelSaveWay
::
ModelSaveInferenceBase
:
case
ModelSaveWay
::
ModelSaveInferenceBase
:
return
is_last_epoch
(
epoch_id
);
return
is_last_epoch
(
epoch_id
);
case
ModelSaveWay
::
ModelSaveTrainCheckpoint
:
case
ModelSaveWay
::
ModelSaveTrainCheckpoint
:
return
((
epoch_id
/
SecondsPerHour
)
%
8
)
==
0
;
return
delta_id
(
epoch_id
)
%
8
==
0
;
}
}
return
false
;
return
false
;
}
}
...
...
paddle/fluid/train/custom_trainer/feed/common/pslib_warpper.h
浏览文件 @
3d4e61ef
/* Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License. */
#pragma once
#pragma once
// Hide BLOG
// Hide BLOG
...
...
paddle/fluid/train/custom_trainer/feed/common/runtime_environment.cc
浏览文件 @
3d4e61ef
...
@@ -139,14 +139,13 @@ public:
...
@@ -139,14 +139,13 @@ public:
ar
.
SetCursor
(
ar
.
Buffer
());
ar
.
SetCursor
(
ar
.
Buffer
());
MPI_Bcast
(
ar
.
Buffer
(),
len
,
MPI_BYTE
,
root_id
,
node_info
.
mpi_comm
);
MPI_Bcast
(
ar
.
Buffer
(),
len
,
MPI_BYTE
,
root_id
,
node_info
.
mpi_comm
);
}
}
virtual
void
all_reduce_in_place
(
double
*
x
,
int
n
,
ReduceOperator
op
,
EnvironmentRole
role
)
{
virtual
double
all_reduce_ele
(
double
x
)
{
auto
&
node_info
=
mpi_node_info
(
role
);
double
tot
=
0.0
;
if
(
op
==
ReduceOperator
::
SUM
)
{
MPI_Allreduce
(
&
x
,
&
tot
,
1
,
mpi_type_trait
<
double
>::
type
(),
MPI_SUM
,
MPI_COMM_WORLD
);
MPI_Allreduce
(
MPI_IN_PLACE
,
x
,
n
,
MPI_DOUBLE
,
MPI_SUM
,
node_info
.
mpi_comm
);
return
tot
;
}
else
{
CHECK
(
false
)
<<
"unsupport operator"
;
}
}
virtual
void
all_reduce_arr
(
double
*
x
,
int
n
)
{
MPI_Allreduce
(
MPI_IN_PLACE
,
x
,
n
,
mpi_type_trait
<
double
>::
type
(),
MPI_SUM
,
MPI_COMM_WORLD
);
}
}
protected:
protected:
...
@@ -201,10 +200,7 @@ public:
...
@@ -201,10 +200,7 @@ public:
virtual
void
bcast
(
paddle
::
framework
::
BinaryArchive
&
ar
,
int
root_id
,
EnvironmentRole
role
)
{
virtual
void
bcast
(
paddle
::
framework
::
BinaryArchive
&
ar
,
int
root_id
,
EnvironmentRole
role
)
{
return
;
return
;
}
}
virtual
double
all_reduce_ele
(
double
x
)
{
virtual
void
all_reduce_in_place
(
double
*
x
,
int
n
,
ReduceOperator
op
,
EnvironmentRole
role
)
{
return
x
;
}
virtual
void
all_reduce_arr
(
double
*
x
,
int
n
)
{
return
;
return
;
}
}
protected:
protected:
...
...
paddle/fluid/train/custom_trainer/feed/common/runtime_environment.h
浏览文件 @
3d4e61ef
...
@@ -27,7 +27,7 @@ enum class EnvironmentLogType {
...
@@ -27,7 +27,7 @@ enum class EnvironmentLogType {
ALL_LOG
=
1
//所有节点都会对外输出
ALL_LOG
=
1
//所有节点都会对外输出
};
};
//保持该枚举值的连续递增,且ALL在尾部
//
保持该枚举值的连续递增,且ALL在尾部
enum
class
EnvironmentRole
{
enum
class
EnvironmentRole
{
WORKER
=
0
,
//训练Worker
WORKER
=
0
,
//训练Worker
PSERVER
=
1
,
//参数服务器
PSERVER
=
1
,
//参数服务器
...
@@ -35,6 +35,11 @@ enum class EnvironmentRole {
...
@@ -35,6 +35,11 @@ enum class EnvironmentRole {
ALL
=
2
//所有角色,请保持在枚举尾部
ALL
=
2
//所有角色,请保持在枚举尾部
};
};
// Reduce的操作类型
enum
class
ReduceOperator
{
SUM
=
0
//求和
};
class
RuntimeEnvironment
{
class
RuntimeEnvironment
{
public:
public:
RuntimeEnvironment
();
RuntimeEnvironment
();
...
@@ -72,10 +77,15 @@ public:
...
@@ -72,10 +77,15 @@ public:
virtual
void
barrier
(
EnvironmentRole
role
)
=
0
;
virtual
void
barrier
(
EnvironmentRole
role
)
=
0
;
// bcast 广播
// bcast 广播
virtual
void
bcast
(
paddle
::
framework
::
BinaryArchive
&
ar
,
int
root_id
,
EnvironmentRole
role
)
=
0
;
virtual
void
bcast
(
paddle
::
framework
::
BinaryArchive
&
ar
,
int
root_id
,
EnvironmentRole
role
)
=
0
;
// all_reduce sum element 规约元素
// 全局reduce操作, 返回reduce结果
virtual
double
all_reduce_ele
(
double
x
)
=
0
;
virtual
double
all_reduce
(
double
x
,
ReduceOperator
op
,
EnvironmentRole
role
)
{
// all_reduce sum array 规约数组
double
result
=
x
;
virtual
void
all_reduce_arr
(
double
*
x
,
int
n
)
=
0
;
all_reduce_in_place
(
&
result
,
1
,
op
,
role
);
return
result
;
}
// 全局reduce,就地执行
virtual
void
all_reduce_in_place
(
double
*
x
,
int
n
,
ReduceOperator
op
,
EnvironmentRole
role
)
=
0
;
// 接口只允许在主线程调用 End
// 接口只允许在主线程调用 End
protected:
protected:
virtual
void
print_log
(
EnvironmentRole
role
,
EnvironmentLogType
type
,
virtual
void
print_log
(
EnvironmentRole
role
,
EnvironmentLogType
type
,
...
...
paddle/fluid/train/custom_trainer/feed/conf/gflags.conf
浏览文件 @
3d4e61ef
-
log_dir
=
log
-
log_dir
=
log
-
v
=
4
-
v
=
2
-
logbufsecs
=
0
-
logbufsecs
=
0
-
pslib_push_dense_merge_limit
=
1
-
pslib_push_dense_merge_limit
=
1
-
pslib_push_sparse_merge_limit
=
1
-
pslib_push_sparse_merge_limit
=
1
paddle/fluid/train/custom_trainer/feed/executor/multi_thread_executor.cc
浏览文件 @
3d4e61ef
#include "paddle/fluid/train/custom_trainer/feed/io/file_system.h"
#include "paddle/fluid/train/custom_trainer/feed/io/file_system.h"
#include "paddle/fluid/train/custom_trainer/feed/monitor/monitor.h"
#include "paddle/fluid/train/custom_trainer/feed/executor/multi_thread_executor.h"
#include "paddle/fluid/train/custom_trainer/feed/executor/multi_thread_executor.h"
namespace
paddle
{
namespace
paddle
{
...
@@ -63,11 +64,23 @@ int MultiThreadExecutor::initialize(YAML::Node exe_config,
...
@@ -63,11 +64,23 @@ int MultiThreadExecutor::initialize(YAML::Node exe_config,
}
}
}
}
// Monitor组件
for
(
const
auto
&
monitor_config
:
_model_config
[
"monitor"
])
{
auto
monitor_class
=
monitor_config
[
"class"
].
as
<
std
::
string
>
();
auto
*
monitor_ptr
=
CREATE_INSTANCE
(
Monitor
,
monitor_class
);
_monitors
.
emplace_back
(
monitor_ptr
);
CHECK
(
monitor_ptr
->
initialize
(
monitor_config
,
context_ptr
)
==
0
)
<<
"Monitor init Failed, class:"
<<
monitor_class
;
}
return
ret
;
return
ret
;
}
}
paddle
::
framework
::
Channel
<
DataItem
>
MultiThreadExecutor
::
run
(
paddle
::
framework
::
Channel
<
DataItem
>
MultiThreadExecutor
::
run
(
paddle
::
framework
::
Channel
<
DataItem
>
input
,
const
DataParser
*
parser
)
{
paddle
::
framework
::
Channel
<
DataItem
>
input
,
const
DataParser
*
parser
)
{
uint64_t
epoch_id
=
_trainer_context
->
epoch_accessor
->
current_epoch_id
();
// 输入流
PipelineOptions
input_pipe_option
;
PipelineOptions
input_pipe_option
;
input_pipe_option
.
need_hold_input_data
=
true
;
input_pipe_option
.
need_hold_input_data
=
true
;
input_pipe_option
.
batch_size
=
1
;
input_pipe_option
.
batch_size
=
1
;
...
@@ -97,6 +110,7 @@ paddle::framework::Channel<DataItem> MultiThreadExecutor::run(
...
@@ -97,6 +110,7 @@ paddle::framework::Channel<DataItem> MultiThreadExecutor::run(
return
0
;
return
0
;
});
});
// 训练流
PipelineOptions
train_pipe_option
;
PipelineOptions
train_pipe_option
;
train_pipe_option
.
input_output_rate
=
1
;
train_pipe_option
.
input_output_rate
=
1
;
train_pipe_option
.
thread_num
=
_train_thread_num
;
train_pipe_option
.
thread_num
=
_train_thread_num
;
...
@@ -108,19 +122,20 @@ paddle::framework::Channel<DataItem> MultiThreadExecutor::run(
...
@@ -108,19 +122,20 @@ paddle::framework::Channel<DataItem> MultiThreadExecutor::run(
auto
*
executor
=
_thread_executors
[
thread_idx
].
get
();
auto
*
executor
=
_thread_executors
[
thread_idx
].
get
();
size_t
&
out_idx
=
*
out_num
;
size_t
&
out_idx
=
*
out_num
;
for
(
out_idx
=
0
;
out_idx
<
in_num
;
++
out_idx
)
{
for
(
out_idx
=
0
;
out_idx
<
in_num
;
++
out_idx
)
{
//
CHECK(executor->run(in_items[out_idx].get()) == 0);
CHECK
(
executor
->
run
(
in_items
[
out_idx
].
get
())
==
0
);
out_items
[
out_idx
]
=
std
::
move
(
in_items
[
out_idx
]);
out_items
[
out_idx
]
=
std
::
move
(
in_items
[
out_idx
]);
}
}
return
0
;
return
0
;
});
});
// 梯度回传流
PipelineOptions
gradient_pipe_option
;
PipelineOptions
gradient_pipe_option
;
gradient_pipe_option
.
input_output_rate
=
1
;
gradient_pipe_option
.
input_output_rate
=
1
;
gradient_pipe_option
.
thread_num
=
_push_gradient_thread_num
;
gradient_pipe_option
.
thread_num
=
_push_gradient_thread_num
;
gradient_pipe_option
.
buffer_batch_count
=
2
*
_train_thread_num
;
gradient_pipe_option
.
buffer_batch_count
=
2
*
_train_thread_num
;
auto
gradient_pipe
=
std
::
make_shared
<
Pipeline
<
ScopePoolObj
,
int
>>
();
auto
gradient_pipe
=
std
::
make_shared
<
Pipeline
<
ScopePoolObj
,
int
>>
();
gradient_pipe
->
connect_to
(
*
train_pipe
,
gradient_pipe_option
,
gradient_pipe
->
connect_to
(
*
train_pipe
,
gradient_pipe_option
,
[
this
]
(
ScopePoolObj
*
in_items
,
size_t
in_num
,
[
epoch_id
,
this
]
(
ScopePoolObj
*
in_items
,
size_t
in_num
,
int
*
out_items
,
size_t
*
out_num
,
size_t
thread_idx
)
->
int
{
int
*
out_items
,
size_t
*
out_num
,
size_t
thread_idx
)
->
int
{
size_t
&
out_idx
=
*
out_num
;
size_t
&
out_idx
=
*
out_num
;
for
(
out_idx
=
0
;
out_idx
<
in_num
;
++
out_idx
)
{
for
(
out_idx
=
0
;
out_idx
<
in_num
;
++
out_idx
)
{
...
@@ -134,14 +149,27 @@ paddle::framework::Channel<DataItem> MultiThreadExecutor::run(
...
@@ -134,14 +149,27 @@ paddle::framework::Channel<DataItem> MultiThreadExecutor::run(
out_items
[
out_idx
]
=
_input_accessors
[
i
]
->
out_items
[
out_idx
]
=
_input_accessors
[
i
]
->
backward
(
samples
,
sample_num
,
scope
);
backward
(
samples
,
sample_num
,
scope
);
}
}
for
(
auto
&
monitor
:
_monitors
)
{
monitor
->
add_data
(
epoch_id
,
this
,
samples
,
sample_num
);
}
delete
[]
samples
;
// 所有pipe完成后,再回收sample
delete
[]
samples
;
// 所有pipe完成后,再回收sample
}
}
return
0
;
return
0
;
});
});
// 等待训练流结束
std
::
vector
<
int
>
gradient_status
;
std
::
vector
<
int
>
gradient_status
;
while
(
gradient_pipe
->
read
(
gradient_status
)
>
0
)
{
while
(
gradient_pipe
->
read
(
gradient_status
)
>
0
)
{
}
}
// 输出相关监控&统计项
for
(
auto
&
monitor
:
_monitors
)
{
if
(
monitor
->
need_compute_result
(
epoch_id
))
{
monitor
->
compute_result
();
VLOG
(
2
)
<<
"[Monitor]"
<<
_train_exe_name
<<
", monitor:"
<<
monitor
->
get_name
()
<<
", result:"
<<
monitor
->
format_result
();
monitor
->
reset
();
}
}
return
input_pipe
->
backup_channel
();
return
input_pipe
->
backup_channel
();
}
}
...
...
paddle/fluid/train/custom_trainer/feed/executor/multi_thread_executor.h
浏览文件 @
3d4e61ef
...
@@ -8,6 +8,7 @@ namespace paddle {
...
@@ -8,6 +8,7 @@ namespace paddle {
namespace
custom_trainer
{
namespace
custom_trainer
{
namespace
feed
{
namespace
feed
{
class
Monitor
;
typedef
paddle
::
ps
::
ObjectPool
<::
paddle
::
framework
::
Scope
>::
PooledObject
ScopePoolObj
;
typedef
paddle
::
ps
::
ObjectPool
<::
paddle
::
framework
::
Scope
>::
PooledObject
ScopePoolObj
;
class
MultiThreadExecutor
{
class
MultiThreadExecutor
{
...
@@ -50,6 +51,7 @@ protected:
...
@@ -50,6 +51,7 @@ protected:
YAML
::
Node
_model_config
;
YAML
::
Node
_model_config
;
std
::
string
_train_exe_name
;
std
::
string
_train_exe_name
;
TrainerContext
*
_trainer_context
=
nullptr
;
TrainerContext
*
_trainer_context
=
nullptr
;
std
::
vector
<
std
::
shared_ptr
<
Monitor
>>
_monitors
;
std
::
vector
<
std
::
shared_ptr
<
Executor
>>
_thread_executors
;
std
::
vector
<
std
::
shared_ptr
<
Executor
>>
_thread_executors
;
std
::
vector
<
std
::
shared_ptr
<
DataInputAccessor
>>
_input_accessors
;
std
::
vector
<
std
::
shared_ptr
<
DataInputAccessor
>>
_input_accessors
;
std
::
map
<
uint32_t
,
std
::
vector
<
DataInputAccessor
*>>
_table_to_accessors
;
std
::
map
<
uint32_t
,
std
::
vector
<
DataInputAccessor
*>>
_table_to_accessors
;
...
...
paddle/fluid/train/custom_trainer/feed/monitor/auc_monitor.cc
浏览文件 @
3d4e61ef
...
@@ -6,8 +6,8 @@ namespace feed {
...
@@ -6,8 +6,8 @@ namespace feed {
int
AucMonitor
::
initialize
(
const
YAML
::
Node
&
config
,
std
::
shared_ptr
<
TrainerContext
>
context_ptr
)
{
int
AucMonitor
::
initialize
(
const
YAML
::
Node
&
config
,
std
::
shared_ptr
<
TrainerContext
>
context_ptr
)
{
Monitor
::
initialize
(
config
,
context_ptr
);
Monitor
::
initialize
(
config
,
context_ptr
);
_target_idx
=
config
[
"target_idx"
].
as
<
int32_t
>
();
_target_name
=
config
[
"target"
].
as
<
std
::
string
>
();
_target_name
=
config
[
"target"
].
as
<
std
::
string
>
();
_label_name
=
config
[
"label"
].
as
<
std
::
string
>
();
_table_size
=
1000000
;
_table_size
=
1000000
;
if
(
config
[
"table_size"
])
{
if
(
config
[
"table_size"
])
{
_table_size
=
config
[
"table_size"
].
as
<
int
>
();
_table_size
=
config
[
"table_size"
].
as
<
int
>
();
...
@@ -15,45 +15,34 @@ int AucMonitor::initialize(const YAML::Node& config, std::shared_ptr<TrainerCont
...
@@ -15,45 +15,34 @@ int AucMonitor::initialize(const YAML::Node& config, std::shared_ptr<TrainerCont
set_table_size
(
_table_size
);
set_table_size
(
_table_size
);
_compute_interval
=
3600
;
_compute_interval
=
3600
;
if
(
config
[
"compute_interval"
])
{
if
(
config
[
"compute_interval"
])
{
uint32_t
interval
=
config
[
"compute_interval"
].
as
<
uint32_t
>
();
_compute_interval
=
config
[
"compute_interval"
].
as
<
uint32_t
>
();
if
(
interval
!=
3600
||
interval
!=
86400
)
{
CHECK
(
_compute_interval
%
60
==
0
);
LOG
(
FATAL
)
<<
" AucMonitor config compute_interval just support hour: 3600 or day: 86400. "
;
return
-
1
;
}
_compute_interval
=
interval
;
}
}
return
0
;
}
}
void
AucMonitor
::
add_data
(
int
epoch_id
,
const
Executor
*
executor
,
SampleInstance
*
instance
,
size_t
num
)
{
void
AucMonitor
::
add_data
(
int
epoch_id
,
if
(
executor
==
nullptr
const
MultiThreadExecutor
*
executor
,
SampleInstance
*
samples
,
size_t
num
)
{
||
instance
==
nullptr
CHECK
(
num
>
0
);
||
instance
->
predicts
.
empty
()
||
instance
->
labels
.
empty
()
||
num
<=
0
||
instance
->
predicts
.
size
()
<
num
||
instance
->
labels
.
size
()
<
num
)
{
LOG
(
FATAL
)
<<
"AucMonitor add predict data is invalid, predicts or labels is empty, num["
<<
num
<<
"]"
;
return
;
}
std
::
lock_guard
<
std
::
mutex
>
lock
(
_mutex
);
std
::
lock_guard
<
std
::
mutex
>
lock
(
_mutex
);
for
(
int
i
=
0
;
i
<
num
;
++
i
)
{
for
(
int
i
=
0
;
i
<
num
;
++
i
)
{
add_unlocked
(
instance
->
predicts
[
i
],
std
::
lround
(
instance
->
labels
[
i
]));
auto
&
instance
=
samples
[
i
];
add_unlocked
(
instance
.
predicts
[
_target_idx
],
std
::
lround
(
instance
.
labels
[
_target_idx
]));
}
}
}
}
bool
AucMonitor
::
need_compute_result
(
int
epoch_id
,
EpochAccessor
*
accessor
)
{
bool
AucMonitor
::
need_compute_result
(
int
epoch_id
)
{
CHECK
(
accessor
!=
nullptr
);
CHECK
(
_epoch_accessor
!=
nullptr
);
uint64_t
epoch_time
=
accessor
->
epoch_timestamp
(
epoch_id
);
uint64_t
epoch_time
=
_epoch_accessor
->
epoch_timestamp
(
epoch_id
);
if
(
epoch_time
%
_compute_interval
!=
0
)
{
return
epoch_time
%
_compute_interval
==
0
;
return
false
;
}
return
true
;
}
}
void
AucMonitor
::
compute_result
()
{
void
AucMonitor
::
compute_result
()
{
auto
*
environment
=
Monitor
::
_context_ptr
->
environment
.
get
();
double
*
table
[
2
]
=
{
&
_table
[
0
][
0
],
&
_table
[
1
][
0
]};
double
*
table
[
2
]
=
{
&
_table
[
0
][
0
],
&
_table
[
1
][
0
]};
for
(
int
i
=
0
;
i
<
2
;
i
++
)
{
for
(
int
i
=
0
;
i
<
2
;
i
++
)
{
Monitor
::
_context_ptr
->
environment
->
all_reduce_arr
(
table
[
i
],
_table_size
);
environment
->
all_reduce_in_place
(
table
[
i
],
_table_size
,
ReduceOperator
::
SUM
,
EnvironmentRole
::
WORKER
);
}
}
double
area
=
0
;
double
area
=
0
;
double
fp
=
0
;
double
fp
=
0
;
...
@@ -66,11 +55,14 @@ void AucMonitor::compute_result() {
...
@@ -66,11 +55,14 @@ void AucMonitor::compute_result() {
tp
=
newtp
;
tp
=
newtp
;
}
}
_auc
=
area
/
(
fp
*
tp
);
_auc
=
area
/
(
fp
*
tp
);
_mae
=
Monitor
::
_context_ptr
->
environment
->
all_reduce_ele
(
_local_abserr
)
/
(
fp
+
tp
);
_mae
=
environment
->
all_reduce
(
_local_abserr
,
_rmse
=
sqrt
(
Monitor
::
_context_ptr
->
environment
->
all_reduce_ele
(
_local_sqrerr
)
/
(
fp
+
tp
));
ReduceOperator
::
SUM
,
EnvironmentRole
::
WORKER
)
/
(
fp
+
tp
);
_rmse
=
sqrt
(
environment
->
all_reduce
(
_local_sqrerr
,
ReduceOperator
::
SUM
,
EnvironmentRole
::
WORKER
)
/
(
fp
+
tp
));
_rmse
=
sqrt
(
_rmse
/
(
fp
+
tp
));
_rmse
=
sqrt
(
_rmse
/
(
fp
+
tp
));
_actual_ctr
=
tp
/
(
fp
+
tp
);
_actual_ctr
=
tp
/
(
fp
+
tp
);
_predicted_ctr
=
Monitor
::
_context_ptr
->
environment
->
all_reduce_ele
(
_local_pred
)
/
(
fp
+
tp
);
_predicted_ctr
=
environment
->
all_reduce
(
_local_pred
,
ReduceOperator
::
SUM
,
EnvironmentRole
::
WORKER
)
/
(
fp
+
tp
);
_size
=
fp
+
tp
;
_size
=
fp
+
tp
;
calculate_bucket_error
();
calculate_bucket_error
();
}
}
...
@@ -81,9 +73,8 @@ std::string AucMonitor::format_result() {
...
@@ -81,9 +73,8 @@ std::string AucMonitor::format_result() {
copc
=
_actual_ctr
/
_predicted_ctr
;
copc
=
_actual_ctr
/
_predicted_ctr
;
}
}
char
buf
[
10240
];
char
buf
[
10240
];
snprintf
(
buf
,
10240
*
sizeof
(
char
),
"
%s:
AUC=%.6f BUCKET_ERROR=%.6f MAE=%.6f RMSE=%.6f "
snprintf
(
buf
,
10240
*
sizeof
(
char
),
"AUC=%.6f BUCKET_ERROR=%.6f MAE=%.6f RMSE=%.6f "
"Actual CTR=%.6f Predicted CTR=%.6f COPC=%.6f INS Count=%.0f"
,
"Actual CTR=%.6f Predicted CTR=%.6f COPC=%.6f INS Count=%.0f"
,
Monitor
::
_name
.
c_str
(),
_auc
,
_auc
,
_bucket_error
,
_bucket_error
,
_mae
,
_mae
,
...
@@ -157,6 +148,8 @@ void AucMonitor::reset() {
...
@@ -157,6 +148,8 @@ void AucMonitor::reset() {
_local_pred
=
0
;
_local_pred
=
0
;
}
}
REGIST_CLASS
(
Monitor
,
AucMonitor
);
}
// namespace feed
}
// namespace feed
}
// namespace custom_trainer
}
// namespace custom_trainer
}
// namespace paddle
}
// namespace paddle
paddle/fluid/train/custom_trainer/feed/monitor/auc_monitor.h
浏览文件 @
3d4e61ef
...
@@ -18,13 +18,11 @@ public:
...
@@ -18,13 +18,11 @@ public:
std
::
shared_ptr
<
TrainerContext
>
context_ptr
)
override
;
std
::
shared_ptr
<
TrainerContext
>
context_ptr
)
override
;
//添加一项记录,统计内容Monitor自行从Executor按需获取
//添加一项记录,统计内容Monitor自行从Executor按需获取
virtual
void
add_data
(
int
epoch_id
,
virtual
void
add_data
(
int
epoch_id
,
const
MultiThreadExecutor
*
executor
,
const
Executor
*
executor
,
SampleInstance
*
samples
,
size_t
num
);
SampleInstance
*
instance
,
size_t
num
);
//是否开始结果统计
//是否开始结果统计
virtual
bool
need_compute_result
(
int
epoch_id
,
EpochAccessor
*
accessor
);
virtual
bool
need_compute_result
(
int
epoch_id
);
//统计当前结果
//统计当前结果
virtual
void
compute_result
();
virtual
void
compute_result
();
//基于现有结果,输出格式化的统计信息
//基于现有结果,输出格式化的统计信息
...
@@ -33,7 +31,7 @@ public:
...
@@ -33,7 +31,7 @@ public:
virtual
void
reset
();
virtual
void
reset
();
protected:
protected:
std
::
string
_label_name
;
uint32_t
_target_idx
;
std
::
string
_target_name
;
std
::
string
_target_name
;
std
::
string
_name
;
std
::
string
_name
;
std
::
string
_output_var
;
std
::
string
_output_var
;
...
...
paddle/fluid/train/custom_trainer/feed/monitor/monitor.h
浏览文件 @
3d4e61ef
...
@@ -9,6 +9,7 @@
...
@@ -9,6 +9,7 @@
namespace
paddle
{
namespace
paddle
{
namespace
custom_trainer
{
namespace
custom_trainer
{
namespace
feed
{
namespace
feed
{
class
MultiThreadExecutor
;
class
Monitor
{
class
Monitor
{
public:
public:
...
@@ -19,14 +20,16 @@ public:
...
@@ -19,14 +20,16 @@ public:
std
::
shared_ptr
<
TrainerContext
>
context_ptr
)
{
std
::
shared_ptr
<
TrainerContext
>
context_ptr
)
{
_name
=
config
[
"name"
].
as
<
std
::
string
>
();
_name
=
config
[
"name"
].
as
<
std
::
string
>
();
_context_ptr
=
context_ptr
;
_context_ptr
=
context_ptr
;
_epoch_accessor
=
_context_ptr
->
epoch_accessor
.
get
();
return
0
;
return
0
;
}
}
//添加一项记录,统计内容Monitor自行从Executor按需获取
//添加一项记录,统计内容Monitor自行从Executor按需获取
virtual
void
add_data
(
int
epoch_id
,
const
Executor
*
executor
,
SampleInstance
*
instance
,
size_t
num
)
=
0
;
virtual
void
add_data
(
int
epoch_id
,
const
MultiThreadExecutor
*
executor
,
SampleInstance
*
samples
,
size_t
num
)
=
0
;
//是否对于当前epoch_id进行结果统计
//是否对于当前epoch_id进行结果统计
virtual
bool
need_compute_result
(
int
epoch_id
,
EpochAccessor
*
accessor
)
=
0
;
virtual
bool
need_compute_result
(
int
epoch_id
)
=
0
;
//统计当前结果
//统计当前结果
virtual
void
compute_result
()
=
0
;
virtual
void
compute_result
()
=
0
;
//基于现有结果,输出格式化的统计信息
//基于现有结果,输出格式化的统计信息
...
@@ -40,6 +43,7 @@ public:
...
@@ -40,6 +43,7 @@ public:
protected:
protected:
std
::
string
_name
;
std
::
string
_name
;
EpochAccessor
*
_epoch_accessor
=
nullptr
;
std
::
shared_ptr
<
TrainerContext
>
_context_ptr
;
std
::
shared_ptr
<
TrainerContext
>
_context_ptr
;
};
};
...
...
paddle/fluid/train/custom_trainer/feed/scripts/create_programs.py
浏览文件 @
3d4e61ef
...
@@ -95,7 +95,8 @@ class ModelBuilder:
...
@@ -95,7 +95,8 @@ class ModelBuilder:
main_program
=
fluid
.
Program
()
main_program
=
fluid
.
Program
()
startup_program
=
fluid
.
Program
()
startup_program
=
fluid
.
Program
()
with
fluid
.
program_guard
(
main_program
,
startup_program
):
with
fluid
.
program_guard
(
main_program
,
startup_program
):
input_accessor
,
sparses
,
inputs
,
outputs
=
self
.
_inference
()
#TODO return dict maybe better ?
input_accessor
,
sparses
,
inputs
,
outputs
,
monitors
=
self
.
_inference
()
test_program
=
main_program
.
clone
(
for_test
=
True
)
test_program
=
main_program
.
clone
(
for_test
=
True
)
loss
,
labels
=
self
.
_loss_function
(
*
outputs
)
loss
,
labels
=
self
.
_loss_function
(
*
outputs
)
...
@@ -135,6 +136,10 @@ class ModelBuilder:
...
@@ -135,6 +136,10 @@ class ModelBuilder:
{
"label_name"
:
label
.
name
,
"shape"
:
label
.
shape
,
"output_name"
:
output
.
name
}
{
"label_name"
:
label
.
name
,
"shape"
:
label
.
shape
,
"output_name"
:
output
.
name
}
for
(
label
,
output
)
in
zip
(
labels
,
outputs
)
]
for
(
label
,
output
)
in
zip
(
labels
,
outputs
)
]
for
monitor
in
monitors
:
idx
=
outputs
.
index
(
monitor
[
'target'
])
monitor
[
"target_idx"
]
=
idx
monitor
[
"target"
]
=
outputs
[
idx
].
name
model_desc_path
=
os
.
path
.
join
(
self
.
_save_path
,
'model.yaml'
)
model_desc_path
=
os
.
path
.
join
(
self
.
_save_path
,
'model.yaml'
)
model_desc
=
{
model_desc
=
{
...
@@ -142,7 +147,9 @@ class ModelBuilder:
...
@@ -142,7 +147,9 @@ class ModelBuilder:
'outputs'
:
[{
"name"
:
var
.
name
,
"shape"
:
var
.
shape
}
for
var
in
outputs
],
'outputs'
:
[{
"name"
:
var
.
name
,
"shape"
:
var
.
shape
}
for
var
in
outputs
],
'labels'
:
[{
"name"
:
var
.
name
,
"shape"
:
var
.
shape
}
for
var
in
labels
],
'labels'
:
[{
"name"
:
var
.
name
,
"shape"
:
var
.
shape
}
for
var
in
labels
],
'loss'
:
loss
.
name
,
'loss'
:
loss
.
name
,
'input_accessor'
:
input_accessor
'input_accessor'
:
input_accessor
,
'monitor'
:
monitors
,
'aa_Attention'
:
'Do Not Modify This File Manually, Unless You Really Know It'
}
}
with
open
(
model_desc_path
,
'w'
)
as
f
:
with
open
(
model_desc_path
,
'w'
)
as
f
:
...
...
paddle/fluid/train/custom_trainer/feed/scripts/example.py
浏览文件 @
3d4e61ef
...
@@ -32,7 +32,7 @@ def inference():
...
@@ -32,7 +32,7 @@ def inference():
net
=
fluid
.
layers
.
fc
(
net
,
128
,
act
=
'relu'
,
name
=
'fc_7'
)
net
=
fluid
.
layers
.
fc
(
net
,
128
,
act
=
'relu'
,
name
=
'fc_7'
)
ctr_output
=
fluid
.
layers
.
fc
(
net
,
1
,
act
=
'sigmoid'
,
name
=
'ctr'
)
ctr_output
=
fluid
.
layers
.
fc
(
net
,
1
,
act
=
'sigmoid'
,
name
=
'ctr'
)
return
[
cvm_input
],
[
ctr_output
]
return
[
],
[],
[
cvm_input
],
[
ctr_output
],
monitors
def
loss_function
(
ctr_output
):
def
loss_function
(
ctr_output
):
"""
"""
...
...
paddle/fluid/train/custom_trainer/feed/scripts/join.py
浏览文件 @
3d4e61ef
...
@@ -46,7 +46,11 @@ def inference():
...
@@ -46,7 +46,11 @@ def inference():
{
"class"
:
"DenseInputAccessor"
,
"input"
:
"sums"
,
"table_id"
:
2
,
"need_gradient"
:
True
,
"async_pull"
:
True
},
{
"class"
:
"DenseInputAccessor"
,
"input"
:
"sums"
,
"table_id"
:
2
,
"need_gradient"
:
True
,
"async_pull"
:
True
},
{
"class"
:
"LabelInputAccessor"
,
"input"
:
"labels"
}
{
"class"
:
"LabelInputAccessor"
,
"input"
:
"labels"
}
]
]
return
accessors
,
[
sparse_cvm
],
[
cvm_input
],
[
ctr_output
]
monitors
=
[
{
"name"
:
"epoch_auc"
,
"class"
:
"AucMonitor"
,
"target"
:
ctr_output
,
"compute_interval"
:
600
},
{
"name"
:
"day_auc"
,
"class"
:
"AucMonitor"
,
"target"
:
ctr_output
,
"compute_interval"
:
86400
}
]
return
accessors
,
[
sparse_cvm
],
[
cvm_input
],
[
ctr_output
],
monitors
def
loss_function
(
ctr_output
):
def
loss_function
(
ctr_output
):
"""
"""
...
...
paddle/fluid/train/custom_trainer/feed/scripts/model/join/main_program
浏览文件 @
3d4e61ef
无法预览此类型文件
paddle/fluid/train/custom_trainer/feed/scripts/model/join/model.yaml
浏览文件 @
3d4e61ef
aa_Attention
:
Do Not Modify This File Manually, Unless You Really Know It
input_accessor
:
input_accessor
:
-
class
:
AbacusSparseUpdateAccessor
-
class
:
AbacusSparseUpdateAccessor
input
:
input
:
...
@@ -98,6 +99,10 @@ labels:
...
@@ -98,6 +99,10 @@ labels:
-
name
:
label_ctr
-
name
:
label_ctr
shape
:
[
-1
,
1
]
shape
:
[
-1
,
1
]
loss
:
loss_ctr
loss
:
loss_ctr
monitor
:
-
{
class
:
AucMonitor
,
compute_interval
:
3600
,
name
:
epoch_auc
,
target
:
ctr.tmp_2
,
target_idx
:
0
}
-
{
class
:
AucMonitor
,
compute_interval
:
86400
,
name
:
day_auc
,
target
:
ctr.tmp_2
,
target_idx
:
0
}
outputs
:
outputs
:
-
name
:
ctr.tmp_2
-
name
:
ctr.tmp_2
shape
:
[
-1
,
1
]
shape
:
[
-1
,
1
]
paddle/fluid/train/custom_trainer/feed/scripts/model/join/startup_program
浏览文件 @
3d4e61ef
无法预览此类型文件
paddle/fluid/train/custom_trainer/feed/scripts/model/join/test_program
浏览文件 @
3d4e61ef
无法预览此类型文件
paddle/fluid/train/custom_trainer/feed/scripts/model/update/main_program
浏览文件 @
3d4e61ef
无法预览此类型文件
paddle/fluid/train/custom_trainer/feed/scripts/model/update/model.yaml
浏览文件 @
3d4e61ef
aa_Attention
:
Do Not Modify This File Manually, Unless You Really Know It
input_accessor
:
input_accessor
:
-
class
:
AbacusSparseUpdateAccessor
-
class
:
AbacusSparseUpdateAccessor
input
:
input
:
...
@@ -79,6 +80,10 @@ labels:
...
@@ -79,6 +80,10 @@ labels:
-
name
:
label_ctr
-
name
:
label_ctr
shape
:
[
-1
,
1
]
shape
:
[
-1
,
1
]
loss
:
loss_ctr
loss
:
loss_ctr
monitor
:
-
{
class
:
AucMonitor
,
compute_interval
:
3600
,
name
:
epoch_auc
,
target
:
ctr.tmp_2
,
target_idx
:
0
}
-
{
class
:
AucMonitor
,
compute_interval
:
86400
,
name
:
day_auc
,
target
:
ctr.tmp_2
,
target_idx
:
0
}
outputs
:
outputs
:
-
name
:
ctr.tmp_2
-
name
:
ctr.tmp_2
shape
:
[
-1
,
1
]
shape
:
[
-1
,
1
]
paddle/fluid/train/custom_trainer/feed/scripts/model/update/startup_program
浏览文件 @
3d4e61ef
无法预览此类型文件
paddle/fluid/train/custom_trainer/feed/scripts/model/update/test_program
浏览文件 @
3d4e61ef
无法预览此类型文件
paddle/fluid/train/custom_trainer/feed/scripts/update.py
浏览文件 @
3d4e61ef
...
@@ -38,8 +38,12 @@ def inference():
...
@@ -38,8 +38,12 @@ def inference():
{
"class"
:
"DenseInputAccessor"
,
"input"
:
"vars"
,
"table_id"
:
3
,
"need_gradient"
:
True
,
"async_pull"
:
True
},
{
"class"
:
"DenseInputAccessor"
,
"input"
:
"vars"
,
"table_id"
:
3
,
"need_gradient"
:
True
,
"async_pull"
:
True
},
{
"class"
:
"LabelInputAccessor"
,
"input"
:
"labels"
}
{
"class"
:
"LabelInputAccessor"
,
"input"
:
"labels"
}
]
]
monitors
=
[
{
"name"
:
"epoch_auc"
,
"class"
:
"AucMonitor"
,
"target"
:
ctr_output
,
"compute_interval"
:
600
},
{
"name"
:
"day_auc"
,
"class"
:
"AucMonitor"
,
"target"
:
ctr_output
,
"compute_interval"
:
86400
}
]
return
accessors
,
[
sparse_cvm
],
[
cvm_input
],
[
ctr_output
]
return
accessors
,
[
sparse_cvm
],
[
cvm_input
],
[
ctr_output
]
,
monitors
def
loss_function
(
ctr_output
):
def
loss_function
(
ctr_output
):
"""
"""
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录