Skip to content

Commit

Permalink
[src] Beamforming: fix doc references
Browse files Browse the repository at this point in the history
  • Loading branch information
mpariente committed Apr 27, 2021
1 parent e4618bc commit e7cb31e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 2 additions & 0 deletions asteroid/dsp/beamforming.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ def forward(self, x: torch.Tensor, mask: torch.Tensor = None, normalize: bool =


class Beamformer(nn.Module):
"""Base class for beamforming modules."""

@staticmethod
def apply_beamforming_vector(bf_vector: torch.Tensor, mix: torch.Tensor):
"""Apply the beamforming vector to the mixture. Output (batch, freqs, frames).
Expand Down
8 changes: 5 additions & 3 deletions docs/source/package_reference/dsp.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,14 @@ DSP Modules

:hidden:`Beamforming`
~~~~~~~~~~~~~~~~~~~~~~~~
.. autoclass:: asteroid.dsp.beamforming.MvdrBeamformer
.. autoclass:: asteroid.dsp.beamforming.SdwMwfBeamformer

.. autoclass:: asteroid.dsp.beamforming.Beamformer
.. autoclass:: asteroid.dsp.beamforming.SDWMWFBeamformer
.. autoclass:: asteroid.dsp.beamforming.GEVBeamformer
.. autoclass:: asteroid.dsp.beamforming.RTFMVDRBeamformer
.. autoclass:: asteroid.dsp.beamforming.SoudenMVDRBeamformer
.. autoclass:: asteroid.dsp.beamforming.SCM


:hidden:`LambdaOverlapAdd`
~~~~~~~~~~~~~~~~~~~~~~~~~~
.. autoclass:: asteroid.dsp.LambdaOverlapAdd
Expand Down

0 comments on commit e7cb31e

Please sign in to comment.