We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15db19a commit 0a90c4fCopy full SHA for 0a90c4f
torchaudio/models/_wavernn.py
@@ -45,6 +45,7 @@ def forward(self, specgram: Tensor) -> Tensor:
45
46
class _MelResNet(nn.Module):
47
r"""MelResNet layer uses a stack of ResBlocks on spectrogram.
48
+
49
Args:
50
n_res_block: the number of ResBlock in stack (default=10)
51
n_freq: the number of bins in a spectrogram (default=128)
@@ -78,7 +79,6 @@ def __init__(self,
78
79
80
def forward(self, specgram: Tensor) -> Tensor:
81
r"""Pass the input through the _MelResNet layer.
-
82
83
specgram (Tensor): the input sequence to the _MelResNet layer (n_batch, n_freq, n_time).
84
0 commit comments