File size: 16,094 Bytes
7934b29 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 | # Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import os
from typing import List, Type, Union
import librosa
import matplotlib.pyplot as plt
import numpy as np
import pytest
import scipy
import torch
from nemo.collections.asr.parts.utils.audio_utils import SOUND_VELOCITY as sound_velocity
from nemo.collections.asr.parts.utils.audio_utils import (
calculate_sdr_numpy,
convmtx_mc_numpy,
db2mag,
estimated_coherence,
generate_approximate_noise_field,
get_segment_start,
mag2db,
pow2db,
rms,
select_channels,
theoretical_coherence,
toeplitz,
)
class TestSelectChannels:
num_samples = 1000
max_diff_tol = 1e-9
@pytest.mark.unit
@pytest.mark.parametrize("channel_selector", [None, 'average', 0, 1, [0, 1]])
def test_single_channel_input(self, channel_selector: Type[Union[str, int, List[int]]]):
"""Cover the case with single-channel input signal.
Channel selector should not do anything in this case.
"""
golden_out = signal_in = np.random.rand(self.num_samples)
if channel_selector not in [None, 0, 'average']:
# Expect a failure if looking for a different channel when input is 1D
with pytest.raises(ValueError):
# UUT
signal_out = select_channels(signal_in, channel_selector)
else:
# UUT
signal_out = select_channels(signal_in, channel_selector)
# Check difference
max_diff = np.max(np.abs(signal_out - golden_out))
assert max_diff < self.max_diff_tol
@pytest.mark.unit
@pytest.mark.parametrize("num_channels", [2, 4])
@pytest.mark.parametrize("channel_selector", [None, 'average', 0, [1], [0, 1]])
def test_multi_channel_input(self, num_channels: int, channel_selector: Type[Union[str, int, List[int]]]):
"""Cover the case with multi-channel input signal and single-
or multi-channel output.
"""
num_samples = 1000
signal_in = np.random.rand(self.num_samples, num_channels)
# calculate golden output
if channel_selector is None:
golden_out = signal_in
elif channel_selector == 'average':
golden_out = np.mean(signal_in, axis=1)
else:
golden_out = signal_in[:, channel_selector].squeeze()
# UUT
signal_out = select_channels(signal_in, channel_selector)
# Check difference
max_diff = np.max(np.abs(signal_out - golden_out))
assert max_diff < self.max_diff_tol
@pytest.mark.unit
@pytest.mark.parametrize("num_channels", [1, 2])
@pytest.mark.parametrize("channel_selector", [2, [1, 2]])
def test_select_more_channels_than_available(
self, num_channels: int, channel_selector: Type[Union[str, int, List[int]]]
):
"""This test is expecting the UUT to fail because we ask for more channels
than available in the input signal.
"""
num_samples = 1000
signal_in = np.random.rand(self.num_samples, num_channels)
# expect failure since we ask for more channels than available
with pytest.raises(ValueError):
# UUT
signal_out = select_channels(signal_in, channel_selector)
class TestGenerateApproximateNoiseField:
@pytest.mark.unit
@pytest.mark.parametrize('num_mics', [5])
@pytest.mark.parametrize('mic_spacing', [0.05])
@pytest.mark.parametrize('fft_length', [512, 2048])
@pytest.mark.parametrize('sample_rate', [8000, 16000])
@pytest.mark.parametrize('field', ['spherical'])
def test_theoretical_coherence_matrix(
self, num_mics: int, mic_spacing: float, fft_length: int, sample_rate: float, field: str
):
"""Test calculation of a theoretical coherence matrix.
"""
# test setup
max_diff_tol = 1e-9
# golden reference: spherical coherence
num_subbands = fft_length // 2 + 1
angular_freq = 2 * np.pi * sample_rate * np.arange(0, num_subbands) / fft_length
golden_coherence = np.zeros((num_subbands, num_mics, num_mics))
for p in range(num_mics):
for q in range(num_mics):
if p == q:
golden_coherence[:, p, q] = 1.0
else:
if field == 'spherical':
dist_pq = abs(p - q) * mic_spacing
sinc_arg = angular_freq * dist_pq / sound_velocity
golden_coherence[:, p, q] = np.sinc(sinc_arg / np.pi)
else:
raise NotImplementedError(f'Field {field} not supported.')
# assume linear arrray
mic_positions = np.zeros((num_mics, 3))
mic_positions[:, 0] = mic_spacing * np.arange(num_mics)
# UUT
uut_coherence = theoretical_coherence(
mic_positions, sample_rate=sample_rate, fft_length=fft_length, field='spherical'
)
# Check difference
max_diff = np.max(np.abs(uut_coherence - golden_coherence))
assert max_diff < max_diff_tol
@pytest.mark.unit
@pytest.mark.parametrize('num_mics', [5])
@pytest.mark.parametrize('mic_spacing', [0.10])
@pytest.mark.parametrize('fft_length', [256, 512])
@pytest.mark.parametrize('sample_rate', [8000, 16000])
@pytest.mark.parametrize('field', ['spherical'])
def test_generate_approximate_noise_field(
self,
num_mics: int,
mic_spacing: float,
fft_length: int,
sample_rate: float,
field: str,
save_figures: bool = False,
):
"""Test approximate noise field with white noise as the input noise.
"""
duration_in_sec = 20
relative_mse_tol_dB = -30
relative_mse_tol = 10 ** (relative_mse_tol_dB / 10)
num_samples = sample_rate * duration_in_sec
noise_signal = np.random.rand(num_samples, num_mics)
# random channel-wise power scaling
noise_signal *= np.random.randn(num_mics)
# assume linear arrray
mic_positions = np.zeros((num_mics, 3))
mic_positions[:, 0] = mic_spacing * np.arange(num_mics)
# UUT
noise_field = generate_approximate_noise_field(mic_positions, noise_signal, sample_rate, fft_length=fft_length)
# Compare the estimated coherence with the theoretical coherence
analysis_fft_length = 256
# reference
golden_coherence = theoretical_coherence(
mic_positions, sample_rate=sample_rate, fft_length=analysis_fft_length
)
# estimated
N = librosa.stft(noise_field.transpose(), n_fft=analysis_fft_length)
# (channel, subband, frame) -> (subband, frame, channel)
N = N.transpose(1, 2, 0)
uut_coherence = estimated_coherence(N)
# Check difference
relative_mse_real = np.mean((uut_coherence.real - golden_coherence) ** 2)
assert relative_mse_real < relative_mse_tol
relative_mse_imag = np.mean((uut_coherence.imag) ** 2)
assert relative_mse_imag < relative_mse_tol
if save_figures:
# For debugging and visualization template
figure_dir = os.path.expanduser('~/_coherence')
if not os.path.exists(figure_dir):
os.mkdir(figure_dir)
freq = librosa.fft_frequencies(sr=sample_rate, n_fft=analysis_fft_length)
freq = freq / 1e3 # kHz
plt.figure(figsize=(7, 10))
for n in range(1, num_mics):
plt.subplot(num_mics - 1, 2, 2 * n - 1)
plt.plot(freq, golden_coherence[:, 0, n].real, label='golden')
plt.plot(freq, uut_coherence[:, 0, n].real, label='estimated')
plt.title(f'Real(coherence), p=0, q={n}')
plt.xlabel('f / kHz')
plt.grid()
plt.legend(loc='upper right')
plt.subplot(num_mics - 1, 2, 2 * n)
plt.plot(golden_coherence[:, 0, n].imag, label='golden')
plt.plot(uut_coherence[:, 0, n].imag, label='estimated')
plt.title(f'Imag(coherence), p=0, q={n}')
plt.xlabel('f / kHz')
plt.grid()
plt.legend(loc='upper right')
plt.tight_layout()
plt.savefig(
os.path.join(
figure_dir, f'num_mics_{num_mics}_sample_rate_{sample_rate}_fft_length_{fft_length}_{field}.png'
)
)
plt.close()
class TestAudioUtilsElements:
@pytest.mark.unit
def test_rms(self):
"""Test RMS calculation
"""
# setup
A = np.random.rand()
omega = 100
n_points = 1000
rms_threshold = 1e-4
# prep data
t = np.linspace(0, 2 * np.pi, n_points)
x = A * np.cos(2 * np.pi * omega * t)
# test
x_rms = rms(x)
golden_rms = A / np.sqrt(2)
assert (
np.abs(x_rms - golden_rms) < rms_threshold
), f'RMS not matching for A={A}, omega={omega}, n_point={n_points}'
@pytest.mark.unit
def test_db_conversion(self):
"""Test conversions to and from dB.
"""
num_examples = 10
abs_threshold = 1e-6
mag = np.random.rand(num_examples)
mag_db = mag2db(mag)
assert all(np.abs(mag - 10 ** (mag_db / 20)) < abs_threshold)
assert all(np.abs(db2mag(mag_db) - 10 ** (mag_db / 20)) < abs_threshold)
assert all(np.abs(pow2db(mag ** 2) - mag_db) < abs_threshold)
@pytest.mark.unit
def test_get_segment_start(self):
random_seed = 42
num_examples = 50
num_samples = 2000
_rng = np.random.default_rng(seed=random_seed)
for n in range(num_examples):
# Generate signal
signal = _rng.normal(size=num_samples)
# Random start in the first half
start = _rng.integers(low=0, high=num_samples // 2)
# Random length
end = _rng.integers(low=start, high=num_samples)
# Selected segment
segment = signal[start:end]
# UUT
estimated_start = get_segment_start(signal=signal, segment=segment)
assert (
estimated_start == start
), f'Example {n}: estimated start ({estimated_start}) not matching the actual start ({start})'
@pytest.mark.unit
def test_calculate_sdr_numpy(self):
atol = 1e-6
random_seed = 42
num_examples = 50
num_samples = 2000
_rng = np.random.default_rng(seed=random_seed)
for n in range(num_examples):
# Generate signal
target = _rng.normal(size=num_samples)
# Adjust the estimate
golden_sdr = _rng.integers(low=-10, high=10)
estimate = target * (1 + 10 ** (-golden_sdr / 20))
# UUT
estimated_sdr = calculate_sdr_numpy(estimate=estimate, target=target, remove_mean=False)
assert np.isclose(
estimated_sdr, golden_sdr, atol=atol
), f'Example {n}: estimated ({estimated_sdr}) not matching the actual value ({golden_sdr})'
# Add random mean and use remove_mean=True
# SDR should not change
target += _rng.uniform(low=-10, high=10)
estimate += _rng.uniform(low=-10, high=10)
# UUT
estimated_sdr = calculate_sdr_numpy(estimate=estimate, target=target, remove_mean=True)
assert np.isclose(
estimated_sdr, golden_sdr, atol=atol
), f'Example {n}: estimated ({estimated_sdr}) not matching the actual value ({golden_sdr})'
@pytest.mark.unit
def test_calculate_sdr_numpy_scale_invariant(self):
atol = 1e-6
random_seed = 42
num_examples = 50
num_samples = 2000
_rng = np.random.default_rng(seed=random_seed)
for n in range(num_examples):
# Generate signal
target = _rng.normal(size=num_samples)
# Adjust the estimate
estimate = target + _rng.uniform(low=0.01, high=1) * _rng.normal(size=target.size)
# scaled target
target_scaled = target / (np.linalg.norm(target) + 1e-16)
target_scaled = np.sum(estimate * target_scaled) * target_scaled
golden_sdr = calculate_sdr_numpy(
estimate=estimate, target=target_scaled, scale_invariant=False, remove_mean=False
)
# UUT
estimated_sdr = calculate_sdr_numpy(
estimate=estimate, target=target, scale_invariant=True, remove_mean=False
)
print(golden_sdr, estimated_sdr)
assert np.isclose(
estimated_sdr, golden_sdr, atol=atol
), f'Example {n}: estimated ({estimated_sdr}) not matching the actual value ({golden_sdr})'
@pytest.mark.unit
@pytest.mark.parametrize('num_channels', [1, 3])
@pytest.mark.parametrize('filter_length', [10])
@pytest.mark.parametrize('delay', [0, 5])
def test_convmtx_mc(self, num_channels: int, filter_length: int, delay: int):
"""Test convmtx against convolve and sum.
Multiplication of convmtx_mc of input with a vectorized multi-channel filter
should match the sum of convolution of each input channel with the corresponding
filter.
"""
atol = 1e-6
random_seed = 42
num_examples = 10
num_samples = 2000
_rng = np.random.default_rng(seed=random_seed)
for n in range(num_examples):
x = _rng.normal(size=(num_samples, num_channels))
f = _rng.normal(size=(filter_length, num_channels))
CM = convmtx_mc_numpy(x=x, filter_length=filter_length, delay=delay)
# Multiply convmtx_mc with the vectorized filter
uut = CM @ f.transpose().reshape(-1, 1)
uut = uut.squeeze(1)
# Calculate reference as sum of convolutions
golden_ref = 0
for m in range(num_channels):
x_m_delayed = np.hstack([np.zeros(delay), x[:, m]])
golden_ref += np.convolve(x_m_delayed, f[:, m], mode='full')[: len(x)]
assert np.allclose(uut, golden_ref, atol=atol), f'Example {n}: UUT not matching the reference.'
@pytest.mark.unit
@pytest.mark.parametrize('num_channels', [1, 3])
@pytest.mark.parametrize('filter_length', [10])
@pytest.mark.parametrize('num_samples', [10, 100])
def test_toeplitz(self, num_channels: int, filter_length: int, num_samples: int):
"""Test construction of a Toeplitz matrix for a given signal.
"""
atol = 1e-6
random_seed = 42
num_batches = 10
batch_size = 8
_rng = np.random.default_rng(seed=random_seed)
for n in range(num_batches):
x = _rng.normal(size=(batch_size, num_channels, num_samples))
# Construct Toeplitz matrix
Tx = toeplitz(x=torch.tensor(x))
# Compare against the reference
for b in range(batch_size):
for m in range(num_channels):
T_ref = scipy.linalg.toeplitz(x[b, m, ...])
assert np.allclose(
Tx[b, m, ...].cpu().numpy(), T_ref, atol=atol
), f'Example {n}: not matching the reference for (b={b}, m={m}), .'
|