Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
F
Fairseq-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
Fairseq-S2T
Commits
32216b6d
Commit
32216b6d
authored
Sep 05, 2021
by
xuchen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix the bug of the block attention
parent
0ce623be
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
3 行增加
和
5 行删除
+3
-5
fairseq/models/speech_to_text/pys2t_transformer.py
+3
-5
没有找到文件。
fairseq/models/speech_to_text/pys2t_transformer.py
查看文件 @
32216b6d
...
@@ -273,8 +273,6 @@ class PyS2TTransformerEncoder(FairseqEncoder):
...
@@ -273,8 +273,6 @@ class PyS2TTransformerEncoder(FairseqEncoder):
vdim
=
self
.
pyramid_embed_dims
[
i
-
1
],
vdim
=
self
.
pyramid_embed_dims
[
i
-
1
],
dropout
=
args
.
attention_dropout
,
dropout
=
args
.
attention_dropout
,
encoder_decoder_attention
=
True
,
encoder_decoder_attention
=
True
,
q_noise
=
self
.
quant_noise
,
qn_block_size
=
self
.
quant_noise_block_size
,
)
)
else
:
else
:
attn
=
None
attn
=
None
...
@@ -373,7 +371,7 @@ class PyS2TTransformerEncoder(FairseqEncoder):
...
@@ -373,7 +371,7 @@ class PyS2TTransformerEncoder(FairseqEncoder):
x
=
layer
(
x
,
encoder_padding_mask
,
pos_emb
=
positions
)
x
=
layer
(
x
,
encoder_padding_mask
,
pos_emb
=
positions
)
layer_idx
+=
1
layer_idx
+=
1
if
attn
is
not
None
:
if
block_
attn
is
not
None
:
residual
=
x
residual
=
x
x
,
attn
=
block_attn
(
x
,
attn
=
block_attn
(
query
=
x
,
query
=
x
,
...
@@ -383,8 +381,8 @@ class PyS2TTransformerEncoder(FairseqEncoder):
...
@@ -383,8 +381,8 @@ class PyS2TTransformerEncoder(FairseqEncoder):
)
)
x
+=
residual
x
+=
residual
prev_state
[
i
]
=
x
prev_state
.
append
(
x
)
prev_padding
[
i
]
=
encoder_padding_mask
prev_padding
.
append
(
encoder_padding_mask
)
if
self
.
use_ctc
and
self
.
inter_ctc
and
self
.
ctc_layer
==
layer_idx
:
if
self
.
use_ctc
and
self
.
inter_ctc
and
self
.
ctc_layer
==
layer_idx
:
ctc_logit
=
self
.
ctc_layer_norm
(
x
)
ctc_logit
=
self
.
ctc_layer_norm
(
x
)
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论