Add: Preparation for ONNX inference support ②
This commit is contained in:
@@ -1,4 +1,8 @@
|
||||
from typing import TYPE_CHECKING, Optional
|
||||
from __future__ import annotations
|
||||
|
||||
from typing import TYPE_CHECKING, Any, Optional, Sequence
|
||||
|
||||
from numpy.typing import NDArray
|
||||
|
||||
from style_bert_vits2.constants import Languages
|
||||
from style_bert_vits2.nlp.symbols import (
|
||||
@@ -24,9 +28,9 @@ def extract_bert_feature(
|
||||
device: str,
|
||||
assist_text: Optional[str] = None,
|
||||
assist_text_weight: float = 0.7,
|
||||
) -> "torch.Tensor":
|
||||
) -> torch.Tensor:
|
||||
"""
|
||||
テキストから BERT の特徴量を抽出する
|
||||
テキストから BERT の特徴量を抽出する (PyTorch 推論)
|
||||
|
||||
Args:
|
||||
text (str): テキスト
|
||||
@@ -52,6 +56,46 @@ def extract_bert_feature(
|
||||
return extract_bert_feature(text, word2ph, device, assist_text, assist_text_weight)
|
||||
|
||||
|
||||
def extract_bert_feature_onnx(
|
||||
text: str,
|
||||
word2ph: list[int],
|
||||
language: Languages,
|
||||
onnx_providers: list[str],
|
||||
onnx_provider_options: Optional[Sequence[dict[str, Any]]],
|
||||
assist_text: Optional[str] = None,
|
||||
assist_text_weight: float = 0.7,
|
||||
) -> NDArray[Any]:
|
||||
"""
|
||||
テキストから BERT の特徴量を抽出する (ONNX 推論)
|
||||
|
||||
Args:
|
||||
text (str): テキスト
|
||||
word2ph (list[int]): 元のテキストの各文字に音素が何個割り当てられるかを表すリスト
|
||||
language (Languages): テキストの言語
|
||||
onnx_providers (list[str]): ONNX 推論で利用する ExecutionProvider (CPUExecutionProvider, CUDAExecutionProvider など)
|
||||
onnx_provider_options (Optional[dict[str, Any]]): ONNX 推論で利用する ExecutionProvider のオプション
|
||||
assist_text (Optional[str], optional): 補助テキスト (デフォルト: None)
|
||||
assist_text_weight (float, optional): 補助テキストの重み (デフォルト: 0.7)
|
||||
|
||||
Returns:
|
||||
NDArray[Any]: BERT の特徴量
|
||||
"""
|
||||
|
||||
if language == Languages.JP:
|
||||
from style_bert_vits2.nlp.japanese.bert_feature import extract_bert_feature_onnx
|
||||
else:
|
||||
raise ValueError(f"Language {language} not supported")
|
||||
|
||||
return extract_bert_feature_onnx(
|
||||
text,
|
||||
word2ph,
|
||||
onnx_providers,
|
||||
onnx_provider_options,
|
||||
assist_text,
|
||||
assist_text_weight,
|
||||
)
|
||||
|
||||
|
||||
def clean_text(
|
||||
text: str,
|
||||
language: Languages,
|
||||
@@ -96,6 +140,87 @@ def clean_text(
|
||||
return norm_text, phones, tones, word2ph
|
||||
|
||||
|
||||
def clean_text_with_given_phone_tone(
|
||||
text: str,
|
||||
language: Languages,
|
||||
given_phone: Optional[list[str]] = None,
|
||||
given_tone: Optional[list[int]] = None,
|
||||
use_jp_extra: bool = True,
|
||||
raise_yomi_error: bool = False,
|
||||
) -> tuple[str, list[str], list[int], list[int]]:
|
||||
"""
|
||||
テキストをクリーニングし、音素に変換する
|
||||
変換時、given_phone や given_tone が与えられた場合はそれを調整して使う
|
||||
|
||||
Args:
|
||||
text (str): クリーニングするテキスト
|
||||
language (Languages): テキストの言語
|
||||
given_phone (Optional[list[int]], optional): 読み上げテキストの読みを表す音素列。指定する場合は given_tone も別途指定が必要. Defaults to None.
|
||||
given_tone (Optional[list[int]], optional): アクセントのトーンのリスト. Defaults to None.
|
||||
use_jp_extra (bool, optional): テキストが日本語の場合に JP-Extra モデルを利用するかどうか。Defaults to True.
|
||||
raise_yomi_error (bool, optional): False の場合、読めない文字が消えたような扱いとして処理される。Defaults to False.
|
||||
|
||||
Returns:
|
||||
tuple[str, list[str], list[int], list[int]]: クリーニングされたテキストと、音素・アクセント・元のテキストの各文字に音素が何個割り当てられるかのリスト
|
||||
"""
|
||||
|
||||
# 与えられたテキストをクリーニング
|
||||
norm_text, phone, tone, word2ph = clean_text(
|
||||
text,
|
||||
language,
|
||||
use_jp_extra=use_jp_extra,
|
||||
raise_yomi_error=raise_yomi_error,
|
||||
)
|
||||
|
||||
# phone と tone の両方が与えられた場合はそれを使う
|
||||
if given_phone is not None and given_tone is not None:
|
||||
# 指定された phone と指定された tone 両方の長さが一致していなければならない
|
||||
if len(given_phone) != len(given_tone):
|
||||
raise InvalidPhoneError(
|
||||
f"Length of given_phone ({len(given_phone)}) != length of given_tone ({len(given_tone)})"
|
||||
)
|
||||
# 与えられた音素数と pyopenjtalk で生成した読みの音素数が一致しない
|
||||
if len(given_phone) != sum(word2ph):
|
||||
# 日本語の場合、len(given_phone) と sum(word2ph) が一致するように word2ph を適切に調整する
|
||||
# 他の言語は word2ph の調整方法が思いつかないのでエラー
|
||||
if language == Languages.JP:
|
||||
from style_bert_vits2.nlp.japanese.g2p import adjust_word2ph
|
||||
|
||||
# use_jp_extra でない場合は given_phone 内の「N」を「n」に変換
|
||||
if not use_jp_extra:
|
||||
given_phone = [p if p != "N" else "n" for p in given_phone]
|
||||
# clean_text() から取得した word2ph を調整結果で上書き
|
||||
word2ph = adjust_word2ph(word2ph, phone, given_phone)
|
||||
# 上記処理により word2ph の合計が given_phone の長さと一致するはず
|
||||
# それでも一致しない場合、大半は読み上げテキストと given_phone が著しく乖離していて調整し切れなかったことを意味する
|
||||
if len(given_phone) != sum(word2ph):
|
||||
raise InvalidPhoneError(
|
||||
f"Length of given_phone ({len(given_phone)}) != sum of word2ph ({sum(word2ph)})"
|
||||
)
|
||||
else:
|
||||
raise InvalidPhoneError(
|
||||
f"Length of given_phone ({len(given_phone)}) != sum of word2ph ({sum(word2ph)})"
|
||||
)
|
||||
phone = given_phone
|
||||
# 生成あるいは指定された phone と指定された tone 両方の長さが一致していなければならない
|
||||
if len(phone) != len(given_tone):
|
||||
raise InvalidToneError(
|
||||
f"Length of phone ({len(phone)}) != length of given_tone ({len(given_tone)})"
|
||||
)
|
||||
tone = given_tone
|
||||
|
||||
# tone だけが与えられた場合は clean_text() で生成した phone と合わせて使う
|
||||
elif given_tone is not None:
|
||||
# 生成した phone と指定された tone 両方の長さが一致していなければならない
|
||||
if len(phone) != len(given_tone):
|
||||
raise InvalidToneError(
|
||||
f"Length of phone ({len(phone)}) != length of given_tone ({len(given_tone)})"
|
||||
)
|
||||
tone = given_tone
|
||||
|
||||
return norm_text, phone, tone, word2ph
|
||||
|
||||
|
||||
def cleaned_text_to_sequence(
|
||||
cleaned_phones: list[str], tones: list[int], language: Languages
|
||||
) -> tuple[list[int], list[int], list[int]]:
|
||||
@@ -118,3 +243,11 @@ def cleaned_text_to_sequence(
|
||||
lang_ids = [lang_id for i in phones]
|
||||
|
||||
return phones, tones, lang_ids
|
||||
|
||||
|
||||
class InvalidPhoneError(ValueError):
|
||||
pass
|
||||
|
||||
|
||||
class InvalidToneError(ValueError):
|
||||
pass
|
||||
|
||||
Reference in New Issue
Block a user