xinference 0.14.2__py3-none-any.whl → 0.14.4__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of xinference might be problematic. Click here for more details.
- xinference/_version.py +3 -3
- xinference/core/chat_interface.py +1 -1
- xinference/core/image_interface.py +9 -0
- xinference/core/model.py +4 -1
- xinference/core/worker.py +60 -44
- xinference/model/audio/chattts.py +25 -9
- xinference/model/audio/core.py +8 -2
- xinference/model/audio/cosyvoice.py +4 -3
- xinference/model/audio/custom.py +4 -5
- xinference/model/audio/fish_speech.py +228 -0
- xinference/model/audio/model_spec.json +8 -0
- xinference/model/embedding/core.py +25 -1
- xinference/model/embedding/custom.py +4 -5
- xinference/model/flexible/core.py +5 -1
- xinference/model/image/custom.py +4 -5
- xinference/model/image/model_spec.json +2 -1
- xinference/model/image/model_spec_modelscope.json +2 -1
- xinference/model/image/stable_diffusion/core.py +66 -3
- xinference/model/llm/__init__.py +6 -0
- xinference/model/llm/llm_family.json +54 -9
- xinference/model/llm/llm_family.py +7 -6
- xinference/model/llm/llm_family_modelscope.json +56 -10
- xinference/model/llm/lmdeploy/__init__.py +0 -0
- xinference/model/llm/lmdeploy/core.py +557 -0
- xinference/model/llm/sglang/core.py +7 -1
- xinference/model/llm/transformers/cogvlm2.py +4 -45
- xinference/model/llm/transformers/cogvlm2_video.py +524 -0
- xinference/model/llm/transformers/core.py +3 -0
- xinference/model/llm/transformers/glm4v.py +2 -23
- xinference/model/llm/transformers/intern_vl.py +94 -11
- xinference/model/llm/transformers/minicpmv25.py +2 -23
- xinference/model/llm/transformers/minicpmv26.py +2 -22
- xinference/model/llm/transformers/yi_vl.py +2 -24
- xinference/model/llm/utils.py +13 -1
- xinference/model/llm/vllm/core.py +1 -34
- xinference/model/rerank/custom.py +4 -5
- xinference/model/utils.py +41 -1
- xinference/model/video/core.py +3 -1
- xinference/model/video/diffusers.py +41 -38
- xinference/model/video/model_spec.json +24 -1
- xinference/model/video/model_spec_modelscope.json +25 -1
- xinference/thirdparty/fish_speech/__init__.py +0 -0
- xinference/thirdparty/fish_speech/fish_speech/__init__.py +0 -0
- xinference/thirdparty/fish_speech/fish_speech/callbacks/__init__.py +3 -0
- xinference/thirdparty/fish_speech/fish_speech/callbacks/grad_norm.py +113 -0
- xinference/thirdparty/fish_speech/fish_speech/configs/__init__.py +0 -0
- xinference/thirdparty/fish_speech/fish_speech/configs/lora/__init__.py +0 -0
- xinference/thirdparty/fish_speech/fish_speech/conversation.py +2 -0
- xinference/thirdparty/fish_speech/fish_speech/datasets/__init__.py +0 -0
- xinference/thirdparty/fish_speech/fish_speech/datasets/concat_repeat.py +53 -0
- xinference/thirdparty/fish_speech/fish_speech/datasets/protos/__init__.py +0 -0
- xinference/thirdparty/fish_speech/fish_speech/datasets/protos/text_data_pb2.py +33 -0
- xinference/thirdparty/fish_speech/fish_speech/datasets/protos/text_data_stream.py +36 -0
- xinference/thirdparty/fish_speech/fish_speech/datasets/semantic.py +496 -0
- xinference/thirdparty/fish_speech/fish_speech/datasets/vqgan.py +147 -0
- xinference/thirdparty/fish_speech/fish_speech/i18n/__init__.py +3 -0
- xinference/thirdparty/fish_speech/fish_speech/i18n/core.py +40 -0
- xinference/thirdparty/fish_speech/fish_speech/i18n/locale/__init__.py +0 -0
- xinference/thirdparty/fish_speech/fish_speech/i18n/locale/en_US.json +122 -0
- xinference/thirdparty/fish_speech/fish_speech/i18n/locale/es_ES.json +122 -0
- xinference/thirdparty/fish_speech/fish_speech/i18n/locale/ja_JP.json +123 -0
- xinference/thirdparty/fish_speech/fish_speech/i18n/locale/pt_BR.json +133 -0
- xinference/thirdparty/fish_speech/fish_speech/i18n/locale/zh_CN.json +122 -0
- xinference/thirdparty/fish_speech/fish_speech/i18n/scan.py +122 -0
- xinference/thirdparty/fish_speech/fish_speech/models/__init__.py +0 -0
- xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/__init__.py +0 -0
- xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/lit_module.py +202 -0
- xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/llama.py +779 -0
- xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/lora.py +92 -0
- xinference/thirdparty/fish_speech/fish_speech/models/vqgan/__init__.py +3 -0
- xinference/thirdparty/fish_speech/fish_speech/models/vqgan/lit_module.py +442 -0
- xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/__init__.py +0 -0
- xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/discriminator.py +44 -0
- xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/firefly.py +625 -0
- xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/fsq.py +139 -0
- xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/reference.py +115 -0
- xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/wavenet.py +225 -0
- xinference/thirdparty/fish_speech/fish_speech/models/vqgan/utils.py +94 -0
- xinference/thirdparty/fish_speech/fish_speech/scheduler.py +40 -0
- xinference/thirdparty/fish_speech/fish_speech/text/__init__.py +4 -0
- xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/__init__.py +0 -0
- xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/basic_class.py +172 -0
- xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/basic_constant.py +30 -0
- xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/basic_util.py +342 -0
- xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/cardinal.py +32 -0
- xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/date.py +75 -0
- xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/digit.py +32 -0
- xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/fraction.py +35 -0
- xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/money.py +43 -0
- xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/percentage.py +33 -0
- xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/telephone.py +51 -0
- xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/text.py +177 -0
- xinference/thirdparty/fish_speech/fish_speech/text/clean.py +69 -0
- xinference/thirdparty/fish_speech/fish_speech/text/spliter.py +130 -0
- xinference/thirdparty/fish_speech/fish_speech/train.py +139 -0
- xinference/thirdparty/fish_speech/fish_speech/utils/__init__.py +23 -0
- xinference/thirdparty/fish_speech/fish_speech/utils/braceexpand.py +217 -0
- xinference/thirdparty/fish_speech/fish_speech/utils/context.py +13 -0
- xinference/thirdparty/fish_speech/fish_speech/utils/file.py +16 -0
- xinference/thirdparty/fish_speech/fish_speech/utils/instantiators.py +50 -0
- xinference/thirdparty/fish_speech/fish_speech/utils/logger.py +55 -0
- xinference/thirdparty/fish_speech/fish_speech/utils/logging_utils.py +48 -0
- xinference/thirdparty/fish_speech/fish_speech/utils/rich_utils.py +100 -0
- xinference/thirdparty/fish_speech/fish_speech/utils/spectrogram.py +122 -0
- xinference/thirdparty/fish_speech/fish_speech/utils/utils.py +114 -0
- xinference/thirdparty/fish_speech/fish_speech/webui/__init__.py +0 -0
- xinference/thirdparty/fish_speech/fish_speech/webui/launch_utils.py +120 -0
- xinference/thirdparty/fish_speech/fish_speech/webui/manage.py +1237 -0
- xinference/thirdparty/fish_speech/tools/__init__.py +0 -0
- xinference/thirdparty/fish_speech/tools/api.py +495 -0
- xinference/thirdparty/fish_speech/tools/auto_rerank.py +159 -0
- xinference/thirdparty/fish_speech/tools/download_models.py +55 -0
- xinference/thirdparty/fish_speech/tools/extract_model.py +21 -0
- xinference/thirdparty/fish_speech/tools/file.py +108 -0
- xinference/thirdparty/fish_speech/tools/gen_ref.py +36 -0
- xinference/thirdparty/fish_speech/tools/llama/__init__.py +0 -0
- xinference/thirdparty/fish_speech/tools/llama/build_dataset.py +169 -0
- xinference/thirdparty/fish_speech/tools/llama/eval_in_context.py +171 -0
- xinference/thirdparty/fish_speech/tools/llama/generate.py +698 -0
- xinference/thirdparty/fish_speech/tools/llama/merge_lora.py +95 -0
- xinference/thirdparty/fish_speech/tools/llama/quantize.py +497 -0
- xinference/thirdparty/fish_speech/tools/llama/rebuild_tokenizer.py +57 -0
- xinference/thirdparty/fish_speech/tools/merge_asr_files.py +55 -0
- xinference/thirdparty/fish_speech/tools/post_api.py +164 -0
- xinference/thirdparty/fish_speech/tools/sensevoice/__init__.py +0 -0
- xinference/thirdparty/fish_speech/tools/sensevoice/auto_model.py +573 -0
- xinference/thirdparty/fish_speech/tools/sensevoice/fun_asr.py +332 -0
- xinference/thirdparty/fish_speech/tools/sensevoice/vad_utils.py +61 -0
- xinference/thirdparty/fish_speech/tools/smart_pad.py +47 -0
- xinference/thirdparty/fish_speech/tools/vqgan/__init__.py +0 -0
- xinference/thirdparty/fish_speech/tools/vqgan/create_train_split.py +83 -0
- xinference/thirdparty/fish_speech/tools/vqgan/extract_vq.py +227 -0
- xinference/thirdparty/fish_speech/tools/vqgan/inference.py +120 -0
- xinference/thirdparty/fish_speech/tools/webui.py +619 -0
- xinference/thirdparty/fish_speech/tools/whisper_asr.py +176 -0
- xinference/thirdparty/matcha/__init__.py +0 -0
- xinference/thirdparty/matcha/app.py +357 -0
- xinference/thirdparty/matcha/cli.py +419 -0
- xinference/thirdparty/matcha/data/__init__.py +0 -0
- xinference/thirdparty/matcha/data/components/__init__.py +0 -0
- xinference/thirdparty/matcha/data/text_mel_datamodule.py +274 -0
- xinference/thirdparty/matcha/hifigan/__init__.py +0 -0
- xinference/thirdparty/matcha/hifigan/config.py +28 -0
- xinference/thirdparty/matcha/hifigan/denoiser.py +64 -0
- xinference/thirdparty/matcha/hifigan/env.py +17 -0
- xinference/thirdparty/matcha/hifigan/meldataset.py +217 -0
- xinference/thirdparty/matcha/hifigan/models.py +368 -0
- xinference/thirdparty/matcha/hifigan/xutils.py +60 -0
- xinference/thirdparty/matcha/models/__init__.py +0 -0
- xinference/thirdparty/matcha/models/baselightningmodule.py +210 -0
- xinference/thirdparty/matcha/models/components/__init__.py +0 -0
- xinference/thirdparty/matcha/models/components/decoder.py +443 -0
- xinference/thirdparty/matcha/models/components/flow_matching.py +132 -0
- xinference/thirdparty/matcha/models/components/text_encoder.py +410 -0
- xinference/thirdparty/matcha/models/components/transformer.py +316 -0
- xinference/thirdparty/matcha/models/matcha_tts.py +244 -0
- xinference/thirdparty/matcha/onnx/__init__.py +0 -0
- xinference/thirdparty/matcha/onnx/export.py +181 -0
- xinference/thirdparty/matcha/onnx/infer.py +168 -0
- xinference/thirdparty/matcha/text/__init__.py +53 -0
- xinference/thirdparty/matcha/text/cleaners.py +121 -0
- xinference/thirdparty/matcha/text/numbers.py +71 -0
- xinference/thirdparty/matcha/text/symbols.py +17 -0
- xinference/thirdparty/matcha/train.py +122 -0
- xinference/thirdparty/matcha/utils/__init__.py +5 -0
- xinference/thirdparty/matcha/utils/audio.py +82 -0
- xinference/thirdparty/matcha/utils/generate_data_statistics.py +112 -0
- xinference/thirdparty/matcha/utils/get_durations_from_trained_model.py +195 -0
- xinference/thirdparty/matcha/utils/instantiators.py +56 -0
- xinference/thirdparty/matcha/utils/logging_utils.py +53 -0
- xinference/thirdparty/matcha/utils/model.py +90 -0
- xinference/thirdparty/matcha/utils/monotonic_align/__init__.py +22 -0
- xinference/thirdparty/matcha/utils/monotonic_align/core.pyx +47 -0
- xinference/thirdparty/matcha/utils/monotonic_align/setup.py +7 -0
- xinference/thirdparty/matcha/utils/pylogger.py +21 -0
- xinference/thirdparty/matcha/utils/rich_utils.py +101 -0
- xinference/thirdparty/matcha/utils/utils.py +259 -0
- xinference/web/ui/build/asset-manifest.json +3 -3
- xinference/web/ui/build/index.html +1 -1
- xinference/web/ui/build/static/js/{main.ffc26121.js → main.661c7b0a.js} +3 -3
- xinference/web/ui/build/static/js/main.661c7b0a.js.map +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/070d8c6b3b0f3485c6d3885f0b6bbfdf9643e088a468acbd5d596f2396071c16.json +1 -0
- {xinference-0.14.2.dist-info → xinference-0.14.4.dist-info}/METADATA +31 -11
- {xinference-0.14.2.dist-info → xinference-0.14.4.dist-info}/RECORD +189 -49
- xinference/web/ui/build/static/js/main.ffc26121.js.map +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/2f40209b32e7e46a2eab6b8c8a355eb42c3caa8bc3228dd929f32fd2b3940294.json +0 -1
- /xinference/web/ui/build/static/js/{main.ffc26121.js.LICENSE.txt → main.661c7b0a.js.LICENSE.txt} +0 -0
- {xinference-0.14.2.dist-info → xinference-0.14.4.dist-info}/LICENSE +0 -0
- {xinference-0.14.2.dist-info → xinference-0.14.4.dist-info}/WHEEL +0 -0
- {xinference-0.14.2.dist-info → xinference-0.14.4.dist-info}/entry_points.txt +0 -0
- {xinference-0.14.2.dist-info → xinference-0.14.4.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,227 @@
|
|
|
1
|
+
import os
|
|
2
|
+
import subprocess as sp
|
|
3
|
+
import sys
|
|
4
|
+
import time
|
|
5
|
+
from datetime import timedelta
|
|
6
|
+
from functools import lru_cache
|
|
7
|
+
from pathlib import Path
|
|
8
|
+
from random import Random
|
|
9
|
+
|
|
10
|
+
import click
|
|
11
|
+
import numpy as np
|
|
12
|
+
import torch
|
|
13
|
+
import torchaudio
|
|
14
|
+
from hydra import compose, initialize
|
|
15
|
+
from hydra.utils import instantiate
|
|
16
|
+
from lightning import LightningModule
|
|
17
|
+
from loguru import logger
|
|
18
|
+
from omegaconf import OmegaConf
|
|
19
|
+
|
|
20
|
+
from tools.file import AUDIO_EXTENSIONS, list_files, load_filelist
|
|
21
|
+
|
|
22
|
+
# register eval resolver
|
|
23
|
+
OmegaConf.register_new_resolver("eval", eval)
|
|
24
|
+
# This file is used to convert the audio files to text files using the Whisper model.
|
|
25
|
+
# It's mainly used to generate the training data for the VQ model.
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
RANK = int(os.environ.get("SLURM_PROCID", 0))
|
|
29
|
+
WORLD_SIZE = int(os.environ.get("SLURM_NTASKS", 1))
|
|
30
|
+
|
|
31
|
+
logger_format = (
|
|
32
|
+
"<green>{time:YYYY-MM-DD HH:mm:ss.SSS}</green> | "
|
|
33
|
+
"<level>{level: <8}</level> | "
|
|
34
|
+
"<cyan>{name}</cyan>:<cyan>{function}</cyan>:<cyan>{line}</cyan> | "
|
|
35
|
+
"{extra[rank]} - <level>{message}</level>"
|
|
36
|
+
)
|
|
37
|
+
logger.configure(extra={"rank": f"RANK: {RANK} / {WORLD_SIZE}"})
|
|
38
|
+
logger.remove()
|
|
39
|
+
logger.add(sys.stderr, format=logger_format)
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
@lru_cache(maxsize=1)
|
|
43
|
+
def get_model(
|
|
44
|
+
config_name: str = "firefly_gan_vq",
|
|
45
|
+
checkpoint_path: str = "checkpoints/fish-speech-1.2-sft/firefly-gan-vq-fsq-4x1024-42hz-generator.pth",
|
|
46
|
+
device: str | torch.device = "cuda",
|
|
47
|
+
):
|
|
48
|
+
with initialize(version_base="1.3", config_path="../../fish_speech/configs"):
|
|
49
|
+
cfg = compose(config_name=config_name)
|
|
50
|
+
|
|
51
|
+
model = instantiate(cfg)
|
|
52
|
+
state_dict = torch.load(
|
|
53
|
+
checkpoint_path,
|
|
54
|
+
map_location=device,
|
|
55
|
+
)
|
|
56
|
+
if "state_dict" in state_dict:
|
|
57
|
+
state_dict = state_dict["state_dict"]
|
|
58
|
+
|
|
59
|
+
if any("generator" in k for k in state_dict):
|
|
60
|
+
state_dict = {
|
|
61
|
+
k.replace("generator.", ""): v
|
|
62
|
+
for k, v in state_dict.items()
|
|
63
|
+
if "generator." in k
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
model.load_state_dict(state_dict, strict=False)
|
|
67
|
+
model.eval()
|
|
68
|
+
model.to(device)
|
|
69
|
+
|
|
70
|
+
logger.info(f"Loaded model")
|
|
71
|
+
return model
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
@torch.inference_mode()
|
|
75
|
+
def process_batch(files: list[Path], model) -> float:
|
|
76
|
+
wavs = []
|
|
77
|
+
audio_lengths = []
|
|
78
|
+
new_files = []
|
|
79
|
+
max_length = total_time = 0
|
|
80
|
+
|
|
81
|
+
for file in files:
|
|
82
|
+
try:
|
|
83
|
+
wav, sr = torchaudio.load(
|
|
84
|
+
str(file), backend="sox" if sys.platform == "linux" else "soundfile"
|
|
85
|
+
) # Need to install libsox-dev
|
|
86
|
+
except Exception as e:
|
|
87
|
+
logger.error(f"Error reading {file}: {e}")
|
|
88
|
+
continue
|
|
89
|
+
|
|
90
|
+
if wav.shape[0] > 1:
|
|
91
|
+
wav = wav.mean(dim=0, keepdim=True)
|
|
92
|
+
|
|
93
|
+
wav = torchaudio.functional.resample(
|
|
94
|
+
wav.cuda(), sr, model.spec_transform.sample_rate
|
|
95
|
+
)[0]
|
|
96
|
+
total_time += len(wav) / model.spec_transform.sample_rate
|
|
97
|
+
max_length = max(max_length, len(wav))
|
|
98
|
+
|
|
99
|
+
wavs.append(wav)
|
|
100
|
+
audio_lengths.append(len(wav))
|
|
101
|
+
new_files.append(file)
|
|
102
|
+
|
|
103
|
+
files = new_files
|
|
104
|
+
|
|
105
|
+
# Pad to max length
|
|
106
|
+
for i, wav in enumerate(wavs):
|
|
107
|
+
wavs[i] = torch.nn.functional.pad(wav, (0, max_length - len(wav)), "constant")
|
|
108
|
+
|
|
109
|
+
audios = torch.stack(wavs, dim=0)[:, None]
|
|
110
|
+
audio_lengths = torch.tensor(audio_lengths, device=model.device, dtype=torch.long)
|
|
111
|
+
|
|
112
|
+
# Calculate lengths
|
|
113
|
+
indices, feature_lengths = model.encode(audios, audio_lengths)
|
|
114
|
+
|
|
115
|
+
# Save to disk
|
|
116
|
+
outputs = indices.cpu().numpy()
|
|
117
|
+
|
|
118
|
+
for file, length, feature, audio_length in zip(
|
|
119
|
+
files, feature_lengths, outputs, audio_lengths
|
|
120
|
+
):
|
|
121
|
+
feature = feature[:, :length]
|
|
122
|
+
|
|
123
|
+
# (T,)
|
|
124
|
+
with open(file.with_suffix(".npy"), "wb") as f:
|
|
125
|
+
np.save(f, feature)
|
|
126
|
+
|
|
127
|
+
return total_time
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
@click.command()
|
|
131
|
+
@click.argument("folder")
|
|
132
|
+
@click.option("--num-workers", default=1)
|
|
133
|
+
@click.option("--config-name", default="firefly_gan_vq")
|
|
134
|
+
@click.option(
|
|
135
|
+
"--checkpoint-path",
|
|
136
|
+
default="checkpoints/fish-speech-1.2-sft/firefly-gan-vq-fsq-4x1024-42hz-generator.pth",
|
|
137
|
+
)
|
|
138
|
+
@click.option("--batch-size", default=64)
|
|
139
|
+
@click.option("--filelist", default=None, type=Path)
|
|
140
|
+
def main(
|
|
141
|
+
folder: str,
|
|
142
|
+
num_workers: int,
|
|
143
|
+
config_name: str,
|
|
144
|
+
checkpoint_path: str,
|
|
145
|
+
batch_size: int,
|
|
146
|
+
filelist: Path,
|
|
147
|
+
):
|
|
148
|
+
if num_workers > 1 and WORLD_SIZE != num_workers:
|
|
149
|
+
assert WORLD_SIZE == 1, "You should either use SLURM or this launcher, not both"
|
|
150
|
+
|
|
151
|
+
logger.info(f"Spawning {num_workers} workers")
|
|
152
|
+
|
|
153
|
+
if torch.cuda.is_available():
|
|
154
|
+
visible_devices = os.environ.get("CUDA_VISIBLE_DEVICES", None)
|
|
155
|
+
if visible_devices is None:
|
|
156
|
+
visible_devices = list(range(torch.cuda.device_count()))
|
|
157
|
+
else:
|
|
158
|
+
visible_devices = visible_devices.split(",")
|
|
159
|
+
else:
|
|
160
|
+
# Set to empty string to avoid using GPU
|
|
161
|
+
visible_devices = [""]
|
|
162
|
+
|
|
163
|
+
processes = []
|
|
164
|
+
for i in range(num_workers):
|
|
165
|
+
env = os.environ.copy()
|
|
166
|
+
env["CUDA_VISIBLE_DEVICES"] = str(visible_devices[i % len(visible_devices)])
|
|
167
|
+
env["SLURM_PROCID"] = str(i)
|
|
168
|
+
env["SLURM_NTASKS"] = str(num_workers)
|
|
169
|
+
|
|
170
|
+
processes.append(
|
|
171
|
+
sp.Popen(
|
|
172
|
+
[sys.executable] + sys.argv.copy(),
|
|
173
|
+
env=env,
|
|
174
|
+
)
|
|
175
|
+
)
|
|
176
|
+
|
|
177
|
+
for p in processes:
|
|
178
|
+
p.wait()
|
|
179
|
+
|
|
180
|
+
logger.info(f"All workers finished")
|
|
181
|
+
return
|
|
182
|
+
|
|
183
|
+
# This is a worker
|
|
184
|
+
logger.info(f"Starting worker")
|
|
185
|
+
if filelist:
|
|
186
|
+
files = [i[0] for i in load_filelist(filelist)]
|
|
187
|
+
else:
|
|
188
|
+
files = list_files(folder, AUDIO_EXTENSIONS, recursive=True, sort=False)
|
|
189
|
+
|
|
190
|
+
print(f"Found {len(files)} files")
|
|
191
|
+
files = [Path(f) for f in files if not Path(f).with_suffix(".npy").exists()]
|
|
192
|
+
|
|
193
|
+
total_files = len(files)
|
|
194
|
+
files = files[RANK::WORLD_SIZE]
|
|
195
|
+
logger.info(f"Processing {len(files)}/{total_files} files")
|
|
196
|
+
|
|
197
|
+
# Batch processing
|
|
198
|
+
total_time = 0
|
|
199
|
+
begin_time = time.time()
|
|
200
|
+
processed_files = 0
|
|
201
|
+
model = get_model(config_name, checkpoint_path)
|
|
202
|
+
|
|
203
|
+
for n_batch, idx in enumerate(range(0, len(files), batch_size)):
|
|
204
|
+
batch = files[idx : idx + batch_size]
|
|
205
|
+
batch_time = process_batch(batch, model)
|
|
206
|
+
|
|
207
|
+
total_time += batch_time
|
|
208
|
+
processed_files += len(batch)
|
|
209
|
+
|
|
210
|
+
if (n_batch + 1) % 10 == 0:
|
|
211
|
+
eta = (
|
|
212
|
+
(time.time() - begin_time)
|
|
213
|
+
/ processed_files
|
|
214
|
+
* (len(files) - processed_files)
|
|
215
|
+
)
|
|
216
|
+
logger.info(
|
|
217
|
+
f"Processed {processed_files} files, {total_time / 3600:.2f} hours of audio, "
|
|
218
|
+
+ f"ETA: {timedelta(seconds=round(eta))}s"
|
|
219
|
+
)
|
|
220
|
+
|
|
221
|
+
logger.info(
|
|
222
|
+
f"Finished processing {len(files)} files, {total_time / 3600:.2f} hours of audio"
|
|
223
|
+
)
|
|
224
|
+
|
|
225
|
+
|
|
226
|
+
if __name__ == "__main__":
|
|
227
|
+
main()
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
from pathlib import Path
|
|
2
|
+
|
|
3
|
+
import click
|
|
4
|
+
import hydra
|
|
5
|
+
import numpy as np
|
|
6
|
+
import soundfile as sf
|
|
7
|
+
import torch
|
|
8
|
+
import torchaudio
|
|
9
|
+
from hydra import compose, initialize
|
|
10
|
+
from hydra.utils import instantiate
|
|
11
|
+
from loguru import logger
|
|
12
|
+
from omegaconf import OmegaConf
|
|
13
|
+
|
|
14
|
+
from tools.file import AUDIO_EXTENSIONS
|
|
15
|
+
|
|
16
|
+
# register eval resolver
|
|
17
|
+
OmegaConf.register_new_resolver("eval", eval)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
def load_model(config_name, checkpoint_path, device="cuda"):
|
|
21
|
+
hydra.core.global_hydra.GlobalHydra.instance().clear()
|
|
22
|
+
with initialize(version_base="1.3", config_path="../../fish_speech/configs"):
|
|
23
|
+
cfg = compose(config_name=config_name)
|
|
24
|
+
|
|
25
|
+
model = instantiate(cfg)
|
|
26
|
+
state_dict = torch.load(
|
|
27
|
+
checkpoint_path,
|
|
28
|
+
map_location=device,
|
|
29
|
+
)
|
|
30
|
+
if "state_dict" in state_dict:
|
|
31
|
+
state_dict = state_dict["state_dict"]
|
|
32
|
+
|
|
33
|
+
if any("generator" in k for k in state_dict):
|
|
34
|
+
state_dict = {
|
|
35
|
+
k.replace("generator.", ""): v
|
|
36
|
+
for k, v in state_dict.items()
|
|
37
|
+
if "generator." in k
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
result = model.load_state_dict(state_dict, strict=False)
|
|
41
|
+
model.eval()
|
|
42
|
+
model.to(device)
|
|
43
|
+
|
|
44
|
+
logger.info(f"Loaded model: {result}")
|
|
45
|
+
return model
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
@torch.no_grad()
|
|
49
|
+
@click.command()
|
|
50
|
+
@click.option(
|
|
51
|
+
"--input-path",
|
|
52
|
+
"-i",
|
|
53
|
+
default="test.wav",
|
|
54
|
+
type=click.Path(exists=True, path_type=Path),
|
|
55
|
+
)
|
|
56
|
+
@click.option(
|
|
57
|
+
"--output-path", "-o", default="fake.wav", type=click.Path(path_type=Path)
|
|
58
|
+
)
|
|
59
|
+
@click.option("--config-name", default="firefly_gan_vq")
|
|
60
|
+
@click.option(
|
|
61
|
+
"--checkpoint-path",
|
|
62
|
+
default="checkpoints/fish-speech-1.2-sft/firefly-gan-vq-fsq-4x1024-42hz-generator.pth",
|
|
63
|
+
)
|
|
64
|
+
@click.option(
|
|
65
|
+
"--device",
|
|
66
|
+
"-d",
|
|
67
|
+
default="cuda",
|
|
68
|
+
)
|
|
69
|
+
def main(input_path, output_path, config_name, checkpoint_path, device):
|
|
70
|
+
model = load_model(config_name, checkpoint_path, device=device)
|
|
71
|
+
|
|
72
|
+
if input_path.suffix in AUDIO_EXTENSIONS:
|
|
73
|
+
logger.info(f"Processing in-place reconstruction of {input_path}")
|
|
74
|
+
|
|
75
|
+
# Load audio
|
|
76
|
+
audio, sr = torchaudio.load(str(input_path))
|
|
77
|
+
if audio.shape[0] > 1:
|
|
78
|
+
audio = audio.mean(0, keepdim=True)
|
|
79
|
+
audio = torchaudio.functional.resample(
|
|
80
|
+
audio, sr, model.spec_transform.sample_rate
|
|
81
|
+
)
|
|
82
|
+
|
|
83
|
+
audios = audio[None].to(device)
|
|
84
|
+
logger.info(
|
|
85
|
+
f"Loaded audio with {audios.shape[2] / model.spec_transform.sample_rate:.2f} seconds"
|
|
86
|
+
)
|
|
87
|
+
|
|
88
|
+
# VQ Encoder
|
|
89
|
+
audio_lengths = torch.tensor([audios.shape[2]], device=device, dtype=torch.long)
|
|
90
|
+
indices = model.encode(audios, audio_lengths)[0][0]
|
|
91
|
+
|
|
92
|
+
logger.info(f"Generated indices of shape {indices.shape}")
|
|
93
|
+
|
|
94
|
+
# Save indices
|
|
95
|
+
np.save(output_path.with_suffix(".npy"), indices.cpu().numpy())
|
|
96
|
+
elif input_path.suffix == ".npy":
|
|
97
|
+
logger.info(f"Processing precomputed indices from {input_path}")
|
|
98
|
+
indices = np.load(input_path)
|
|
99
|
+
indices = torch.from_numpy(indices).to(device).long()
|
|
100
|
+
assert indices.ndim == 2, f"Expected 2D indices, got {indices.ndim}"
|
|
101
|
+
else:
|
|
102
|
+
raise ValueError(f"Unknown input type: {input_path}")
|
|
103
|
+
|
|
104
|
+
# Restore
|
|
105
|
+
feature_lengths = torch.tensor([indices.shape[1]], device=device)
|
|
106
|
+
fake_audios = model.decode(indices=indices[None], feature_lengths=feature_lengths)
|
|
107
|
+
audio_time = fake_audios.shape[-1] / model.spec_transform.sample_rate
|
|
108
|
+
|
|
109
|
+
logger.info(
|
|
110
|
+
f"Generated audio of shape {fake_audios.shape}, equivalent to {audio_time:.2f} seconds from {indices.shape[1]} features, features/second: {indices.shape[1] / audio_time:.2f}"
|
|
111
|
+
)
|
|
112
|
+
|
|
113
|
+
# Save audio
|
|
114
|
+
fake_audio = fake_audios[0, 0].float().cpu().numpy()
|
|
115
|
+
sf.write(output_path, fake_audio, model.spec_transform.sample_rate)
|
|
116
|
+
logger.info(f"Saved audio to {output_path}")
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
if __name__ == "__main__":
|
|
120
|
+
main()
|