mirror of https://github.com/coqui-ai/TTS.git
Make style
This commit is contained in:
parent
9f1670010b
commit
39f31e3d39
|
@ -1,14 +1,14 @@
|
|||
import argparse
|
||||
import os
|
||||
from argparse import RawTextHelpFormatter
|
||||
import torch
|
||||
|
||||
import torch
|
||||
from tqdm import tqdm
|
||||
|
||||
from TTS.config import load_config
|
||||
from TTS.tts.datasets import load_tts_samples
|
||||
from TTS.tts.utils.speakers import SpeakerManager
|
||||
from TTS.tts.utils.managers import save_file
|
||||
from TTS.tts.utils.speakers import SpeakerManager
|
||||
|
||||
parser = argparse.ArgumentParser(
|
||||
description="""Compute embedding vectors for each wav file in a dataset.\n\n"""
|
||||
|
|
|
@ -32,6 +32,7 @@ def save_file(obj: Any, path:str):
|
|||
else:
|
||||
raise ValueError("Unsupported file type")
|
||||
|
||||
|
||||
class BaseIDManager:
|
||||
"""Base `ID` Manager class. Every new `ID` manager must inherit this.
|
||||
It defines common `ID` manager specific functions.
|
||||
|
|
Loading…
Reference in New Issue