Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
DeepSpeech
提交
d16ce21d
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,发现更多精彩内容 >>
提交
d16ce21d
编写于
3月 16, 2022
作者:
Q
qingen
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[wip][vec] update cluster of diarization, test=doc #1304
上级
d01d7fed
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
3 addition
and
4 deletion
+3
-4
paddlespeech/vector/cluster/diarization.py
paddlespeech/vector/cluster/diarization.py
+3
-4
未找到文件。
examples/ami/sd0/local
/diarization.py
→
paddlespeech/vector/cluster
/diarization.py
浏览文件 @
d16ce21d
# Copyright (c) 2022
PaddlePaddle
Authors. All Rights Reserved.
# Copyright (c) 2022
SpeechBrain
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.
...
...
@@ -359,7 +359,7 @@ class EmbeddingMeta:
if
segset
is
None
:
self
.
segset
=
numpy
.
empty
(
0
,
dtype
=
"|O"
)
self
.
stats
=
numpy
.
array
([],
dtype
=
STAT_TYPE
)
self
.
stats
=
numpy
.
array
([],
dtype
=
np
.
float64
)
else
:
self
.
segset
=
segset
self
.
stats
=
stats
...
...
@@ -631,7 +631,6 @@ class SpecClustUnorm:
eig_vals_gap_list
=
[]
for
i
in
range
(
len
(
eig_vals
)
-
1
):
gap
=
float
(
eig_vals
[
i
+
1
])
-
float
(
eig_vals
[
i
])
# eig_vals_gap_list.append(float(eig_vals[i + 1]) - float(eig_vals[i]))
eig_vals_gap_list
.
append
(
gap
)
return
eig_vals_gap_list
...
...
@@ -658,7 +657,7 @@ class SpecCluster(SpectralClustering):
self
.
affinity_matrix_
=
0.5
*
(
connectivity
+
connectivity
.
T
)
# Perform spectral clustering on affinity matrix
self
.
labels_
=
spectral_clustering
_sb
(
self
.
labels_
=
spectral_clustering
(
self
.
affinity_matrix_
,
n_clusters
=
self
.
n_clusters
,
)
return
self
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录