Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleRec
提交
b556097a
P
PaddleRec
项目概览
PaddlePaddle
/
PaddleRec
通知
68
Star
12
Fork
5
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
27
列表
看板
标记
里程碑
合并请求
10
Wiki
1
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleRec
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
27
Issue
27
列表
看板
标记
里程碑
合并请求
10
合并请求
10
Pages
分析
分析
仓库分析
DevOps
Wiki
1
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
b556097a
编写于
3月 05, 2020
作者:
X
xiexionghang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
commit kagle for paddle
上级
62812dd3
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
87 addition
and
7 deletion
+87
-7
kagle/kagle_fs.py
kagle/kagle_fs.py
+49
-1
kagle/kagle_metric.py
kagle/kagle_metric.py
+8
-4
kagle/trainer/kagle_trainer.py
kagle/trainer/kagle_trainer.py
+30
-2
未找到文件。
kagle/kagle_fs.py
浏览文件 @
b556097a
"""
util for file_system io
"""
import
os
import
time
from
paddle.fluid.incubate.fleet.utils.hdfs
import
HDFSClient
def
is_afs_path
(
path
):
"""R
"""
if
path
.
startswith
(
"afs"
)
or
path
.
startswith
(
"hdfs"
):
return
True
return
False
class
LocalFSClient
:
"""
Util for local disk file_system io
"""
def
__init__
(
self
):
"""R
"""
pass
def
write
(
self
,
content
,
path
,
mode
):
"""
write to file
Args:
content(string)
path(string)
mode(string): w/a w:clear_write a:append_write
"""
temp_dir
=
os
.
path
.
dirname
(
path
)
if
not
os
.
path
.
exists
(
temp_dir
):
os
.
makedirs
(
temp_dir
)
...
...
@@ -20,35 +39,52 @@ class LocalFSClient:
f
.
close
()
def
cp
(
self
,
org_path
,
dest_path
):
"""R
"""
temp_dir
=
os
.
path
.
dirname
(
dest_path
)
if
not
os
.
path
.
exists
(
temp_dir
):
os
.
makedirs
(
temp_dir
)
return
os
.
system
(
"cp -r "
+
org_path
+
" "
+
dest_path
)
def
cat
(
self
,
file_path
):
"""R
"""
f
=
open
(
file_path
)
content
=
f
.
read
()
f
.
close
()
return
content
def
mkdir
(
self
,
dir_name
):
os
.
system
(
"mkdir -p "
+
path
)
"""R
"""
os
.
makedirs
(
dir_name
)
def
remove
(
self
,
path
):
"""R
"""
os
.
system
(
"rm -rf "
+
path
)
def
is_exist
(
self
,
path
):
"""R
"""
if
os
.
system
(
"ls "
+
path
)
==
0
:
return
True
return
False
def
ls
(
self
,
path
):
"""R
"""
files
=
os
.
listdir
(
path
)
files
=
[
path
+
'/'
+
fi
for
fi
in
files
]
return
files
class
FileHandler
:
"""
A Smart file handler. auto judge local/afs by path
"""
def
__init__
(
self
,
config
):
"""R
"""
if
'fs_name'
in
config
:
hadoop_home
=
"$HADOOP_HOME"
hdfs_configs
=
{
...
...
@@ -59,16 +95,22 @@ class FileHandler:
self
.
_local_fs_client
=
LocalFSClient
()
def
is_exist
(
self
,
path
):
"""R
"""
if
is_afs_path
(
path
):
return
self
.
_hdfs_client
.
is_exist
(
path
)
else
:
return
self
.
_local_fs_client
.
is_exist
(
path
)
def
get_file_name
(
self
,
path
):
"""R
"""
sub_paths
=
path
.
split
(
'/'
)
return
sub_paths
[
-
1
]
def
write
(
self
,
content
,
dest_path
,
mode
=
'w'
):
"""R
"""
if
is_afs_path
(
dest_path
):
file_name
=
self
.
get_file_name
(
dest_path
)
temp_local_file
=
"./tmp/"
+
file_name
...
...
@@ -88,6 +130,8 @@ class FileHandler:
def
cat
(
self
,
path
):
"""R
"""
if
is_afs_path
(
path
):
print
(
"xxh go cat "
+
path
)
hdfs_cat
=
self
.
_hdfs_client
.
cat
(
path
)
...
...
@@ -97,6 +141,8 @@ class FileHandler:
return
self
.
_local_fs_client
.
cat
(
path
)
def
ls
(
self
,
path
):
"""R
"""
if
is_afs_path
(
path
):
return
self
.
_hdfs_client
.
ls
(
path
)
else
:
...
...
@@ -104,6 +150,8 @@ class FileHandler:
def
cp
(
self
,
org_path
,
dest_path
):
"""R
"""
org_is_afs
=
is_afs_path
(
org_path
)
dest_is_afs
=
is_afs_path
(
dest_path
)
if
not
org_is_afs
and
not
dest_is_afs
:
...
...
kagle/kagle_metric.py
浏览文件 @
b556097a
...
...
@@ -4,12 +4,13 @@ Do metric jobs. calculate AUC, MSE, COCP ...
import
math
import
time
import
numpy
as
np
import
kagle_util
import
kagle
.kagle
_util
import
paddle.fluid
as
fluid
from
paddle.fluid.incubate.fleet.parameter_server.pslib
import
fleet
class
Metric
(
object
):
""" """
"""R
"""
__metaclass__
=
abc
.
ABCMeta
def
__init__
(
self
,
config
):
...
...
@@ -52,6 +53,7 @@ class Metric(object):
"""
pass
class
PaddleAUCMetric
(
Metric
):
"""
Metric For Paddle Model
...
...
@@ -117,7 +119,8 @@ class PaddleAUCMetric(Metric):
return
result
def
calculate_auc
(
self
,
global_pos
,
global_neg
):
""" """
"""R
"""
num_bucket
=
len
(
global_pos
)
area
=
0.0
pos
=
0.0
...
...
@@ -142,7 +145,8 @@ class PaddleAUCMetric(Metric):
return
auc_value
def
calculate_bucket_error
(
self
,
global_pos
,
global_neg
):
""" """
"""R
"""
num_bucket
=
len
(
global_pos
)
last_ctr
=
-
1.0
impression_sum
=
0.0
...
...
kagle/trainer/kagle_trainer.py
浏览文件 @
b556097a
"""
Define A Trainer Base
"""
import
abc
import
sys
import
time
from
abc
import
ABCMeta
,
abstractmethod
class
Trainer
(
object
):
__metaclass__
=
ABCMeta
"""R
"""
__metaclass__
=
self
.
ABCMeta
def
__init__
(
self
,
config
):
"""R
"""
self
.
_status_processor
=
{}
self
.
_context
=
{
'status'
:
'uninit'
,
'is_exit'
:
False
}
def
regist_context_processor
(
self
,
status_name
,
processor
):
"""
regist a processor for specify status
"""
self
.
_status_processor
[
status_name
]
=
processor
def
context_process
(
self
,
context
):
"""
select a processor to deal specify context
Args:
context : context with status
Return:
None : run a processor for this status
"""
if
context
[
'status'
]
in
self
.
_status_processor
:
self
.
_status_processor
[
context
[
'status'
]](
context
)
else
:
self
.
other_status_processor
(
context
)
def
other_status_processor
(
self
,
context
):
"""
if no processor match context.status, use defalut processor
Return:
None, just sleep in base
"""
print
(
'unknow context_status:%s, do nothing'
%
context
[
'status'
])
time
.
sleep
(
60
)
def
reload_train_context
(
self
):
"""
context maybe update timely, reload for update
"""
pass
def
run
(
self
):
"""
keep running by statu context.
"""
while
True
:
self
.
reload_train_context
()
self
.
context_process
(
self
.
_context
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录