Refactor: moved utils.py to style_bert_vits2/models/

This commit is contained in:
tsukumi
2024-03-08 09:40:27 +00:00
parent fe7e31e080
commit 67ff3105c1
8 changed files with 7 additions and 7 deletions

View File

@@ -1,10 +1,10 @@
import torch
from typing import Optional
import utils
from style_bert_vits2.constants import Languages
from style_bert_vits2.logging import logger
from style_bert_vits2.models import commons
from style_bert_vits2.models import utils
from style_bert_vits2.models.models import SynthesizerTrn
from style_bert_vits2.models.models_jp_extra import SynthesizerTrn as SynthesizerTrnJPExtra
from style_bert_vits2.nlp import clean_text, cleaned_text_to_sequence, extract_bert_feature