Skip to content

Commit 7828c49

Browse files
Note references to torchaudio.info (#4087)
1 parent 04487eb commit 7828c49

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

examples/dnn_beamformer/README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22

33
This directory contains sample implementations of training and evaluation pipelines for an DNN Beamforming model.
44

5-
The `DNNBeamformer` model composes the following componenst:
5+
> [!NOTE]
6+
> The code uses the `torchaudio.info` function which was removed from the library in version 2.9. As such, this code will
7+
> not run as written without modification. It is preserved for reference purposes only.
8+
9+
The `DNNBeamformer` model composes the following components:
610

711
+ [`torchaudio.transforms.Spectrogram`](https://pytorch.org/audio/stable/generated/torchaudio.transforms.Spectrogram.html#spectrogram) that applies Short-time Fourier Transform (STFT) to the waveform.
812
+ ConvTasNet without encoder/decoder that predicts T-F masks for speech and noise, respectively.

examples/hubert/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
This directory contains sample implementations of pre-training pipeline for [HuBERT: Self-Supervised Speech Representation Learning by Masked Prediction of Hidden Units](https://arxiv.org/abs/2106.07447).
44

5+
> [!NOTE]
6+
> The code uses the `torchaudio.info` function which was removed from the library in version 2.9. As such, this code will
7+
> not run as written without modification. It is preserved for reference purposes only.
8+
59
## Pre-training Usage
610

711
The Base architecture of HuBERT model requires two iterations of pre-training.

0 commit comments

Comments
 (0)