Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
DeepSpeech
提交
9876bdb4
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看板
提交
9876bdb4
编写于
4月 16, 2021
作者:
H
Hui Zhang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix add_eos_sos and cmvn
上级
28658cc1
变更
4
展开全部
隐藏空白更改
内联
并排
Showing
4 changed file
with
1018 addition
and
59 deletion
+1018
-59
.gitignore
.gitignore
+1
-0
.notebook/u2_model.ipynb
.notebook/u2_model.ipynb
+1014
-56
deepspeech/frontend/normalizer.py
deepspeech/frontend/normalizer.py
+2
-2
deepspeech/utils/tensor_utils.py
deepspeech/utils/tensor_utils.py
+1
-1
未找到文件。
.gitignore
浏览文件 @
9876bdb4
...
...
@@ -9,3 +9,4 @@ tools/venv
*.tar
*.tar.gz
.ipynb_checkpoints
*.npz
.notebook/u2_model.ipynb
浏览文件 @
9876bdb4
此差异已折叠。
点击以展开。
deepspeech/frontend/normalizer.py
浏览文件 @
9876bdb4
...
...
@@ -101,7 +101,7 @@ class FeatureNormalizer(object):
features
.
append
(
featurize_func
(
AudioSegment
.
from_file
(
instance
[
"feat"
])))
features
=
np
.
hstack
(
features
)
#(D, T)
self
.
_mean
=
np
.
mean
(
features
,
axis
=
1
)
.
reshape
([
1
,
-
1
])
#(1, D
)
std
=
np
.
std
(
features
,
axis
=
1
)
.
reshape
([
1
,
-
1
])
#(1, D
)
self
.
_mean
=
np
.
mean
(
features
,
axis
=
1
)
#(D,
)
std
=
np
.
std
(
features
,
axis
=
1
)
#(D,
)
std
=
np
.
clip
(
std
,
eps
,
None
)
self
.
_istd
=
1.0
/
std
deepspeech/utils/tensor_utils.py
浏览文件 @
9876bdb4
...
...
@@ -132,7 +132,7 @@ def add_sos_eos(ys_pad: paddle.Tensor, sos: int, eos: int,
ys_out
=
paddle
.
cat
([
ys_pad
,
_eos
],
dim
=
1
)
ys_out
=
ys_out
.
masked_fill
(
mask_pad
,
eos
)
mask_eos
=
(
ys_
in
==
ignore_id
)
mask_eos
=
(
ys_
out
==
ignore_id
)
ys_out
=
ys_out
.
masked_fill
(
mask_eos
,
eos
)
ys_out
=
ys_out
.
masked_fill
(
mask_pad
,
ignore_id
)
return
ys_in
,
ys_out
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录