Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
DeepSpeech
提交
ac689f40
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,发现更多精彩内容 >>
未验证
提交
ac689f40
编写于
12月 09, 2021
作者:
H
Hui Zhang
提交者:
GitHub
12月 09, 2021
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #1093 from gongel/st_kaldiio
[ST CLI] rm kaldi_io
上级
12318566
dc60aeb8
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
4 addition
and
6 deletion
+4
-6
paddlespeech/cli/st/infer.py
paddlespeech/cli/st/infer.py
+4
-5
setup.py
setup.py
+0
-1
未找到文件。
paddlespeech/cli/st/infer.py
浏览文件 @
ac689f40
...
...
@@ -18,7 +18,7 @@ from typing import List
from
typing
import
Optional
from
typing
import
Union
import
kaldi
_
io
import
kaldiio
import
numpy
as
np
import
paddle
import
soundfile
...
...
@@ -234,7 +234,7 @@ class STExecutor(BaseExecutor):
f
"
{
utt_name
}
{
wav_file
}
"
.
encode
(
"utf8"
))
fbank_extract_process
.
stdin
.
close
()
fbank_feat
=
dict
(
kaldi
_io
.
read_mat
_ark
(
fbank_extract_process
.
stdout
))[
utt_name
]
kaldi
io
.
load
_ark
(
fbank_extract_process
.
stdout
))[
utt_name
]
extract_command
=
[
"compute-kaldi-pitch-feats"
,
"scp:-"
,
"ark:-"
]
pitch_extract_process
=
subprocess
.
Popen
(
...
...
@@ -251,8 +251,7 @@ class STExecutor(BaseExecutor):
stdout
=
subprocess
.
PIPE
,
stderr
=
subprocess
.
PIPE
)
pitch_extract_process
.
stdin
.
close
()
pitch_feat
=
dict
(
kaldi_io
.
read_mat_ark
(
pitch_process
.
stdout
))[
utt_name
]
pitch_feat
=
dict
(
kaldiio
.
load_ark
(
pitch_process
.
stdout
))[
utt_name
]
concated_feat
=
np
.
concatenate
((
fbank_feat
,
pitch_feat
),
axis
=
1
)
raw_feat
=
f
"
{
utt_name
}
.raw"
with
WriteHelper
(
...
...
@@ -272,7 +271,7 @@ class STExecutor(BaseExecutor):
stdin
=
cmvn_process
.
stdout
,
stdout
=
subprocess
.
PIPE
,
stderr
=
subprocess
.
PIPE
)
norm_feat
=
dict
(
kaldi
_io
.
read_mat
_ark
(
process
.
stdout
))[
utt_name
]
norm_feat
=
dict
(
kaldi
io
.
load
_ark
(
process
.
stdout
))[
utt_name
]
self
.
_inputs
[
"audio"
]
=
paddle
.
to_tensor
(
norm_feat
).
unsqueeze
(
0
)
self
.
_inputs
[
"audio_len"
]
=
paddle
.
to_tensor
(
self
.
_inputs
[
"audio"
].
shape
[
1
],
dtype
=
"int64"
)
...
...
setup.py
浏览文件 @
ac689f40
...
...
@@ -37,7 +37,6 @@ requirements = {
"jieba"
,
"jsonlines"
,
"kaldiio"
,
"kaldi_io"
,
"librosa"
,
"loguru"
,
"matplotlib"
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录