Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
ERNIE
提交
dd26cf3a
E
ERNIE
项目概览
PaddlePaddle
/
ERNIE
大约 1 年 前同步成功
通知
109
Star
5997
Fork
1270
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
29
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
E
ERNIE
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
29
Issue
29
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
dd26cf3a
编写于
10月 28, 2019
作者:
C
chenxuyi
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update propeller
上级
cc785f8d
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
12 addition
and
12 deletion
+12
-12
propeller/README.en.md
propeller/README.en.md
+4
-5
propeller/README.md
propeller/README.md
+4
-5
propeller/paddle/train/metrics.py
propeller/paddle/train/metrics.py
+4
-2
未找到文件。
propeller/README.en.md
浏览文件 @
dd26cf3a
...
...
@@ -21,7 +21,7 @@ Propeller provide the following benefits:
## install
```
script
cd propeller && pip install
.
pip install --user
.
```
## Getting Started
...
...
@@ -71,7 +71,6 @@ cd propeller && pip install .
# Start training!
propeller
.
train_and_eval
(
BowModel
,
hparams
,
run_config
,
train_ds
,
eval_ds
)
```
More detail see example/toy/
## Main Feature
1.
train_and_eval
...
...
@@ -91,9 +90,9 @@ More detail see example/toy/
4.
Summary
To trace tensor histogram in training, simply:
```
python
propeller
.
summary
.
histogram
(
'loss'
,
tensor
)
```
```
python
propeller
.
summary
.
histogram
(
'loss'
,
tensor
)
```
## Contributing
...
...
propeller/README.md
浏览文件 @
dd26cf3a
...
...
@@ -21,7 +21,7 @@ Propeller 具有下列优势:
## install|安装
cd propeller && pip install
.
pip install --user
.
## Getting Started|快速开始
```
python
...
...
@@ -70,7 +70,6 @@ cd propeller && pip install .
# 开始训练!
propeller
.
train_and_eval
(
BowModel
,
hparams
,
run_config
,
train_ds
,
eval_ds
)
```
先洗详细请见example/toy/
## 主要构件
1.
train_and_eval
...
...
@@ -89,10 +88,10 @@ cd propeller && pip install .
4.
Summary
对训练过程中的某些参数进行log追踪,只需要:
```
python
propeller
.
summary
.
histogram
(
'loss'
,
tensor
)
```
python
propeller
.
summary
.
histogram
(
'loss'
,
tensor
)
```
```
## Contributing|贡献
...
...
propeller/paddle/train/metrics.py
浏览文件 @
dd26cf3a
...
...
@@ -256,8 +256,10 @@ class Mrr(Metrics):
sorted
(
tup
,
key
=
lambda
t
:
t
[
2
],
reverse
=
True
))
if
l
!=
0
]
ranks
=
ranks
[
0
]
return
ranks
if
len
(
ranks
):
return
ranks
[
0
]
else
:
return
0.
mrr_for_qid
=
[
calc_func
(
tup
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录