Shortcuts

DSP Modules

LambdaOverlapAdd

class asteroid.dsp.LambdaOverlapAdd(nnet, n_src, window_size, hop_size=None, window='hanning', reorder_chunks=True, enable_grad=False)[source]

Bases: sphinx.ext.autodoc.importer._MockObject

Overlap-add with lambda transform on segments (not scriptable).

Segment input signal, apply lambda function (a neural network for example) and combine with OLA.

LambdaOverlapAdd can be used with asteroid.separate and the asteroid-infer CLI.

Parameters:
  • nnet (callable) – Function to apply to each segment.
  • n_src (Optional[int]) – Number of sources in the output of nnet. If None, the number of sources is determined by the network’s output, but some correctness checks cannot be performed.
  • window_size (int) – Size of segmenting window.
  • hop_size (int) – Segmentation hop size.
  • window (str) – Name of the window (see scipy.signal.get_window) used for the synthesis.
  • reorder_chunks – Whether to reorder each consecutive segment. This might be useful when nnet is permutation invariant, as source assignements might change output channel from one segment to the next (in classic speech separation for example). Reordering is performed based on the correlation between the overlapped part of consecutive segment.
ola_forward(x)[source]

Heart of the class: segment signal, apply func, combine with OLA.

forward(x)[source]

Forward module: segment signal, apply func, combine with OLA.

Parameters:x (torch.Tensor) – waveform signal of shape (batch, 1, time).
Returns:torch.Tensor – The output of the lambda OLA.

DualPath Processing

class asteroid.dsp.DualPathProcessing(chunk_size, hop_size)[source]

Bases: sphinx.ext.autodoc.importer._MockObject

Perform Dual-Path processing via overlap-add as in DPRNN [1].

Parameters:
  • chunk_size (int) – Size of segmenting window.
  • hop_size (int) – segmentation hop size.
References
[1] Yi Luo, Zhuo Chen and Takuya Yoshioka. “Dual-path RNN: efficient long sequence modeling for time-domain single-channel speech separation” https://arxiv.org/abs/1910.06379
unfold(x)[source]

Unfold the feature tensor from $(batch, channels, time)$ to $(batch, channels, chunksize, nchunks)$.

Parameters:x (torch.Tensor) – feature tensor of shape $(batch, channels, time)$.
Returns:torch.Tensor – spliced feature tensor of shape $(batch, channels, chunksize, nchunks)$.
fold(x, output_size=None)[source]

Folds back the spliced feature tensor. Input shape $(batch, channels, chunksize, nchunks)$ to original shape $(batch, channels, time)$ using overlap-add.

Parameters:
  • x (torch.Tensor) – spliced feature tensor of shape $(batch, channels, chunksize, nchunks)$.
  • output_size (int, optional) – sequence length of original feature tensor. If None, the original length cached by the previous call of unfold() will be used.
Returns:

torch.Tensor – feature tensor of shape $(batch, channels, time)$.

Note

fold caches the original length of the input.

static intra_process(x, module)[source]

Performs intra-chunk processing.

Parameters:
  • x (torch.Tensor) – spliced feature tensor of shape (batch, channels, chunk_size, n_chunks).
  • module (torch.nn.Module) – module one wish to apply to each chunk of the spliced feature tensor.
Returns:

torch.Tensor – processed spliced feature tensor of shape $(batch, channels, chunksize, nchunks)$.

Note

the module should have the channel first convention and accept a 3D tensor of shape $(batch, channels, time)$.

static inter_process(x, module)[source]

Performs inter-chunk processing.

Parameters:
  • x (torch.Tensor) – spliced feature tensor of shape $(batch, channels, chunksize, nchunks)$.
  • module (torch.nn.Module) – module one wish to apply between each chunk of the spliced feature tensor.
Returns:

x (torch.Tensor) – processed spliced feature tensor of shape $(batch, channels, chunksize, nchunks)$.

Note

the module should have the channel first convention and accept a 3D tensor of shape $(batch, channels, time)$.

Mixture Consistency

asteroid.dsp.mixture_consistency(mixture: <sphinx.ext.autodoc.importer._MockObject object at 0x7f85d61896d0>, est_sources: <sphinx.ext.autodoc.importer._MockObject object at 0x7f85d6189510>, src_weights: Optional[<sphinx.ext.autodoc.importer._MockObject object at 0x7f85d6189810>] = None, dim: int = 1) → <sphinx.ext.autodoc.importer._MockObject object at 0x7f85d6189b10>[source]

Applies mixture consistency to a tensor of estimated sources.

Parameters:
  • mixture (torch.Tensor) – Mixture waveform or TF representation.
  • est_sources (torch.Tensor) – Estimated sources waveforms or TF representations.
  • src_weights (torch.Tensor) – Consistency weight for each source. Shape needs to be broadcastable to est_source. We make sure that the weights sum up to 1 along dim dim. If src_weights is None, compute them based on relative power.
  • dim (int) – Axis which contains the sources in est_sources.
Returns
torch.Tensor with same shape as est_sources, after applying mixture consistency.
Examples
>>> # Works on waveforms
>>> mix = torch.randn(10, 16000)
>>> est_sources = torch.randn(10, 2, 16000)
>>> new_est_sources = mixture_consistency(mix, est_sources, dim=1)
>>> # Also works on spectrograms
>>> mix = torch.randn(10, 514, 400)
>>> est_sources = torch.randn(10, 2, 514, 400)
>>> new_est_sources = mixture_consistency(mix, est_sources, dim=1)

Note

This method can be used only in ‘complete’ separation tasks, otherwise the residual error will contain unwanted sources. For example, this won’t work with the task “sep_noisy” from WHAM.

References
Scott Wisdom et al. “Differentiable consistency constraints for improved deep speech enhancement”, ICASSP 2019.

VAD

asteroid.dsp.vad.ebased_vad(mag_spec, th_db: int = 40)[source]

Compute energy-based VAD from a magnitude spectrogram (or equivalent).

Parameters:
  • mag_spec (torch.Tensor) – the spectrogram to perform VAD on. Expected shape (batch, *, freq, time). The VAD mask will be computed independently for all the leading dimensions until the last two. Independent of the ordering of the last two dimensions.
  • th_db (int) – The threshold in dB from which a TF-bin is considered silent.
Returns:

torch.BoolTensor, the VAD mask.

Examples
>>> import torch
>>> mag_spec = torch.abs(torch.randn(10, 2, 65, 16))
>>> batch_src_mask = ebased_vad(mag_spec)

Delta Features

asteroid.dsp.deltas.compute_delta(feats: <sphinx.ext.autodoc.importer._MockObject object at 0x7f85b24da310>, dim: int = -1) → <sphinx.ext.autodoc.importer._MockObject object at 0x7f85b24f2210>[source]

Compute delta coefficients of a tensor.

Parameters:
  • feats – Input features to compute deltas with.
  • dim – feature dimension in the feats tensor.
Returns:

Tensor – Tensor of deltas.

Examples
>>> import torch
>>> phase = torch.randn(2, 257, 100)
>>> # Compute instantaneous frequency
>>> inst_freq = compute_delta(phase, dim=-1)
>>> # Or group delay
>>> group_delay = compute_delta(phase, dim=-2)
asteroid.dsp.deltas.concat_deltas(feats: <sphinx.ext.autodoc.importer._MockObject object at 0x7f85b24f2290>, order: int = 1, dim: int = -1) → <sphinx.ext.autodoc.importer._MockObject object at 0x7f85b24f2c90>[source]

Concatenate delta coefficients of a tensor to itself.

Parameters:
  • feats – Input features to compute deltas with.
  • order – Order of the delta e.g with order==2, compute delta of delta as well.
  • dim – feature dimension in the feats tensor.
Returns:

Tensor – Concatenation of the features, the deltas and subsequent deltas.

Examples
>>> import torch
>>> phase = torch.randn(2, 257, 100)
>>> # Compute second order instantaneous frequency
>>> phase_and_inst_freq = concat_deltas(phase, order=2, dim=-1)
>>> # Or group delay
>>> phase_and_group_delay = concat_deltas(phase, order=2, dim=-2)
Read the Docs v: v0.4.4
Versions
latest
stable
v0.4.4
v0.4.3
v0.4.2
v0.4.1
v0.4.0
v0.3.5_b
v0.3.4
v0.3.3
v0.3.2
v0.3.1
Downloads
On Read the Docs
Project Home
Builds

Free document hosting provided by Read the Docs.