Spaces:
Runtime error
Runtime error
File size: 12,959 Bytes
f80c5ec |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 |
from logging import getLogger
import numpy as np
import torch
import torch.nn.functional as F
import librosa
from accelerate import Accelerator
from datasets import Dataset
from .f0 import F0Extractor, RMVPE, load_rmvpe
from .hubert import HubertFeatureExtractor, HubertModel, load_hubert
from .synthesizer import SynthesizerTrnMs768NSFsid
from .constants import *
logger = getLogger(__name__)
class RVC:
"""
RVC (Retrieval-based Voice Conversion) class for converting speech using a pre-trained model.
Args:
name (str | SynthesizerTrnMs768NSFsid): The name of the pre-trained model or the model instance itself.
sr (int, optional): The sample rate of the input audio. Defaults to SR_48K.
segment_size (float, optional): The segment size for splitting the input audio. Defaults to 30.0 seconds.
hubert (str | HubertModel | None, optional): The name of the pre-trained Hubert model or the model instance itself. Defaults to None.
rmvpe (str | RMVPE | None, optional): The name of the pre-trained RMVPE model or the model instance itself. Defaults to None.
accelerator (Accelerator, optional): The accelerator device for model inference. Defaults to Accelerator().
from_pretrained_kwargs (dict, optional): Additional keyword arguments for loading the pre-trained model. Defaults to {}.
Methods:
from_pretrained(name, sr=SR_48K, hubert=None, rmvpe=None, accelerator=Accelerator(), **from_pretrained_kwargs):
Creates an instance of RVC using the from_pretrained method.
convert(audio, protect=0.33):
Converts the input audio to the target voice using the pre-trained model.
convert_dataset(dataset, protect=0.33):
Converts a dataset of audio samples to the target voice using the pre-trained model.
convert_file(audio, protect=0.33):
Converts a single audio file to the target voice using the pre-trained model.
convert_from_wav16k(wav16k, protect=0.33):
Converts a 16kHz waveform to the target voice using the pre-trained model.
convert_from_features(phone, pitchf, pitch, protect=0.33):
Converts audio features (phone, pitchf, pitch) to the target voice using the pre-trained model.
"""
def __init__(
self,
name: str | SynthesizerTrnMs768NSFsid,
sr=SR_48K,
segment_size=30.0,
hubert: str | HubertModel | None = None,
rmvpe: str | RMVPE | None = None,
accelerator: Accelerator = Accelerator(),
from_pretrained_kwargs={},
):
"""
Initializes an instance of the RVC class.
Args:
name (str | SynthesizerTrnMs768NSFsid): The name of the pre-trained model or the model instance itself.
sr (int, optional): The sample rate of the input audio. Defaults to SR_48K.
hubert (str | HubertModel | None, optional): The name of the pre-trained Hubert model or the model instance itself. Defaults to None.
rmvpe (str | RMVPE | None, optional): The name of the pre-trained RMVPE model or the model instance itself. Defaults to None.
accelerator (Accelerator, optional): The accelerator device for model inference. Defaults to Accelerator().
from_pretrained_kwargs (dict, optional): Additional keyword arguments for loading the pre-trained model. Defaults to {}.
"""
self.model = (
SynthesizerTrnMs768NSFsid.from_pretrained(name, **from_pretrained_kwargs)
if isinstance(name, str)
else name
)
self.model = self.model.to(accelerator.device)
self.sr = sr
self.segment_size = segment_size
self.hubert = HubertFeatureExtractor(load_hubert(hubert, accelerator.device))
self.rmvpe = F0Extractor(load_rmvpe(rmvpe, accelerator.device))
self.accelerator = accelerator
@staticmethod
def from_pretrained(
name: str,
sr=SR_48K,
segment_size=30.0,
hubert: str | HubertModel | None = None,
rmvpe: str | RMVPE | None = None,
accelerator: Accelerator = Accelerator(),
**from_pretrained_kwargs,
):
"""
Creates an instance of RVC using the from_pretrained method.
Args:
name (str): The name of the pre-trained model.
sr (int, optional): The sample rate of the input audio. Defaults to SR_48K.
segment_size (float, optional): The segment size for splitting the input audio. Defaults to 30.0 seconds.
hubert (str | HubertModel | None, optional): The name of the pre-trained Hubert model or the model instance itself. Defaults to None.
rmvpe (str | RMVPE | None, optional): The name of the pre-trained RMVPE model or the model instance itself. Defaults to None.
accelerator (Accelerator, optional): The accelerator device for model inference. Defaults to Accelerator().
from_pretrained_kwargs (dict): Additional keyword arguments for loading the pre-trained model.
Returns:
RVC: An instance of the RVC class.
"""
return RVC(
name, sr, segment_size, hubert, rmvpe, accelerator, from_pretrained_kwargs
)
def convert(
self, audio: str | Dataset | np.ndarray, protect=0.33, pitch_modification=0.0
):
"""
Converts the input audio to the target voice using the pre-trained model.
Args:
audio (str | Dataset | np.ndarray): The input audio to be converted. It can be a file path, a dataset of audio samples, or a numpy array.
protect (float, optional): The protection factor for preserving the original voice. Defaults to 0.33.
pitch_modification (float, optional): The pitch modification factor. Defaults to 0.0.
Returns:
np.ndarray: The converted audio in the target voice.
If the input is a dataset, it yields the converted audio samples one by one.
"""
logger.info(
f"audio: {audio}, protect: {protect}, pitch_modification: {pitch_modification}"
)
if isinstance(audio, str):
return self.convert_file(audio, protect, pitch_modification)
if isinstance(audio, Dataset):
return self.convert_dataset(audio, protect, pitch_modification)
return self.convert_from_wav16k(audio, protect, pitch_modification)
def convert_dataset(self, dataset: Dataset, protect=0.33, pitch_modification=0.0):
"""
Converts a dataset of audio samples to the target voice using the pre-trained model.
Args:
dataset (Dataset): The dataset of audio samples to be converted.
protect (float, optional): The protection factor for preserving the original voice. Defaults to 0.33.
pitch_modification (float, optional): The pitch modification factor. Defaults to 0.0.
Yields:
np.ndarray: The converted audio samples in the target voice.
"""
for i, data in enumerate(dataset):
logger.info(f"Converting data {i}")
phone = data["hubert_feats"]
pitchf = data["f0nsf"]
pitch = data["f0"]
yield self.convert_from_features(
phone, pitchf, pitch, protect, pitch_modification
)
def convert_file(
self, audio: str, protect=0.33, pitch_modification=0.0
) -> np.ndarray:
"""
Converts a single audio file to the target voice using the pre-trained model.
Args:
audio (str): The path to the audio file to be converted.
protect (float, optional): The protection factor for preserving the original voice. Defaults to 0.33.
pitch_modification (float, optional): The pitch modification factor. Defaults to 0.0.
Returns:
np.ndarray: The converted audio in the target voice.
"""
wav16k, _ = librosa.load(audio, sr=SR_16K)
logger.info(f"Loaded {audio} with shape {wav16k.shape}")
return self.convert_from_wav16k(wav16k, protect, pitch_modification)
def convert_from_wav16k(
self, wav16k: np.ndarray, protect=0.33, pitch_modification=0.0
) -> np.ndarray:
"""
Converts a 16kHz waveform to the target voice using the pre-trained model.
Args:
wav16k (np.ndarray): The 16kHz waveform to be converted.
protect (float, optional): The protection factor for preserving the original voice. Defaults to 0.33.
pitch_modification (float, optional): The pitch modification factor. Defaults to 0.0.
Returns:
np.ndarray: The converted audio in the target voice.
"""
ret = []
segment_size = int(self.segment_size * SR_16K)
for i in range(0, len(wav16k), segment_size):
segment = wav16k[i : i + segment_size]
segment = np.pad(segment, (SR_16K, SR_16K), mode="reflect")
logger.info(f"Padded audio with shape {segment.shape}")
pitchf, pitch = self.rmvpe.extract_f0_from(segment)
phone = self.hubert.extract_feature_from(segment)
ret.append(
self.convert_from_features(
phone, pitchf, pitch, protect, pitch_modification
)[self.sr : -self.sr]
)
return np.concatenate(ret)
def convert_from_features(
self,
phone: np.ndarray,
pitchf: np.ndarray,
pitch: np.ndarray,
protect=0.33,
pitch_modification=0.0,
) -> np.ndarray:
"""
Converts audio features (phone, pitchf, pitch) to the target voice using the pre-trained model.
Args:
phone (np.ndarray): The phone features of the audio.
pitchf (np.ndarray): The pitch features of the audio.
pitch (np.ndarray): The pitch values of the audio.
protect (float, optional): The protection factor for preserving the original voice. Defaults to 0.33.
pitch_modification (float, optional): The pitch modification factor. Defaults to 0.0.
Returns:
np.ndarray: The converted audio in the target voice.
"""
use_protect = protect < 0.5
if pitch_modification != 0.0:
pitchf *= pow(2, pitch_modification / 12)
pitch = self.rmvpe.calculate_f0_from_f0nsf(pitchf)
pitchf = np.expand_dims(pitchf, axis=0)
pitch = np.expand_dims(pitch, axis=0)
phone = np.expand_dims(phone, axis=0)
self.model.eval()
with torch.no_grad(), self.accelerator.device:
pitchf = torch.from_numpy(pitchf).to(
dtype=torch.float32, device=self.accelerator.device
)
pitch = torch.from_numpy(pitch).to(
dtype=torch.long, device=self.accelerator.device
)
phone = torch.from_numpy(phone).to(
dtype=torch.float32, device=self.accelerator.device
)
if use_protect:
feats0 = phone.clone()
feats: torch.Tensor = F.interpolate(
phone.permute(0, 2, 1), scale_factor=2
).permute(0, 2, 1)
if use_protect:
feats0: torch.Tensor = F.interpolate(
feats0.permute(0, 2, 1), scale_factor=2
).permute(0, 2, 1)
# It's originally like this, but I think it's ok to assume that feats.shape[1] <= phone_len
# maybe we should use the same crop function from preprocessor
# phone_len = wav16k.shape[0] // 160
# if feats.shape[1] < phone_len:
# ...
phone_len = feats.shape[1]
pitch = pitch[:, :phone_len]
pitchf = pitchf[:, :phone_len]
if use_protect:
pitchff = pitchf.clone()
pitchff[pitchf > 0] = 1
pitchff[pitchf < 1] = protect
pitchff = pitchff.unsqueeze(-1)
feats = feats * pitchff + feats0 * (1 - pitchff)
feats = feats.to(feats0.dtype)
phone_len = torch.tensor([phone_len], dtype=torch.long)
sid = torch.tensor([0], dtype=torch.long)
logger.info(f"Feats shape: {feats.shape}")
logger.info(f"Phone len: {phone_len}")
logger.info(f"Pitch shape: {pitch.shape}")
logger.info(f"Pitchf shape: {pitchf.shape}")
logger.info(f"SID shape: {sid}")
audio_segment = (
self.model.infer(feats, phone_len, pitch, pitchf, sid)[0][0, 0]
.data.cpu()
.float()
.numpy()
)
logger.info(
f"Generated audio shape: {audio_segment.shape} {audio_segment.dtype}"
)
return audio_segment
|