Spaces:
Running
Running
import math | |
from pathlib import Path | |
from random import Random | |
import click | |
from loguru import logger | |
from tqdm import tqdm | |
from fish_speech.utils.file import AUDIO_EXTENSIONS, list_files, load_filelist | |
def main(root, val_ratio, val_count, filelist): | |
if filelist: | |
files = [i[0] for i in load_filelist(filelist)] | |
else: | |
files = list_files(root, AUDIO_EXTENSIONS, recursive=True, sort=True) | |
logger.info(f"Found {len(files)} files") | |
files = [str(file.relative_to(root)) for file in tqdm(files)] | |
Random(42).shuffle(files) | |
if val_count is None and val_ratio is None: | |
logger.info("Validation ratio and count not specified, using min(20%, 100)") | |
val_size = min(100, math.ceil(len(files) * 0.2)) | |
elif val_count is not None and val_ratio is not None: | |
logger.error("Cannot specify both val_count and val_ratio") | |
return | |
elif val_count is not None: | |
if val_count < 1 or val_count > len(files): | |
logger.error("val_count must be between 1 and number of files") | |
return | |
val_size = val_count | |
else: | |
val_size = math.ceil(len(files) * val_ratio) | |
logger.info(f"Using {val_size} files for validation") | |
with open(root / "vq_train_filelist.txt", "w", encoding="utf-8") as f: | |
f.write("\n".join(files[val_size:])) | |
with open(root / "vq_val_filelist.txt", "w", encoding="utf-8") as f: | |
f.write("\n".join(files[:val_size])) | |
logger.info("Done") | |
if __name__ == "__main__": | |
main() | |