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
de9ef921
Commit
de9ef921
authored
Jul 25, 2022
by
xuchen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix the bugs
parent
b2031168
显示空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
9 行增加
和
9 行删除
+9
-9
examples/speech_to_text/prep_audio_data.py
+2
-2
fairseq/criterions/label_smoothed_cross_entropy_with_ctc.py
+7
-7
没有找到文件。
examples/speech_to_text/prep_audio_data.py
查看文件 @
de9ef921
...
...
@@ -185,7 +185,7 @@ class AudioDataset(Dataset):
if
need_waveform
:
offset
=
item
.
get
(
'offset'
,
False
)
if
offset
is
not
False
:
if
offset
:
waveform
,
sample_rate
=
torchaudio
.
load
(
audio
,
frame_offset
=
offset
,
num_frames
=
item
[
"n_frames"
])
...
...
@@ -331,7 +331,7 @@ def process(args):
audio_path
=
item
[
"audio"
]
# add offset and frames info
if
item
.
get
(
"offset"
,
False
)
is
not
False
:
if
item
.
get
(
"offset"
,
False
):
audio_path
=
f
"{audio_path}:{item['offset']}:{n_frames}"
manifest
[
"audio"
]
.
append
(
audio_path
)
else
:
...
...
fairseq/criterions/label_smoothed_cross_entropy_with_ctc.py
查看文件 @
de9ef921
...
...
@@ -37,13 +37,13 @@ class LabelSmoothedCrossEntropyCriterionWithCTC(
"""Add criterion-specific arguments to the parser."""
LabelSmoothedCrossEntropyCriterion
.
add_args
(
parser
)
CtcCriterion
.
add_args
(
parser
)
parser
.
add_argument
(
"--ctc-weight"
,
default
=
0.0
,
type
=
float
,
metavar
=
"D"
,
help
=
"weight of CTC loss"
,
)
#
parser.add_argument(
#
"--ctc-weight",
#
default=0.0,
#
type=float,
#
metavar="D",
#
help="weight of CTC loss",
#
)
def
forward
(
self
,
model
,
sample
,
reduce
=
True
):
"""Compute the loss for the given sample.
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论