Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
DeepSpeech
提交
8c7c689c
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看板
未验证
提交
8c7c689c
编写于
5月 27, 2022
作者:
J
Jackwaterveg
提交者:
GitHub
5月 27, 2022
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #1987 from Jackwaterveg/r1.0
[R1.0] delete dtaidistance
上级
951bad99
1449f1b4
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
2 addition
and
47 deletion
+2
-47
audio/paddleaudio/metric/__init__.py
audio/paddleaudio/metric/__init__.py
+0
-1
audio/paddleaudio/metric/dtw.py
audio/paddleaudio/metric/dtw.py
+0
-44
audio/setup.py
audio/setup.py
+2
-2
未找到文件。
audio/paddleaudio/metric/__init__.py
浏览文件 @
8c7c689c
...
...
@@ -11,6 +11,5 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from
.dtw
import
dtw_distance
from
.eer
import
compute_eer
from
.eer
import
compute_minDCF
audio/paddleaudio/metric/dtw.py
已删除
100644 → 0
浏览文件 @
951bad99
# Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import
numpy
as
np
from
dtaidistance
import
dtw_ndim
__all__
=
[
'dtw_distance'
,
]
def
dtw_distance
(
xs
:
np
.
ndarray
,
ys
:
np
.
ndarray
)
->
float
:
"""Dynamic Time Warping.
This function keeps a compact matrix, not the full warping paths matrix.
Uses dynamic programming to compute:
Examples:
.. code-block:: python
wps[i, j] = (s1[i]-s2[j])**2 + min(
wps[i-1, j ] + penalty, // vertical / insertion / expansion
wps[i , j-1] + penalty, // horizontal / deletion / compression
wps[i-1, j-1]) // diagonal / match
dtw = sqrt(wps[-1, -1])
Args:
xs (np.ndarray): ref sequence, [T,D]
ys (np.ndarray): hyp sequence, [T,D]
Returns:
float: dtw distance
"""
return
dtw_ndim
.
distance
(
xs
,
ys
)
audio/setup.py
浏览文件 @
8c7c689c
...
...
@@ -19,7 +19,7 @@ from setuptools.command.install import install
from
setuptools.command.test
import
test
# set the version here
VERSION
=
'1.0.
0
'
VERSION
=
'1.0.
1
'
# Inspired by the example at https://pytest.org/latest/goodpractises.html
...
...
@@ -83,7 +83,7 @@ setuptools.setup(
python_requires
=
'>=3.6'
,
install_requires
=
[
'numpy >= 1.15.0'
,
'scipy >= 1.0.0'
,
'resampy >= 0.2.2'
,
'soundfile >= 0.9.0'
,
'colorlog'
,
'
dtaidistance == 2.3.1'
,
'pathos
'
'soundfile >= 0.9.0'
,
'colorlog'
,
'
pathos == 0.2.8
'
],
extras_require
=
{
'test'
:
[
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录