make a structure first

This commit is contained in:
SWivid
2024-10-24 00:07:14 +08:00
parent 213adf4e6f
commit 8ed1beac1e
22 changed files with 1080 additions and 1081 deletions

View File

@@ -1,15 +1,14 @@
import random
import sys
import tqdm
import soundfile as sf
import torch
import tqdm
from cached_path import cached_path
from f5_tts.model import DiT, UNetT
from f5_tts.model.utils import save_spectrogram
from f5_tts.model.utils import seed_everything, save_spectrogram
from f5_tts.model.utils_infer import load_vocoder, load_model, infer_process, remove_silence_for_generated_wav
from f5_tts.model.utils import seed_everything
import random
import sys
class F5TTS: