alphacep--vosk-api
48 行
1.2 KiB
C++
48 行
1.2 KiB
C++
// Copyright 2020 Alpha Cephei Inc.
|
|
//
|
|
// 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.
|
|
|
|
#ifndef VOSK_SPK_MODEL_H
|
|
#define VOSK_SPK_MODEL_H
|
|
|
|
#include "base/kaldi-common.h"
|
|
#include "online2/online-feature-pipeline.h"
|
|
#include "nnet3/nnet-utils.h"
|
|
#include <atomic>
|
|
|
|
using namespace kaldi;
|
|
|
|
class Recognizer;
|
|
|
|
class SpkModel {
|
|
|
|
public:
|
|
SpkModel(const char *spk_path);
|
|
void Ref();
|
|
void Unref();
|
|
|
|
protected:
|
|
friend class Recognizer;
|
|
~SpkModel() {};
|
|
|
|
kaldi::nnet3::Nnet speaker_nnet;
|
|
kaldi::Vector<BaseFloat> mean;
|
|
kaldi::Matrix<BaseFloat> transform;
|
|
|
|
MfccOptions spkvector_mfcc_opts;
|
|
|
|
std::atomic<int> ref_cnt_;
|
|
};
|
|
|
|
#endif /* VOSK_SPK_MODEL_H */
|