Skip to content

Commit 58da317

Browse files
committed
Update data augmentation tutorial (#2595)
Summary: In #2285, the SNR calculation was fixed, but there was still one that was not fixed. This commit fixes it. Also following the feedback pytorch/tutorials#1930 (comment), update the variable name. Pull Request resolved: #2595 Reviewed By: carolineechen Differential Revision: D38314672 Pulled By: mthrok fbshipit-source-id: b2015e2709729190d97264aa191651b3af4ba856
1 parent 8edf91a commit 58da317

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

examples/tutorials/audio_data_augmentation_tutorial.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -239,14 +239,14 @@ def plot_specgram(waveform, sample_rate, title="Spectrogram", xlim=None):
239239
noise, _ = torchaudio.load(SAMPLE_NOISE)
240240
noise = noise[:, : speech.shape[1]]
241241

242-
speech_power = speech.norm(p=2)
243-
noise_power = noise.norm(p=2)
242+
speech_rms = speech.norm(p=2)
243+
noise_rms = noise.norm(p=2)
244244

245245
snr_dbs = [20, 10, 3]
246246
noisy_speeches = []
247247
for snr_db in snr_dbs:
248248
snr = 10 ** (snr_db / 20)
249-
scale = snr * noise_power / speech_power
249+
scale = snr * noise_rms / speech_rms
250250
noisy_speeches.append((scale * speech + noise) / 2)
251251

252252
######################################################################
@@ -376,7 +376,7 @@ def plot_specgram(waveform, sample_rate, title="Spectrogram", xlim=None):
376376
noise = noise[:, : rir_applied.shape[1]]
377377

378378
snr_db = 8
379-
scale = math.exp(snr_db / 10) * noise.norm(p=2) / rir_applied.norm(p=2)
379+
scale = (10 ** (snr_db / 20)) * noise.norm(p=2) / rir_applied.norm(p=2)
380380
bg_added = (scale * rir_applied + noise) / 2
381381

382382
plot_specgram(bg_added, sample_rate, title="BG noise added")

0 commit comments

Comments
 (0)