Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
DeepSpeech
提交
f7d7e70c
D
DeepSpeech
项目概览
PaddlePaddle
/
DeepSpeech
大约 1 年 前同步成功
通知
207
Star
8425
Fork
1598
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
245
列表
看板
标记
里程碑
合并请求
3
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
DeepSpeech
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
245
Issue
245
列表
看板
标记
里程碑
合并请求
3
合并请求
3
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
You need to sign in or sign up before continuing.
提交
f7d7e70c
编写于
9月 27, 2021
作者:
H
Hui Zhang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
more ctc check; valid dataloader with num workers
上级
4b225b76
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
6 addition
and
2 deletion
+6
-2
deepspeech/exps/u2/model.py
deepspeech/exps/u2/model.py
+3
-1
deepspeech/modules/ctc.py
deepspeech/modules/ctc.py
+1
-1
deepspeech/modules/loss.py
deepspeech/modules/loss.py
+2
-0
未找到文件。
deepspeech/exps/u2/model.py
浏览文件 @
f7d7e70c
...
...
@@ -243,6 +243,7 @@ class U2Trainer(Trainer):
self
.
visualizer
.
add_scalars
(
'epoch'
,
{
'cv_loss'
:
cv_loss
,
'lr'
:
self
.
lr_scheduler
()},
self
.
epoch
)
self
.
save
(
tag
=
self
.
epoch
,
infos
=
{
'val_loss'
:
cv_loss
})
self
.
new_epoch
()
...
...
@@ -291,7 +292,8 @@ class U2Trainer(Trainer):
batch_size
=
config
.
collator
.
batch_size
,
shuffle
=
False
,
drop_last
=
False
,
collate_fn
=
collate_fn_dev
)
collate_fn
=
collate_fn_dev
,
num_workers
=
config
.
collator
.
num_workers
,
)
# test dataset, return raw text
config
.
data
.
manifest
=
config
.
data
.
test_manifest
...
...
deepspeech/modules/ctc.py
浏览文件 @
f7d7e70c
...
...
@@ -49,7 +49,7 @@ class CTCDecoder(nn.Layer):
dropout_rate (float): dropout rate (0.0 ~ 1.0)
reduction (bool): reduce the CTC loss into a scalar, True for 'sum' or 'none'
batch_average (bool): do batch dim wise average.
grad_norm_type (str): one of 'instance', 'batch
size
', 'frame', None.
grad_norm_type (str): one of 'instance', 'batch', 'frame', None.
"""
assert
check_argument_types
()
super
().
__init__
()
...
...
deepspeech/modules/loss.py
浏览文件 @
f7d7e70c
...
...
@@ -49,6 +49,8 @@ class CTCLoss(nn.Layer):
self
.
norm_by_batchsize
=
True
elif
grad_norm_type
==
'frame'
:
self
.
norm_by_total_logits_len
=
True
else
:
raise
ValueError
(
f
"CTCLoss Grad Norm no support
{
grad_norm_type
}
"
)
def
forward
(
self
,
logits
,
ys_pad
,
hlens
,
ys_lens
):
"""Compute CTC loss.
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录