Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
S
S2T
概览
Overview
Details
Activity
Cycle Analytics
版本库
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
问题
0
Issues
0
列表
Board
标记
里程碑
合并请求
0
Merge Requests
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
Snippets
成员
Collapse sidebar
Close sidebar
活动
图像
聊天
创建新问题
作业
提交
Issue Boards
Open sidebar
xuchen
S2T
Commits
2e6223d1
Commit
2e6223d1
authored
Aug 22, 2023
by
xuchen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
info
parent
12201609
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
2 行增加
和
29 行删除
+2
-29
fairseq/criterions/ctc.py
+2
-29
没有找到文件。
fairseq/criterions/ctc.py
查看文件 @
2e6223d1
...
...
@@ -27,7 +27,8 @@ logger = logging.getLogger(__name__)
try
:
from
fairseq.torch_imputer
import
best_alignment
,
imputer_loss
except
:
logger
.
error
(
"Imputer is not available."
)
# logger.error("Imputer is not available.")
pass
@dataclass
...
...
@@ -379,15 +380,6 @@ class CtcCriterion(FairseqCriterion):
self
.
blank_idx
,
)
# if "ctc_logit" in encoder_out and len(encoder_out["ctc_logit"]) != 0:
# ctc_logit = encoder_out["ctc_logit"][0]
# ctc_alignment_oracle["ctc"] = get_ctc_align(ctc_logit, tokens, input_lengths, target_lengths, self.pad_idx, self.blank_idx)
# if "inter_ctc_logits" in encoder_out and len(encoder_out["inter_ctc_logits"]) != 0:
# ctc_alignment_oracle["inter_ctc"] = []
# for ctc_logit in encoder_out["inter_ctc_logits"]:
# ctc_alignment_oracle["inter_ctc"].append(get_ctc_align(ctc_logit, tokens, input_lengths, target_lengths, self.pad_idx, self.blank_idx))
xctc_logit
=
None
if
"xctc_logit"
in
encoder_out
and
len
(
encoder_out
[
"xctc_logit"
])
!=
0
:
xctc_logit
=
encoder_out
[
"xctc_logit"
][
0
]
...
...
@@ -406,7 +398,6 @@ class CtcCriterion(FairseqCriterion):
tokens
=
self
.
get_ctc_target_text
(
sample
)
target_pad_mask
=
(
tokens
!=
self
.
pad_idx
)
&
(
tokens
!=
self
.
eos_idx
)
# target_pad_mask = (tokens != self.pad_idx)
target_lengths
=
target_pad_mask
.
sum
(
-
1
)
ctc_alignment_oracle
[
"xctc"
]
=
get_ctc_align
(
...
...
@@ -418,15 +409,6 @@ class CtcCriterion(FairseqCriterion):
self
.
blank_idx
,
)
# if "xctc_logit" in encoder_out and len(encoder_out["xctc_logit"]) != 0:
# xctc_logit = encoder_out["xctc_logit"][0]
# ctc_alignment_oracle["xctc"] = get_ctc_align(xctc_logit, tokens, input_lengths, target_lengths, self.pad_idx, self.blank_idx)
# if "inter_xctc_logits" in encoder_out and len(
# encoder_out["inter_xctc_logits"]) != 0:
# ctc_alignment_oracle["inter_xctc"] = []
# for xctc_logit in encoder_out["inter_xctc_logits"]:
# ctc_alignment_oracle["inter_xctc"].append(get_ctc_align(xctc_logit, tokens, input_lengths, target_lengths, self.pad_idx, self.blank_idx))
axctc_logit
=
None
if
"axctc_logit"
in
encoder_out
and
len
(
encoder_out
[
"axctc_logit"
])
!=
0
:
axctc_logit
=
encoder_out
[
"axctc_logit"
][
0
]
...
...
@@ -448,15 +430,6 @@ class CtcCriterion(FairseqCriterion):
self
.
blank_idx
,
)
# if "axctc_logit" in encoder_out and len(encoder_out["axctc_logit"]) != 0:
# axctc_logit = encoder_out["axctc_logit"][0]
# ctc_alignment_oracle["axctc"] = get_ctc_align(axctc_logit, tokens, input_lengths, target_lengths, self.pad_idx, self.blank_idx)
# if "inter_axctc_logits" in encoder_out and len(
# encoder_out["inter_axctc_logits"]) != 0:
# ctc_alignment_oracle["inter_axctc"] = []
# for axctc_logit in encoder_out["inter_axctc_logits"]:
# ctc_alignment_oracle["inter_axctc"].append(get_ctc_align(axctc_logit, tokens, input_lengths, target_lengths, self.pad_idx, self.blank_idx))
return
ctc_alignment_oracle
def
get_ctc_loss
(
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论