// sherpa-onnx/csrc/offline-tts-matcha-impl.h // // Copyright (c) 2024 Xiaomi Corporation #ifndef SHERPA_ONNX_CSRC_OFFLINE_TTS_MATCHA_IMPL_H_ #define SHERPA_ONNX_CSRC_OFFLINE_TTS_MATCHA_IMPL_H_ #include #include #include #include #include #include "fst/extensions/far/far.h" #include "kaldifst/csrc/kaldi-fst-io.h" #include "kaldifst/csrc/text-normalizer.h" #include "sherpa-onnx/csrc/jieba-lexicon.h" #include "sherpa-onnx/csrc/lexicon.h" #include "sherpa-onnx/csrc/macros.h" #include "sherpa-onnx/csrc/melo-tts-lexicon.h" #include "sherpa-onnx/csrc/offline-tts-character-frontend.h" #include "sherpa-onnx/csrc/offline-tts-frontend.h" #include "sherpa-onnx/csrc/offline-tts-impl.h" #include "sherpa-onnx/csrc/offline-tts-matcha-model.h" #include "sherpa-onnx/csrc/onnx-utils.h" #include "sherpa-onnx/csrc/piper-phonemize-lexicon.h" #include "sherpa-onnx/csrc/text-utils.h" #include "sherpa-onnx/csrc/vocoder.h" namespace sherpa_onnx { class OfflineTtsMatchaImpl : public OfflineTtsImpl { public: explicit OfflineTtsMatchaImpl(const OfflineTtsConfig &config) : config_(config), model_(std::make_unique(config.model)), vocoder_(Vocoder::Create(config.model)) { InitFrontend(); if (!config.rule_fsts.empty()) { std::vector files; SplitStringToVector(config.rule_fsts, ",", false, &files); tn_list_.reserve(files.size()); for (const auto &f : files) { if (config.model.debug) { #if __OHOS__ SHERPA_ONNX_LOGE("rule fst: %{public}s", f.c_str()); #else SHERPA_ONNX_LOGE("rule fst: %s", f.c_str()); #endif } tn_list_.push_back(std::make_unique(f)); } } if (!config.rule_fars.empty()) { if (config.model.debug) { SHERPA_ONNX_LOGE("Loading FST archives"); } std::vector files; SplitStringToVector(config.rule_fars, ",", false, &files); tn_list_.reserve(files.size() + tn_list_.size()); for (const auto &f : files) { if (config.model.debug) { #if __OHOS__ SHERPA_ONNX_LOGE("rule far: %{public}s", f.c_str()); #else SHERPA_ONNX_LOGE("rule far: %s", f.c_str()); #endif } std::unique_ptr> reader( fst::FarReader::Open(f)); for (; !reader->Done(); reader->Next()) { std::unique_ptr r( fst::CastOrConvertToConstFst(reader->GetFst()->Copy())); tn_list_.push_back( std::make_unique(std::move(r))); } } if (config.model.debug) { SHERPA_ONNX_LOGE("FST archives loaded!"); } } } template OfflineTtsMatchaImpl(Manager *mgr, const OfflineTtsConfig &config) : config_(config), model_(std::make_unique(mgr, config.model)), vocoder_(Vocoder::Create(mgr, config.model)) { InitFrontend(mgr); if (!config.rule_fsts.empty()) { std::vector files; SplitStringToVector(config.rule_fsts, ",", false, &files); tn_list_.reserve(files.size()); for (const auto &f : files) { if (config.model.debug) { #if __OHOS__ SHERPA_ONNX_LOGE("rule fst: %{public}s", f.c_str()); #else SHERPA_ONNX_LOGE("rule fst: %s", f.c_str()); #endif } auto buf = ReadFile(mgr, f); std::istrstream is(buf.data(), buf.size()); tn_list_.push_back(std::make_unique(is)); } } if (!config.rule_fars.empty()) { std::vector files; SplitStringToVector(config.rule_fars, ",", false, &files); tn_list_.reserve(files.size() + tn_list_.size()); for (const auto &f : files) { if (config.model.debug) { #if __OHOS__ SHERPA_ONNX_LOGE("rule far: %{public}s", f.c_str()); #else SHERPA_ONNX_LOGE("rule far: %s", f.c_str()); #endif } auto buf = ReadFile(mgr, f); std::unique_ptr s( new std::istrstream(buf.data(), buf.size())); std::unique_ptr> reader( fst::FarReader::Open(std::move(s))); for (; !reader->Done(); reader->Next()) { std::unique_ptr r( fst::CastOrConvertToConstFst(reader->GetFst()->Copy())); tn_list_.push_back( std::make_unique(std::move(r))); } // for (; !reader->Done(); reader->Next()) } // for (const auto &f : files) } // if (!config.rule_fars.empty()) } int32_t SampleRate() const override { return model_->GetMetaData().sample_rate; } int32_t NumSpeakers() const override { return model_->GetMetaData().num_speakers; } GeneratedAudio Generate( const std::string &_text, int64_t sid = 0, float speed = 1.0, GeneratedAudioCallback callback = nullptr) const override { const auto &meta_data = model_->GetMetaData(); int32_t num_speakers = meta_data.num_speakers; if (num_speakers == 0 && sid != 0) { #if __OHOS__ SHERPA_ONNX_LOGE( "This is a single-speaker model and supports only sid 0. Given sid: " "%{public}d. sid is ignored", static_cast(sid)); #else SHERPA_ONNX_LOGE( "This is a single-speaker model and supports only sid 0. Given sid: " "%d. sid is ignored", static_cast(sid)); #endif } if (num_speakers != 0 && (sid >= num_speakers || sid < 0)) { #if __OHOS__ SHERPA_ONNX_LOGE( "This model contains only %{public}d speakers. sid should be in the " "range [%{public}d, %{public}d]. Given: %{public}d. Use sid=0", num_speakers, 0, num_speakers - 1, static_cast(sid)); #else SHERPA_ONNX_LOGE( "This model contains only %d speakers. sid should be in the range " "[%d, %d]. Given: %d. Use sid=0", num_speakers, 0, num_speakers - 1, static_cast(sid)); #endif sid = 0; } std::string text = _text; if (config_.model.debug) { #if __OHOS__ SHERPA_ONNX_LOGE("Raw text: %{public}s", text.c_str()); #else SHERPA_ONNX_LOGE("Raw text: %s", text.c_str()); #endif } if (!tn_list_.empty()) { for (const auto &tn : tn_list_) { text = tn->Normalize(text); if (config_.model.debug) { #if __OHOS__ SHERPA_ONNX_LOGE("After normalizing: %{public}s", text.c_str()); #else SHERPA_ONNX_LOGE("After normalizing: %s", text.c_str()); #endif } } } std::vector token_ids = frontend_->ConvertTextToTokenIds(text, meta_data.voice); if (token_ids.empty() || (token_ids.size() == 1 && token_ids[0].tokens.empty())) { #if __OHOS__ SHERPA_ONNX_LOGE("Failed to convert '%{public}s' to token IDs", text.c_str()); #else SHERPA_ONNX_LOGE("Failed to convert '%s' to token IDs", text.c_str()); #endif return {}; } std::vector> x; x.reserve(token_ids.size()); for (auto &i : token_ids) { x.push_back(std::move(i.tokens)); } for (auto &k : x) { k = AddBlank(k, meta_data.pad_id); } int32_t x_size = static_cast(x.size()); if (config_.max_num_sentences <= 0 || x_size <= config_.max_num_sentences) { auto ans = Process(x, sid, speed); if (callback) { callback(ans.samples.data(), ans.samples.size(), 1.0); } return ans; } // the input text is too long, we process sentences within it in batches // to avoid OOM. Batch size is config_.max_num_sentences std::vector> batch_x; int32_t batch_size = config_.max_num_sentences; batch_x.reserve(config_.max_num_sentences); int32_t num_batches = x_size / batch_size; if (config_.model.debug) { #if __OHOS__ SHERPA_ONNX_LOGE( "Text is too long. Split it into %{public}d batches. batch size: " "%{public}d. Number of sentences: %{public}d", num_batches, batch_size, x_size); #else SHERPA_ONNX_LOGE( "Text is too long. Split it into %d batches. batch size: %d. Number " "of sentences: %d", num_batches, batch_size, x_size); #endif } GeneratedAudio ans; int32_t should_continue = 1; int32_t k = 0; for (int32_t b = 0; b != num_batches && should_continue; ++b) { batch_x.clear(); for (int32_t i = 0; i != batch_size; ++i, ++k) { batch_x.push_back(std::move(x[k])); } auto audio = Process(batch_x, sid, speed); ans.sample_rate = audio.sample_rate; ans.samples.insert(ans.samples.end(), audio.samples.begin(), audio.samples.end()); if (callback) { should_continue = callback(audio.samples.data(), audio.samples.size(), (b + 1) * 1.0 / num_batches); // Caution(fangjun): audio is freed when the callback returns, so users // should copy the data if they want to access the data after // the callback returns to avoid segmentation fault. } } batch_x.clear(); while (k < static_cast(x.size()) && should_continue) { batch_x.push_back(std::move(x[k])); ++k; } if (!batch_x.empty()) { auto audio = Process(batch_x, sid, speed); ans.sample_rate = audio.sample_rate; ans.samples.insert(ans.samples.end(), audio.samples.begin(), audio.samples.end()); if (callback) { callback(audio.samples.data(), audio.samples.size(), 1.0); // Caution(fangjun): audio is freed when the callback returns, so users // should copy the data if they want to access the data after // the callback returns to avoid segmentation fault. } } return ans; } private: template void InitFrontend(Manager *mgr) { // for piper phonemizer // we require that you copy espeak_ng_data // from assets to disk // // for jieba // we require that you copy dict from assets to disk const auto &meta_data = model_->GetMetaData(); if (meta_data.jieba && !meta_data.has_espeak) { frontend_ = std::make_unique( mgr, config_.model.matcha.lexicon, config_.model.matcha.tokens, config_.model.matcha.dict_dir, config_.model.debug); } else if (meta_data.has_espeak && !meta_data.jieba) { frontend_ = std::make_unique( mgr, config_.model.matcha.tokens, config_.model.matcha.data_dir, meta_data); } else { SHERPA_ONNX_LOGE("jieba + espeaker-ng is not supported yet"); SHERPA_ONNX_EXIT(-1); } } void InitFrontend() { const auto &meta_data = model_->GetMetaData(); if (meta_data.jieba && !meta_data.has_espeak) { frontend_ = std::make_unique( config_.model.matcha.lexicon, config_.model.matcha.tokens, config_.model.matcha.dict_dir, config_.model.debug); } else if (meta_data.has_espeak && !meta_data.jieba) { frontend_ = std::make_unique( config_.model.matcha.tokens, config_.model.matcha.data_dir, meta_data); } else { SHERPA_ONNX_LOGE("jieba + espeaker-ng is not supported yet"); SHERPA_ONNX_EXIT(-1); } } GeneratedAudio Process(const std::vector> &tokens, int32_t sid, float speed) const { int32_t num_tokens = 0; for (const auto &k : tokens) { num_tokens += k.size(); } std::vector x; x.reserve(num_tokens); for (const auto &k : tokens) { x.insert(x.end(), k.begin(), k.end()); } auto memory_info = Ort::MemoryInfo::CreateCpu(OrtDeviceAllocator, OrtMemTypeDefault); std::array x_shape = {1, static_cast(x.size())}; Ort::Value x_tensor = Ort::Value::CreateTensor( memory_info, x.data(), x.size(), x_shape.data(), x_shape.size()); Ort::Value mel = model_->Run(std::move(x_tensor), sid, speed); GeneratedAudio ans; ans.samples = vocoder_->Run(std::move(mel)); ans.sample_rate = model_->GetMetaData().sample_rate; float silence_scale = config_.silence_scale; if (silence_scale != 1) { ans = ans.ScaleSilence(silence_scale); } return ans; } private: OfflineTtsConfig config_; std::unique_ptr model_; std::unique_ptr vocoder_; std::vector> tn_list_; std::unique_ptr frontend_; }; } // namespace sherpa_onnx #endif // SHERPA_ONNX_CSRC_OFFLINE_TTS_MATCHA_IMPL_H_