Spaces:
Running on Zero
Running on Zero
File size: 16,836 Bytes
de6f21d | 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 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 |
import torch
import torchaudio
import numpy as np
import scipy.signal
class EMAWarmup:
"""Implements an EMA warmup using an inverse decay schedule.
If inv_gamma=1 and power=1, implements a simple average. inv_gamma=1, power=2/3 are
good values for models you plan to train for a million or more steps (reaches decay
factor 0.999 at 31.6K steps, 0.9999 at 1M steps), inv_gamma=1, power=3/4 for models
you plan to train for less (reaches decay factor 0.999 at 10K steps, 0.9999 at
215.4k steps).
Args:
inv_gamma (float): Inverse multiplicative factor of EMA warmup. Default: 1.
power (float): Exponential factor of EMA warmup. Default: 1.
min_value (float): The minimum EMA decay rate. Default: 0.
max_value (float): The maximum EMA decay rate. Default: 1.
start_at (int): The epoch to start averaging at. Default: 0.
last_epoch (int): The index of last epoch. Default: 0.
"""
def __init__(self, inv_gamma=1., power=1., min_value=0., max_value=1., start_at=0,
last_epoch=0):
self.inv_gamma = inv_gamma
self.power = power
self.min_value = min_value
self.max_value = max_value
self.start_at = start_at
self.last_epoch = last_epoch
def state_dict(self):
"""Returns the state of the class as a :class:`dict`."""
return dict(self.__dict__.items())
def load_state_dict(self, state_dict):
"""Loads the class's state.
Args:
state_dict (dict): scaler state. Should be an object returned
from a call to :meth:`state_dict`.
"""
self.__dict__.update(state_dict)
def get_value(self):
"""Gets the current EMA decay rate."""
epoch = max(0, self.last_epoch - self.start_at)
value = 1 - (1 + epoch / self.inv_gamma) ** -self.power
return 0. if epoch < 0 else min(self.max_value, max(self.min_value, value))
def step(self):
"""Updates the step count."""
self.last_epoch += 1
#from https://github.com/csteinmetz1/auraloss/blob/main/auraloss/perceptual.py
class FIRFilter(torch.nn.Module):
"""FIR pre-emphasis filtering module.
Args:
filter_type (str): Shape of the desired FIR filter ("hp", "fd", "aw"). Default: "hp"
coef (float): Coefficient value for the filter tap (only applicable for "hp" and "fd"). Default: 0.85
ntaps (int): Number of FIR filter taps for constructing A-weighting filters. Default: 101
plot (bool): Plot the magnitude respond of the filter. Default: False
Based upon the perceptual loss pre-empahsis filters proposed by
[Wright & Välimäki, 2019](https://arxiv.org/abs/1911.08922).
A-weighting filter - "aw"
First-order highpass - "hp"
Folded differentiator - "fd"
Note that the default coefficeint value of 0.85 is optimized for
a sampling rate of 44.1 kHz, considering adjusting this value at differnt sampling rates.
"""
def __init__(self, filter_type="hp", coef=0.85, fs=44100, ntaps=101, plot=False):
"""Initilize FIR pre-emphasis filtering module."""
super(FIRFilter, self).__init__()
self.filter_type = filter_type
self.coef = coef
self.fs = fs
self.ntaps = ntaps
self.plot = plot
if ntaps % 2 == 0:
raise ValueError(f"ntaps must be odd (ntaps={ntaps}).")
if filter_type == "hp":
self.fir = torch.nn.Conv1d(1, 1, kernel_size=3, bias=False, padding=1)
self.fir.weight.requires_grad = False
self.fir.weight.data = torch.tensor([1, -coef, 0]).view(1, 1, -1)
elif filter_type == "fd":
self.fir = torch.nn.Conv1d(1, 1, kernel_size=3, bias=False, padding=1)
self.fir.weight.requires_grad = False
self.fir.weight.data = torch.tensor([1, 0, -coef]).view(1, 1, -1)
elif filter_type == "aw":
# Definition of analog A-weighting filter according to IEC/CD 1672.
f1 = 20.598997
f2 = 107.65265
f3 = 737.86223
f4 = 12194.217
A1000 = 1.9997
NUMs = [(2 * np.pi * f4) ** 2 * (10 ** (A1000 / 20)), 0, 0, 0, 0]
DENs = np.polymul(
[1, 4 * np.pi * f4, (2 * np.pi * f4) ** 2],
[1, 4 * np.pi * f1, (2 * np.pi * f1) ** 2],
)
DENs = np.polymul(
np.polymul(DENs, [1, 2 * np.pi * f3]), [1, 2 * np.pi * f2]
)
# convert analog filter to digital filter
b, a = scipy.signal.bilinear(NUMs, DENs, fs=fs)
# compute the digital filter frequency response
w_iir, h_iir = scipy.signal.freqz(b, a, worN=512, fs=fs)
# then we fit to 101 tap FIR filter with least squares
taps = scipy.signal.firls(ntaps, w_iir, abs(h_iir), fs=fs)
# now implement this digital FIR filter as a Conv1d layer
self.fir = torch.nn.Conv1d(
1, 1, kernel_size=ntaps, bias=False, padding=ntaps // 2
)
self.fir.weight.requires_grad = False
self.fir.weight.data = torch.tensor(taps.astype("float32")).view(1, 1, -1)
def forward(self, error):
"""Calculate forward propagation.
Args:
input (Tensor): Predicted signal (B, #channels, #samples).
target (Tensor): Groundtruth signal (B, #channels, #samples).
Returns:
Tensor: Filtered signal.
"""
self.fir.weight.data=self.fir.weight.data.to(error.device)
error=error.unsqueeze(1)
error = torch.nn.functional.conv1d(
error, self.fir.weight.data, padding=self.ntaps // 2
)
error=error.squeeze(1)
return error
def resample_batch(audio, fs, fs_target, length_target):
device=audio.device
dtype=audio.dtype
B=audio.shape[0]
#if possible resampe in a batched way
#check if all the fs are the same and equal to 44100
if fs_target==22050:
if (fs==44100).all():
audio=torchaudio.functional.resample(audio, 2,1)
return audio[:, 0:length_target] #trow away the last samples
elif (fs==48000).all():
#approcimate resamppleint
audio=torchaudio.functional.resample(audio, 160*2,147)
return audio[:, 0:length_target]
else:
#if revious is unsuccesful bccause we have examples at 441000 and 48000 in the same batch,, just iterate over the batch
proc_batch=torch.zeros((B,length_target), device=device)
for i, (a, f_s) in enumerate(zip(audio, fs)): #I hope this shit wll not slow down everythingh
if f_s==44100:
#resample by 2
a=torchaudio.functional.resample(a, 2,1)
elif f_s==48000:
a=torchaudio.functional.resample(a, 160*2,147)
else:
print("WARNING, strange fs", f_s)
proc_batch[i]=a[0:length_target]
return proc_batch
elif fs_target==44100:
if (fs==44100).all():
return audio[:, 0:length_target] #trow away the last samples
elif (fs==48000).all():
#approcimate resamppleint
audio=torchaudio.functional.resample(audio, 160,147)
return audio[:, 0:length_target]
else:
#if revious is unsuccesful bccause we have examples at 441000 and 48000 in the same batch,, just iterate over the batch
proc_batch=torch.zeros((B,length_target), device=device)
for i, (a, f_s) in enumerate(zip(audio, fs)): #I hope this shit wll not slow down everythingh
if f_s==44100:
#resample by 2
pass
elif f_s==48000:
a=torchaudio.functional.resample(a, 160,147)
else:
print("WARNING, strange fs", f_s)
proc_batch[i]=a[0:length_target]
return proc_batch
else:
print(" resampling to fs_target", fs_target)
if (fs==44100).all():
audio=torchaudio.functional.resample(audio, 44100, fs_target)
return audio[:, 0:length_target] #trow away the last samples
elif (fs==48000).all():
#approcimate resamppleint
audio=torchaudio.functional.resample(audio, 48000,fs_target)
return audio[:, 0:length_target]
else:
#if revious is unsuccesful bccause we have examples at 441000 and 48000 in the same batch,, just iterate over the batch
proc_batch=torch.zeros((B,length_target), device=device)
for i, (a, f_s) in enumerate(zip(audio, fs)): #I hope this shit wll not slow down everythingh
if f_s==44100:
#resample by 2
a=torchaudio.functional.resample(a, 44100,fs_target)
elif f_s==48000:
a=torchaudio.functional.resample(a, 48000,fs_target)
else:
print("WARNING, strange fs", f_s)
proc_batch[i]=a[0:length_target]
return proc_batch
def load_state_dict( state_dict, network=None, ema=None, optimizer=None, log=True):
'''
utility for loading state dicts for different models. This function sequentially tries different strategies
args:
state_dict: the state dict to load
returns:
True if the state dict was loaded, False otherwise
Assuming the operations are don in_place, this function will not create a copy of the network and optimizer (I hope)
'''
#print(state_dict)
if log: print("Loading state dict")
if log:
print(state_dict.keys())
#if there
try:
if log: print("Attempt 1: trying with strict=True")
if network is not None:
network.load_state_dict(state_dict['network'])
if optimizer is not None:
optimizer.load_state_dict(state_dict['optimizer'])
if ema is not None:
ema.load_state_dict(state_dict['ema'])
return True
except Exception as e:
if log:
print("Could not load state dict")
print(e)
try:
if log: print("Attempt 2: trying with strict=False")
if network is not None:
network.load_state_dict(state_dict['network'], strict=False)
#we cannot load the optimizer in this setting
#self.optimizer.load_state_dict(state_dict['optimizer'], strict=False)
if ema is not None:
ema.load_state_dict(state_dict['ema'], strict=False)
return True
except Exception as e:
if log:
print("Could not load state dict")
print(e)
print("training from scratch")
try:
if log: print("Attempt 3: trying with strict=False,but making sure that the shapes are fine")
if ema is not None:
ema_state_dict = ema.state_dict()
if network is not None:
network_state_dict = network.state_dict()
i=0
if network is not None:
for name, param in state_dict['network'].items():
if log: print("checking",name)
if name in network_state_dict.keys():
if network_state_dict[name].shape==param.shape:
network_state_dict[name]=param
if log:
print("assigning",name)
i+=1
network.load_state_dict(network_state_dict)
if ema is not None:
for name, param in state_dict['ema'].items():
if log: print("checking",name)
if name in ema_state_dict.keys():
if ema_state_dict[name].shape==param.shape:
ema_state_dict[name]=param
if log:
print("assigning",name)
i+=1
ema.load_state_dict(ema_state_dict)
if i==0:
if log: print("WARNING, no parameters were loaded")
raise Exception("No parameters were loaded")
elif i>0:
if log: print("loaded", i, "parameters")
return True
except Exception as e:
print(e)
print("the second strict=False failed")
try:
if log: print("Attempt 4: Assuming the naming is different, with the network and ema called 'state_dict'")
if network is not None:
network.load_state_dict(state_dict['state_dict'])
if ema is not None:
ema.load_state_dict(state_dict['state_dict'])
except Exception as e:
if log:
print("Could not load state dict")
print(e)
print("training from scratch")
print("It failed 3 times!! but not giving up")
#print the names of the parameters in self.network
try:
if log: print("Attempt 5: trying to load with different names, now model='model' and ema='ema_weights'")
if ema is not None:
dic_ema = {}
for (key, tensor) in zip(state_dict['model'].keys(), state_dict['ema_weights']):
dic_ema[key] = tensor
ema.load_state_dict(dic_ema)
return True
except Exception as e:
if log:
print(e)
try:
if log: print("Attempt 6: If there is something wrong with the name of the ema parameters, we can try to load them using the names of the parameters in the model")
if ema is not None:
dic_ema = {}
i=0
for (key, tensor) in zip(state_dict['model'].keys(), state_dict['model'].values()):
if tensor.requires_grad:
dic_ema[key]=state_dict['ema_weights'][i]
i=i+1
else:
dic_ema[key]=tensor
ema.load_state_dict(dic_ema)
return True
except Exception as e:
if log:
print(e)
#try:
#assign the parameters in state_dict to self.network using a for loop
print("Attempt 7: Trying to load the parameters one by one. This is for the dance diffusion model, looking for parameters starting with 'diffusion.' or 'diffusion_ema.'")
if ema is not None:
ema_state_dict = ema.state_dict()
if network is not None:
network_state_dict = ema.state_dict()
i=0
if network is not None:
for name, param in state_dict['state_dict'].items():
print("checking",name)
if name.startswith("diffusion."):
i+=1
name=name.replace("diffusion.","")
if network_state_dict[name].shape==param.shape:
#print(param.shape, network.state_dict()[name].shape)
network_state_dict[name]=param
#print("assigning",name)
network.load_state_dict(network_state_dict, strict=False)
if ema is not None:
for name, param in state_dict['state_dict'].items():
if name.startswith("diffusion_ema."):
i+=1
name=name.replace("diffusion_ema.","")
if ema_state_dict[name].shape==param.shape:
if log:
print(param.shape, ema.state_dict()[name].shape)
ema_state_dict[name]=param
ema.load_state_dict(ema_state_dict, strict=False)
if i==0:
print("WARNING, no parameters were loaded")
raise Exception("No parameters were loaded")
elif i>0:
print("loaded", i, "parameters")
return True
#except Exception as e:
# if log:
# print(e)
return False
|