-
-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added STFT class to move slightly closer to UVR implementation parity
- Loading branch information
Showing
2 changed files
with
65 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
import torch | ||
|
||
|
||
# These functions perform the Short-Time Fourier Transform (stft) and its inverse (istft). | ||
# They are essential for converting the audio between the time domain and the frequency domain, | ||
# which is a crucial aspect of audio processing in neural networks. | ||
class STFT: | ||
def __init__(self, logger, n_fft, hop_length, dim_f, device): | ||
self.logger = logger | ||
self.n_fft = n_fft | ||
self.hop_length = hop_length | ||
self.window = torch.hann_window(window_length=self.n_fft, periodic=True) | ||
self.dim_f = dim_f | ||
self.device = device | ||
|
||
def __call__(self, x): | ||
x_is_mps = not x.device.type in ["cuda", "cpu"] | ||
if x_is_mps: | ||
x = x.cpu() | ||
|
||
initial_shape = x.shape | ||
window = self.window.to(x.device) | ||
batch_dims = x.shape[:-2] | ||
c, t = x.shape[-2:] | ||
x = x.reshape([-1, t]) | ||
x = torch.stft(x, n_fft=self.n_fft, hop_length=self.hop_length, window=window, center=True, return_complex=False) | ||
x = x.permute([0, 3, 1, 2]) | ||
x = x.reshape([*batch_dims, c, 2, -1, x.shape[-1]]).reshape([*batch_dims, c * 2, -1, x.shape[-1]]) | ||
|
||
if x_is_mps: | ||
x = x.to(self.device) | ||
|
||
self.logger.debug(f"STFT applied. Initial shape: {initial_shape} Resulting shape: {x.shape}") | ||
return x[..., : self.dim_f, :] | ||
|
||
def inverse(self, x): | ||
x_is_mps = not x.device.type in ["cuda", "cpu"] | ||
if x_is_mps: | ||
x = x.cpu() | ||
|
||
initial_shape = x.shape | ||
window = self.window.to(x.device) | ||
batch_dims = x.shape[:-3] | ||
c, f, t = x.shape[-3:] | ||
n = self.n_fft // 2 + 1 | ||
f_pad = torch.zeros([*batch_dims, c, n - f, t]).to(x.device) | ||
x = torch.cat([x, f_pad], -2) | ||
x = x.reshape([*batch_dims, c // 2, 2, n, t]).reshape([-1, 2, n, t]) | ||
x = x.permute([0, 2, 3, 1]) | ||
x = x[..., 0] + x[..., 1] * 1.0j | ||
x = torch.istft(x, n_fft=self.n_fft, hop_length=self.hop_length, window=window, center=True) | ||
x = x.reshape([*batch_dims, 2, -1]) | ||
|
||
if x_is_mps: | ||
x = x.to(self.device) | ||
|
||
self.logger.debug(f"Inverse STFT applied. Initial shape: {initial_shape} Resulting shape: {x.shape}") | ||
return x |