Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
models
提交
87d72ec6
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看板
未验证
提交
87d72ec6
编写于
12月 16, 2020
作者:
S
smallv0221
提交者:
GitHub
12月 16, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix bleu bug (#5073)
* fix bleu bug
上级
e02bc11f
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
12 addition
and
12 deletion
+12
-12
PaddleNLP/paddlenlp/metrics/bleu.py
PaddleNLP/paddlenlp/metrics/bleu.py
+8
-8
PaddleNLP/paddlenlp/metrics/utils.py
PaddleNLP/paddlenlp/metrics/utils.py
+4
-4
未找到文件。
PaddleNLP/paddlenlp/metrics/bleu.py
浏览文件 @
87d72ec6
...
...
@@ -28,15 +28,15 @@ def get_match_size(cand_ngram, refs_ngram):
for
ref_ngram
in
refs_ngram
:
tmp_ref_set
=
defaultdict
(
int
)
for
ngram
in
ref_ngram
:
tmp_ref_set
[
ngram
]
+=
tmp_ref_set
.
get
(
ngram
,
0
)
+
1
tmp_ref_set
[
tuple
(
ngram
)]
+=
1
for
ngram
,
count
in
tmp_ref_set
.
items
():
ref_set
[
ngram
]
=
max
(
ref_set
[
ngram
],
count
)
ref_set
[
tuple
(
ngram
)]
=
max
(
ref_set
[
tuple
(
ngram
)
],
count
)
cand_set
=
defaultdict
(
int
)
for
ngram
in
cand_ngram
:
cand_set
[
ngram
]
+=
1
cand_set
[
tuple
(
ngram
)
]
+=
1
match_size
=
0
for
ngram
,
count
in
cand_set
.
items
():
match_size
+=
min
(
count
,
ref_set
.
get
(
ngram
,
0
))
match_size
+=
min
(
count
,
ref_set
.
get
(
tuple
(
ngram
)
,
0
))
cand_size
=
len
(
cand_ngram
)
return
match_size
,
cand_size
...
...
@@ -101,10 +101,10 @@ class BLEU(paddle.metric.Metric):
.. code-block:: python
from paddlenlp.metrics import BLEU
bleu = BLEU()
cand =
"Welcome to PaddleNLP."
ref_list = [
"Welcome PaddleNLP"
]
cand =
["The","cat","The","cat","on","the","mat"]
ref_list = [
["The","cat","is","on","the","mat"],["There","is","a","cat","on","the","mat"]
]
bleu.add_inst(cand, ref_list)
print(bleu.score()) # 0.
7510186074254295
print(bleu.score()) # 0.
4671379777282001
2. Using as an instance of `paddle.metric.Metric`.
...
...
@@ -156,7 +156,7 @@ class BLEU(paddle.metric.Metric):
Update the states based on the a pair of candidate and references.
Args:
cand (
str): The
candidate sentence generated by model.
cand (
list): Tokenized
candidate sentence generated by model.
ref_list (list): List of ground truth sentences.
'''
for
n_size
in
range
(
self
.
n_size
):
...
...
PaddleNLP/paddlenlp/metrics/utils.py
浏览文件 @
87d72ec6
...
...
@@ -26,8 +26,8 @@ def default_trans_func(output, label, seq_mask, vocab):
if
seq_mask
[
i
][
j
][
0
]
==
0
:
break
token_list
.
append
(
vocab
[
idx
[
i
][
j
]])
token_str
=
" "
.
join
(
token_list
)
ref_list
.
append
([
token_
str
])
ref_list
.
append
([
token_
list
])
label
=
np
.
squeeze
(
label
,
axis
=
2
)
for
i
in
range
(
label
.
shape
[
0
]):
...
...
@@ -36,6 +36,6 @@ def default_trans_func(output, label, seq_mask, vocab):
if
seq_mask
[
i
][
j
][
0
]
==
0
:
break
token_list
.
append
(
vocab
[
label
[
i
][
j
]])
token_str
=
" "
.
join
(
token_list
)
cand
.
append
(
token_
str
)
cand
.
append
(
token_
list
)
return
cand
,
ref_list
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录