Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
ERNIE
提交
e522009d
E
ERNIE
项目概览
PaddlePaddle
/
ERNIE
大约 1 年 前同步成功
通知
109
Star
5997
Fork
1270
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
29
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
E
ERNIE
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
29
Issue
29
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
e522009d
编写于
6月 15, 2022
作者:
小湉湉
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix wav concat method
上级
9224659c
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
13 addition
and
22 deletion
+13
-22
ernie-sat/inference.py
ernie-sat/inference.py
+2
-12
ernie-sat/mlm.py
ernie-sat/mlm.py
+11
-10
未找到文件。
ernie-sat/inference.py
浏览文件 @
e522009d
...
@@ -546,19 +546,9 @@ def decode_with_model(mlm_model: nn.Layer,
...
@@ -546,19 +546,9 @@ def decode_with_model(mlm_model: nn.Layer,
text_seg_pos
=
feats
[
'text_seg_pos'
],
text_seg_pos
=
feats
[
'text_seg_pos'
],
span_bdy
=
new_span_bdy
,
span_bdy
=
new_span_bdy
,
use_teacher_forcing
=
use_teacher_forcing
)
use_teacher_forcing
=
use_teacher_forcing
)
if
0
in
output
[
0
].
shape
and
0
not
in
output
[
-
1
].
shape
:
output_feat
=
paddle
.
concat
(
output
[
1
:
-
1
]
+
[
output
[
-
1
].
squeeze
()],
axis
=
0
)
elif
0
not
in
output
[
0
].
shape
and
0
in
output
[
-
1
].
shape
:
output_feat
=
paddle
.
concat
(
[
output
[
0
].
squeeze
()]
+
output
[
1
:
-
1
],
axis
=
0
)
elif
0
in
output
[
0
].
shape
and
0
in
output
[
-
1
].
shape
:
output_feat
=
paddle
.
concat
(
output
[
1
:
-
1
],
axis
=
0
)
else
:
output_feat
=
paddle
.
concat
(
[
output
[
0
].
squeeze
(
0
)]
+
output
[
1
:
-
1
]
+
[
output
[
-
1
].
squeeze
(
0
)],
axis
=
0
)
# 拼接音频
output_feat
=
paddle
.
concat
(
x
=
output
,
axis
=
0
)
wav_org
,
_
=
librosa
.
load
(
wav_path
,
sr
=
fs
)
wav_org
,
_
=
librosa
.
load
(
wav_path
,
sr
=
fs
)
return
wav_org
,
output_feat
,
old_span_bdy
,
new_span_bdy
,
fs
,
hop_length
return
wav_org
,
output_feat
,
old_span_bdy
,
new_span_bdy
,
fs
,
hop_length
...
...
ernie-sat/mlm.py
浏览文件 @
e522009d
...
@@ -7,7 +7,6 @@ from typing import Optional
...
@@ -7,7 +7,6 @@ from typing import Optional
from
typing
import
Tuple
from
typing
import
Tuple
from
typing
import
Union
from
typing
import
Union
import
numpy
as
np
import
paddle
import
paddle
import
yaml
import
yaml
from
paddle
import
nn
from
paddle
import
nn
...
@@ -395,13 +394,13 @@ class MLM(nn.Layer):
...
@@ -395,13 +394,13 @@ class MLM(nn.Layer):
use_teacher_forcing
:
bool
=
False
,
)
->
Dict
[
str
,
paddle
.
Tensor
]:
use_teacher_forcing
:
bool
=
False
,
)
->
Dict
[
str
,
paddle
.
Tensor
]:
'''
'''
Args:
Args:
speech (paddle.Tensor): input speech (
B
, Tmax, D).
speech (paddle.Tensor): input speech (
1
, Tmax, D).
text (paddle.Tensor): input text (
B
, Tmax2).
text (paddle.Tensor): input text (
1
, Tmax2).
masked_pos (paddle.Tensor): masked position of input speech (
B
, Tmax)
masked_pos (paddle.Tensor): masked position of input speech (
1
, Tmax)
speech_mask (paddle.Tensor): mask of speech (
B
, 1, Tmax).
speech_mask (paddle.Tensor): mask of speech (
1
, 1, Tmax).
text_mask (paddle.Tensor): mask of text (
B
, 1, Tmax2).
text_mask (paddle.Tensor): mask of text (
1
, 1, Tmax2).
speech_seg_pos (paddle.Tensor): n-th phone of each mel, 0<=n<=Tmax2 (
B
, Tmax).
speech_seg_pos (paddle.Tensor): n-th phone of each mel, 0<=n<=Tmax2 (
1
, Tmax).
text_seg_pos (paddle.Tensor): n-th phone of each phone, 0<=n<=Tmax2 (
B
, Tmax2).
text_seg_pos (paddle.Tensor): n-th phone of each phone, 0<=n<=Tmax2 (
1
, Tmax2).
span_bdy (List[int]): masked mel boundary of input speech (2,)
span_bdy (List[int]): masked mel boundary of input speech (2,)
use_teacher_forcing (bool): whether to use teacher forcing
use_teacher_forcing (bool): whether to use teacher forcing
Returns:
Returns:
...
@@ -410,7 +409,6 @@ class MLM(nn.Layer):
...
@@ -410,7 +409,6 @@ class MLM(nn.Layer):
[Tensor(shape=[1, 181, 80]), Tensor(shape=[80, 80]), Tensor(shape=[1, 67, 80])]
[Tensor(shape=[1, 181, 80]), Tensor(shape=[80, 80]), Tensor(shape=[1, 67, 80])]
'''
'''
outs
=
[
speech
[:,
:
span_bdy
[
0
]]]
z_cache
=
None
z_cache
=
None
if
use_teacher_forcing
:
if
use_teacher_forcing
:
before_outs
,
zs
,
*
_
=
self
.
forward
(
before_outs
,
zs
,
*
_
=
self
.
forward
(
...
@@ -423,8 +421,11 @@ class MLM(nn.Layer):
...
@@ -423,8 +421,11 @@ class MLM(nn.Layer):
text_seg_pos
=
text_seg_pos
)
text_seg_pos
=
text_seg_pos
)
if
zs
is
None
:
if
zs
is
None
:
zs
=
before_outs
zs
=
before_outs
speech
=
speech
.
squeeze
(
0
)
outs
=
[
speech
[:
span_bdy
[
0
]]]
outs
+=
[
zs
[
0
][
span_bdy
[
0
]:
span_bdy
[
1
]]]
outs
+=
[
zs
[
0
][
span_bdy
[
0
]:
span_bdy
[
1
]]]
outs
+=
[
speech
[
:,
span_bdy
[
1
]:]]
outs
+=
[
speech
[
span_bdy
[
1
]:]]
return
outs
return
outs
return
None
return
None
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录