See pre-built Android APKs at https://k2-fsa.github.io/sherpa/onnx/speaker-identification/apk.html
48 lines
1.3 KiB
C++
48 lines
1.3 KiB
C++
// sherpa-onnx/csrc/speaker-embedding-extractor-model.h
|
|
//
|
|
// Copyright (c) 2024 Xiaomi Corporation
|
|
#ifndef SHERPA_ONNX_CSRC_SPEAKER_EMBEDDING_EXTRACTOR_MODEL_H_
|
|
#define SHERPA_ONNX_CSRC_SPEAKER_EMBEDDING_EXTRACTOR_MODEL_H_
|
|
|
|
#include <memory>
|
|
|
|
#if __ANDROID_API__ >= 9
|
|
#include "android/asset_manager.h"
|
|
#include "android/asset_manager_jni.h"
|
|
#endif
|
|
|
|
#include "onnxruntime_cxx_api.h" // NOLINT
|
|
#include "sherpa-onnx/csrc/speaker-embedding-extractor-model-meta-data.h"
|
|
#include "sherpa-onnx/csrc/speaker-embedding-extractor.h"
|
|
|
|
namespace sherpa_onnx {
|
|
|
|
class SpeakerEmbeddingExtractorModel {
|
|
public:
|
|
explicit SpeakerEmbeddingExtractorModel(
|
|
const SpeakerEmbeddingExtractorConfig &config);
|
|
|
|
#if __ANDROID_API__ >= 9
|
|
SpeakerEmbeddingExtractorModel(AAssetManager *mgr,
|
|
const SpeakerEmbeddingExtractorConfig &config);
|
|
#endif
|
|
|
|
~SpeakerEmbeddingExtractorModel();
|
|
|
|
const SpeakerEmbeddingExtractorModelMetaData &GetMetaData() const;
|
|
|
|
/**
|
|
* @param x A float32 tensor of shape (N, T, C)
|
|
* @return A float32 tensor of shape (N, C)
|
|
*/
|
|
Ort::Value Compute(Ort::Value x) const;
|
|
|
|
private:
|
|
class Impl;
|
|
std::unique_ptr<Impl> impl_;
|
|
};
|
|
|
|
} // namespace sherpa_onnx
|
|
|
|
#endif // SHERPA_ONNX_CSRC_SPEAKER_EMBEDDING_EXTRACTOR_MODEL_H_
|