Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
models
提交
683b7780
M
models
项目概览
PaddlePaddle
/
models
1 年多 前同步成功
通知
222
Star
6828
Fork
2962
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
602
列表
看板
标记
里程碑
合并请求
255
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
M
models
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
602
Issue
602
列表
看板
标记
里程碑
合并请求
255
合并请求
255
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
683b7780
编写于
3月 06, 2019
作者:
Z
zhengya01
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add gru4rec ce
上级
d47f10fe
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
15 addition
and
3 deletion
+15
-3
fluid/PaddleRec/gru4rec/.run_ce.sh
fluid/PaddleRec/gru4rec/.run_ce.sh
+8
-2
fluid/PaddleRec/gru4rec/_ce.py
fluid/PaddleRec/gru4rec/_ce.py
+4
-0
fluid/PaddleRec/gru4rec/train.py
fluid/PaddleRec/gru4rec/train.py
+3
-1
未找到文件。
fluid/PaddleRec/gru4rec/.run_ce.sh
浏览文件 @
683b7780
...
...
@@ -4,13 +4,19 @@ export MKL_NUM_THREADS=1
export
OMP_NUM_THREADS
=
1
export
CPU_NUM
=
1
export
NUM_THREADS
=
1
FLAGS_benchmark
=
true
python train.py
--train_dir
train_big_data
--vocab_path
vocab_big.txt
--use_cuda
0
--batch_size
500
--model_dir
model_output
--pass_num
2
--enable_ce
--step_num
10 | python _ce.py
cudaid
=
${
tagspace
:
=0
}
# use 0-th card as default
export
CUDA_VISIBLE_DEVICES
=
$cudaid
FLAGS_benchmark
=
true
python train.py
--train_dir
train_big_data
--vocab_path
vocab_big.txt
--use_cuda
1
--batch_size
500
--model_dir
model_output
--pass_num
2
--enable_ce
| python _ce.py
FLAGS_benchmark
=
true
python train.py
--train_dir
train_big_data
--vocab_path
vocab_big.txt
--use_cuda
1
--batch_size
500
--model_dir
model_output
--pass_num
2
--enable_ce
--step_num
1000
| python _ce.py
cudaid
=
${
tagspace_4
:
=0,1,2,3
}
# use 0-th card as default
export
CUDA_VISIBLE_DEVICES
=
$cudaid
FLAGS_benchmark
=
true
python train.py
--train_dir
train_big_data
--vocab_path
vocab_big.txt
--use_cuda
1
--parallel
1
--num_devices
2
--batch_size
500
--model_dir
model_output
--pass_num
2
--enable_ce
| python _ce.py
FLAGS_benchmark
=
true
python train.py
--train_dir
train_big_data
--vocab_path
vocab_big.txt
--use_cuda
1
--parallel
1
--num_devices
2
--batch_size
500
--model_dir
model_output
--pass_num
2
--enable_ce
--step_num
1000
| python _ce.py
fluid/PaddleRec/gru4rec/_ce.py
浏览文件 @
683b7780
...
...
@@ -8,12 +8,16 @@ from kpi import DurationKpi
from
kpi
import
AccKpi
each_pass_duration_cpu1_thread1_kpi
=
DurationKpi
(
'each_pass_duration_cpu1_thread1'
,
0.08
,
0
,
actived
=
True
)
train_ppl_cpu1_thread1_kpi
=
CostKpi
(
'train_ppl_cpu1_thread1'
,
0.08
,
0
)
each_pass_duration_gpu1_kpi
=
DurationKpi
(
'each_pass_duration_gpu1'
,
0.08
,
0
,
actived
=
True
)
train_ppl_gpu1_kpi
=
CostKpi
(
'train_ppl_gpu1'
,
0.08
,
0
)
each_pass_duration_gpu4_kpi
=
DurationKpi
(
'each_pass_duration_gpu4'
,
0.08
,
0
,
actived
=
True
)
train_ppl_gpu4_kpi
=
CostKpi
(
'train_ppl_gpu4'
,
0.08
,
0
)
tracking_kpis
=
[
each_pass_duration_cpu1_thread1_kpi
,
train_ppl_cpu1_thread1_kpi
,
each_pass_duration_gpu1_kpi
,
train_ppl_gpu1_kpi
,
each_pass_duration_gpu4_kpi
,
...
...
fluid/PaddleRec/gru4rec/train.py
浏览文件 @
683b7780
...
...
@@ -40,6 +40,8 @@ def parse_args():
'--base_lr'
,
type
=
float
,
default
=
0.01
,
help
=
'learning rate'
)
parser
.
add_argument
(
'--num_devices'
,
type
=
int
,
default
=
1
,
help
=
'Number of GPU devices'
)
parser
.
add_argument
(
'--step_num'
,
type
=
int
,
default
=
1000
,
help
=
'Number of steps'
)
parser
.
add_argument
(
'--enable_ce'
,
action
=
'store_true'
,
...
...
@@ -116,7 +118,7 @@ def train():
ce_info
.
append
(
newest_ppl
)
if
i
%
args
.
print_batch
==
0
:
print
(
"step:%d ppl:%.3f"
%
(
i
,
newest_ppl
))
if
args
.
enable_ce
and
i
>
1000
:
if
args
.
enable_ce
and
i
>
args
.
step_num
:
break
t1
=
time
.
time
()
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录