Support Agglomerative clustering. (#1384)
We use the open-source implementation from https://github.com/cdalitz/hclust-cpp
This commit is contained in:
@@ -160,6 +160,13 @@ if(SHERPA_ONNX_ENABLE_TTS)
|
||||
)
|
||||
endif()
|
||||
|
||||
if(SHERPA_ONNX_ENABLE_SPEAKER_DIARIZATION)
|
||||
list(APPEND sources
|
||||
fast-clustering-config.cc
|
||||
fast-clustering.cc
|
||||
)
|
||||
endif()
|
||||
|
||||
if(SHERPA_ONNX_ENABLE_CHECK)
|
||||
list(APPEND sources log.cc)
|
||||
endif()
|
||||
@@ -523,6 +530,12 @@ if(SHERPA_ONNX_ENABLE_TESTS)
|
||||
)
|
||||
endif()
|
||||
|
||||
if(SHERPA_ONNX_ENABLE_SPEAKER_DIARIZATION)
|
||||
list(APPEND sherpa_onnx_test_srcs
|
||||
fast-clustering-test.cc
|
||||
)
|
||||
endif()
|
||||
|
||||
list(APPEND sherpa_onnx_test_srcs
|
||||
speaker-embedding-manager-test.cc
|
||||
)
|
||||
|
||||
45
sherpa-onnx/csrc/fast-clustering-config.cc
Normal file
45
sherpa-onnx/csrc/fast-clustering-config.cc
Normal file
@@ -0,0 +1,45 @@
|
||||
// sherpa-onnx/csrc/fast-clustering-config.cc
|
||||
//
|
||||
// Copyright (c) 2024 Xiaomi Corporation
|
||||
|
||||
#include "sherpa-onnx/csrc/fast-clustering-config.h"
|
||||
|
||||
#include <sstream>
|
||||
#include <string>
|
||||
|
||||
#include "sherpa-onnx/csrc/macros.h"
|
||||
|
||||
namespace sherpa_onnx {
|
||||
std::string FastClusteringConfig::ToString() const {
|
||||
std::ostringstream os;
|
||||
|
||||
os << "FastClusteringConfig(";
|
||||
os << "num_clusters=" << num_clusters << ", ";
|
||||
os << "threshold=" << threshold << ")";
|
||||
|
||||
return os.str();
|
||||
}
|
||||
|
||||
void FastClusteringConfig::Register(ParseOptions *po) {
|
||||
std::string prefix = "ctc";
|
||||
ParseOptions p(prefix, po);
|
||||
|
||||
p.Register("num-clusters", &num_clusters,
|
||||
"Number of cluster. If greater than 0, then --cluster-thresold is "
|
||||
"ignored");
|
||||
|
||||
p.Register("cluster-threshold", &threshold,
|
||||
"If --num-clusters is not specified, then it specifies the "
|
||||
"distance threshold for clustering.");
|
||||
}
|
||||
|
||||
bool FastClusteringConfig::Validate() const {
|
||||
if (num_clusters < 1 && threshold < 0) {
|
||||
SHERPA_ONNX_LOGE("Please provide either num_clusters or threshold");
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
} // namespace sherpa_onnx
|
||||
28
sherpa-onnx/csrc/fast-clustering-config.h
Normal file
28
sherpa-onnx/csrc/fast-clustering-config.h
Normal file
@@ -0,0 +1,28 @@
|
||||
// sherpa-onnx/csrc/fast-clustering-config.h
|
||||
//
|
||||
// Copyright (c) 2024 Xiaomi Corporation
|
||||
|
||||
#ifndef SHERPA_ONNX_CSRC_FAST_CLUSTERING_CONFIG_H_
|
||||
#define SHERPA_ONNX_CSRC_FAST_CLUSTERING_CONFIG_H_
|
||||
|
||||
#include <string>
|
||||
|
||||
#include "sherpa-onnx/csrc/parse-options.h"
|
||||
|
||||
namespace sherpa_onnx {
|
||||
|
||||
struct FastClusteringConfig {
|
||||
// If greater than 0, then threshold is ignored
|
||||
int32_t num_clusters = -1;
|
||||
|
||||
// distance threshold
|
||||
float threshold = 0.5;
|
||||
|
||||
std::string ToString() const;
|
||||
|
||||
void Register(ParseOptions *po);
|
||||
bool Validate() const;
|
||||
};
|
||||
|
||||
} // namespace sherpa_onnx
|
||||
#endif // SHERPA_ONNX_CSRC_FAST_CLUSTERING_CONFIG_H_
|
||||
69
sherpa-onnx/csrc/fast-clustering-test.cc
Normal file
69
sherpa-onnx/csrc/fast-clustering-test.cc
Normal file
@@ -0,0 +1,69 @@
|
||||
// sherpa-onnx/csrc/fast-clustering-test.cc
|
||||
//
|
||||
// Copyright (c) 2024 Xiaomi Corporation
|
||||
|
||||
#include "sherpa-onnx/csrc/fast-clustering.h"
|
||||
|
||||
#include <vector>
|
||||
|
||||
#include "gtest/gtest.h"
|
||||
|
||||
namespace sherpa_onnx {
|
||||
|
||||
TEST(FastClustering, TestTwoClusters) {
|
||||
std::vector<float> features = {
|
||||
// point 0
|
||||
0.1,
|
||||
0.1,
|
||||
// point 2
|
||||
0.4,
|
||||
-0.5,
|
||||
// point 3
|
||||
0.6,
|
||||
-0.7,
|
||||
// point 1
|
||||
0.2,
|
||||
0.3,
|
||||
};
|
||||
|
||||
FastClusteringConfig config;
|
||||
config.num_clusters = 2;
|
||||
|
||||
FastClustering clustering(config);
|
||||
auto labels = clustering.Cluster(features.data(), 4, 2);
|
||||
int32_t k = 0;
|
||||
for (auto i : labels) {
|
||||
std::cout << "point " << k << ": label " << i << "\n";
|
||||
++k;
|
||||
}
|
||||
}
|
||||
|
||||
TEST(FastClustering, TestClusteringWithThreshold) {
|
||||
std::vector<float> features = {
|
||||
// point 0
|
||||
0.1,
|
||||
0.1,
|
||||
// point 2
|
||||
0.4,
|
||||
-0.5,
|
||||
// point 3
|
||||
0.6,
|
||||
-0.7,
|
||||
// point 1
|
||||
0.2,
|
||||
0.3,
|
||||
};
|
||||
|
||||
FastClusteringConfig config;
|
||||
config.threshold = 0.5;
|
||||
|
||||
FastClustering clustering(config);
|
||||
auto labels = clustering.Cluster(features.data(), 4, 2);
|
||||
int32_t k = 0;
|
||||
for (auto i : labels) {
|
||||
std::cout << "point " << k << ": label " << i << "\n";
|
||||
++k;
|
||||
}
|
||||
}
|
||||
|
||||
} // namespace sherpa_onnx
|
||||
83
sherpa-onnx/csrc/fast-clustering.cc
Normal file
83
sherpa-onnx/csrc/fast-clustering.cc
Normal file
@@ -0,0 +1,83 @@
|
||||
// sherpa-onnx/csrc/fast-clustering.cc
|
||||
//
|
||||
// Copyright (c) 2024 Xiaomi Corporation
|
||||
|
||||
#include "sherpa-onnx/csrc/fast-clustering.h"
|
||||
|
||||
#include <vector>
|
||||
|
||||
#include "Eigen/Dense"
|
||||
#include "fastcluster-all-in-one.h" // NOLINT
|
||||
|
||||
namespace sherpa_onnx {
|
||||
|
||||
class FastClustering::Impl {
|
||||
public:
|
||||
explicit Impl(const FastClusteringConfig &config) : config_(config) {}
|
||||
|
||||
std::vector<int32_t> Cluster(float *features, int32_t num_rows,
|
||||
int32_t num_cols) {
|
||||
if (num_rows <= 0) {
|
||||
return {};
|
||||
}
|
||||
|
||||
if (num_rows == 1) {
|
||||
return {0};
|
||||
}
|
||||
|
||||
Eigen::Map<
|
||||
Eigen::Matrix<float, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor>>
|
||||
m(features, num_rows, num_cols);
|
||||
m.rowwise().normalize();
|
||||
|
||||
std::vector<double> distance((num_rows * (num_rows - 1)) / 2);
|
||||
|
||||
int32_t k = 0;
|
||||
for (int32_t i = 0; i != num_rows; ++i) {
|
||||
auto v = m.row(i);
|
||||
for (int32_t j = i + 1; j != num_rows; ++j) {
|
||||
double cosine_similarity = v.dot(m.row(j));
|
||||
double consine_dissimilarity = 1 - cosine_similarity;
|
||||
|
||||
if (consine_dissimilarity < 0) {
|
||||
consine_dissimilarity = 0;
|
||||
}
|
||||
|
||||
distance[k] = consine_dissimilarity;
|
||||
++k;
|
||||
}
|
||||
}
|
||||
|
||||
std::vector<int32_t> merge(2 * (num_rows - 1));
|
||||
std::vector<double> height(num_rows - 1);
|
||||
|
||||
fastclustercpp::hclust_fast(num_rows, distance.data(),
|
||||
fastclustercpp::HCLUST_METHOD_SINGLE,
|
||||
merge.data(), height.data());
|
||||
|
||||
std::vector<int32_t> labels(num_rows);
|
||||
if (config_.num_clusters > 0) {
|
||||
fastclustercpp::cutree_k(num_rows, merge.data(), config_.num_clusters,
|
||||
labels.data());
|
||||
} else {
|
||||
fastclustercpp::cutree_cdist(num_rows, merge.data(), height.data(),
|
||||
config_.threshold, labels.data());
|
||||
}
|
||||
|
||||
return labels;
|
||||
}
|
||||
|
||||
private:
|
||||
FastClusteringConfig config_;
|
||||
};
|
||||
|
||||
FastClustering::FastClustering(const FastClusteringConfig &config)
|
||||
: impl_(std::make_unique<Impl>(config)) {}
|
||||
|
||||
FastClustering::~FastClustering() = default;
|
||||
|
||||
std::vector<int32_t> FastClustering::Cluster(float *features, int32_t num_rows,
|
||||
int32_t num_cols) {
|
||||
return impl_->Cluster(features, num_rows, num_cols);
|
||||
}
|
||||
} // namespace sherpa_onnx
|
||||
43
sherpa-onnx/csrc/fast-clustering.h
Normal file
43
sherpa-onnx/csrc/fast-clustering.h
Normal file
@@ -0,0 +1,43 @@
|
||||
// sherpa-onnx/csrc/fast-clustering.h
|
||||
//
|
||||
// Copyright (c) 2024 Xiaomi Corporation
|
||||
|
||||
#ifndef SHERPA_ONNX_CSRC_FAST_CLUSTERING_H_
|
||||
#define SHERPA_ONNX_CSRC_FAST_CLUSTERING_H_
|
||||
|
||||
#include <memory>
|
||||
#include <vector>
|
||||
|
||||
#include "sherpa-onnx/csrc/fast-clustering-config.h"
|
||||
|
||||
namespace sherpa_onnx {
|
||||
|
||||
class FastClustering {
|
||||
public:
|
||||
explicit FastClustering(const FastClusteringConfig &config);
|
||||
~FastClustering();
|
||||
|
||||
/**
|
||||
* @param features Pointer to a 2-D feature matrix in row major. Each row
|
||||
* is a feature frame. It is changed in-place. We will
|
||||
* convert each feature frame to a normalized vector.
|
||||
* That is, the L2-norm of each vector will be equal to 1.
|
||||
* It uses cosine dissimilarity,
|
||||
* which is 1 - (cosine similarity)
|
||||
* @param num_rows Number of feature frames
|
||||
* @param num-cols The feature dimension.
|
||||
*
|
||||
* @return Return a vector of size num_rows. ans[i] contains the label
|
||||
* for the i-th feature frame, i.e., the i-th row of the feature
|
||||
* matrix.
|
||||
*/
|
||||
std::vector<int32_t> Cluster(float *features, int32_t num_rows,
|
||||
int32_t num_cols);
|
||||
|
||||
private:
|
||||
class Impl;
|
||||
std::unique_ptr<Impl> impl_;
|
||||
};
|
||||
|
||||
} // namespace sherpa_onnx
|
||||
#endif // SHERPA_ONNX_CSRC_FAST_CLUSTERING_H_
|
||||
@@ -4,8 +4,6 @@
|
||||
|
||||
#include "sherpa-onnx/csrc/offline-stream.h"
|
||||
|
||||
#include <math.h>
|
||||
|
||||
#include <algorithm>
|
||||
#include <cassert>
|
||||
#include <cmath>
|
||||
|
||||
@@ -8,16 +8,16 @@
|
||||
namespace sherpa_onnx {
|
||||
|
||||
struct OnlineCNNBiLSTMModelMetaData {
|
||||
int32_t comma_id;
|
||||
int32_t period_id;
|
||||
int32_t quest_id;
|
||||
int32_t comma_id = -1;
|
||||
int32_t period_id = -1;
|
||||
int32_t quest_id = -1;
|
||||
|
||||
int32_t upper_id;
|
||||
int32_t cap_id;
|
||||
int32_t mix_case_id;
|
||||
int32_t upper_id = -1;
|
||||
int32_t cap_id = -1;
|
||||
int32_t mix_case_id = -1;
|
||||
|
||||
int32_t num_cases;
|
||||
int32_t num_punctuations;
|
||||
int32_t num_cases = -1;
|
||||
int32_t num_punctuations = -1;
|
||||
};
|
||||
|
||||
} // namespace sherpa_onnx
|
||||
|
||||
@@ -169,7 +169,7 @@ static std::vector<int64_t> CoquiPhonemesToIds(
|
||||
return ans;
|
||||
}
|
||||
|
||||
void InitEspeak(const std::string &data_dir) {
|
||||
static void InitEspeak(const std::string &data_dir) {
|
||||
static std::once_flag init_flag;
|
||||
std::call_once(init_flag, [data_dir]() {
|
||||
int32_t result =
|
||||
|
||||
@@ -41,7 +41,7 @@
|
||||
namespace sherpa_onnx {
|
||||
|
||||
template <class I>
|
||||
I Gcd(I m, I n) {
|
||||
static I Gcd(I m, I n) {
|
||||
// this function is copied from kaldi/src/base/kaldi-math.h
|
||||
if (m == 0 || n == 0) {
|
||||
if (m == 0 && n == 0) { // gcd not defined, as all integers are divisors.
|
||||
@@ -65,7 +65,7 @@ I Gcd(I m, I n) {
|
||||
/// Returns the least common multiple of two integers. Will
|
||||
/// crash unless the inputs are positive.
|
||||
template <class I>
|
||||
I Lcm(I m, I n) {
|
||||
static I Lcm(I m, I n) {
|
||||
// This function is copied from kaldi/src/base/kaldi-math.h
|
||||
assert(m > 0 && n > 0);
|
||||
I gcd = Gcd(m, n);
|
||||
|
||||
Reference in New Issue
Block a user