You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

test_lowpass_biquad.py 5.8 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. # Copyright 2021 Huawei Technologies Co., Ltd
  2. #
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License at
  6. #
  7. # http://www.apache.org/licenses/LICENSE-2.0
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License.
  14. # ==============================================================================
  15. """
  16. Testing LowpassBiquad op in DE
  17. """
  18. import numpy as np
  19. import pytest
  20. import mindspore.dataset as ds
  21. import mindspore.dataset.audio.transforms as audio
  22. from mindspore import log as logger
  23. def count_unequal_element(data_expected, data_me, rtol, atol):
  24. assert data_expected.shape == data_me.shape
  25. total_count = len(data_expected.flatten())
  26. error = np.abs(data_expected - data_me)
  27. greater = np.greater(error, atol + np.abs(data_expected) * rtol)
  28. loss_count = np.count_nonzero(greater)
  29. assert (loss_count / total_count) < rtol, "\ndata_expected_std:{0}\ndata_me_error:{1}\nloss:{2}".format(
  30. data_expected[greater], data_me[greater], error[greater])
  31. def test_lowpass_biquad_eager():
  32. """ mindspore eager mode normal testcase:lowpass_biquad op"""
  33. # Original waveform
  34. waveform = np.array([[0.8236, 0.2049, 0.3335], [0.5933, 0.9911, 0.2482],
  35. [0.3007, 0.9054, 0.7598], [0.5394, 0.2842, 0.5634], [0.6363, 0.2226, 0.2288]])
  36. # Expect waveform
  37. expect_waveform = np.array([[0.2745, 0.6174, 0.4308], [0.1978, 0.7259, 0.8753],
  38. [0.1002, 0.5023, 0.9237], [0.1798, 0.4543, 0.4971], [0.2121, 0.4984, 0.3661]])
  39. lowpass_biquad_op = audio.LowpassBiquad(4000, 1000.0, 1)
  40. # Filtered waveform by lowpass_biquad
  41. output = lowpass_biquad_op(waveform)
  42. count_unequal_element(expect_waveform, output, 0.0001, 0.0001)
  43. def test_lowpass_biquad_pipeline():
  44. """ mindspore pipeline mode normal testcase:lowpass_biquad op"""
  45. # Original waveform
  46. waveform = np.array([[3.5, 3.2, 2.5, 7.1], [5.5, 0.3, 4.9, 5.0],
  47. [1.3, 7.4, 7.1, 3.8], [3.4, 3.3, 3.7, 1.1]])
  48. # Expect waveform
  49. expect_waveform = np.array([[0.0481, 0.2029, 0.4180, 0.6830], [0.0755, 0.2538, 0.4555, 0.7107],
  50. [0.0178, 0.1606, 0.5220, 0.9729], [0.0467, 0.1997, 0.4322, 0.6546]])
  51. dataset = ds.NumpySlicesDataset(waveform, ["col1"], shuffle=False)
  52. lowpass_biquad_op = audio.LowpassBiquad(44100, 2000.0, 0.3)
  53. # Filtered waveform by lowpass_biquad
  54. dataset = dataset.map(
  55. input_columns=["col1"], operations=lowpass_biquad_op, num_parallel_workers=4)
  56. i = 0
  57. for _ in dataset.create_dict_iterator(num_epochs=1, output_numpy=True):
  58. count_unequal_element(expect_waveform[i, :],
  59. _["col1"], 0.0001, 0.0001)
  60. i += 1
  61. def test_lowpass_biquad_invalid_input():
  62. """
  63. Test invalid input of LowpassBiquad
  64. """
  65. def test_invalid_input(test_name, sample_rate, cutoff_freq, Q, error, error_msg):
  66. logger.info("Test LowpassBiquad with bad input: {0}".format(test_name))
  67. with pytest.raises(error) as error_info:
  68. audio.LowpassBiquad(sample_rate, cutoff_freq, Q)
  69. assert error_msg in str(error_info.value)
  70. test_invalid_input("invalid sample_rate parameter type as a float", 44100.5, 1000, 0.707, TypeError,
  71. "Argument sample_rate with value 44100.5 is not of type [<class 'int'>],"
  72. " but got <class 'float'>.")
  73. test_invalid_input("invalid sample_rate parameter type as a String", "44100", 1000, 0.707, TypeError,
  74. "Argument sample_rate with value 44100 is not of type [<class 'int'>],"
  75. " but got <class 'str'>.")
  76. test_invalid_input("invalid cutoff_freq parameter type as a String", 44100, "1000", 0.707, TypeError,
  77. "Argument cutoff_freq with value 1000 is not of type [<class 'float'>, <class 'int'>],"
  78. " but got <class 'str'>.")
  79. test_invalid_input("invalid Q parameter type as a String", 44100, 1000, "0.707", TypeError,
  80. "Argument Q with value 0.707 is not of type [<class 'float'>, <class 'int'>],"
  81. " but got <class 'str'>.")
  82. test_invalid_input("invalid sample_rate parameter value", 441324343243242342345300, 1000, 0.707, ValueError,
  83. "Input sample_rate is not within the required interval of [-2147483648, 0) and (0, 2147483647].")
  84. test_invalid_input("invalid cutoff_freq parameter value", 44100, 32434324324234321, 0.707, ValueError,
  85. "Input cutoff_freq is not within the required interval of [-16777216, 16777216].")
  86. test_invalid_input("invalid sample_rate parameter value", None, 1000, 0.707, TypeError,
  87. "Argument sample_rate with value None is not of type [<class 'int'>], "
  88. "but got <class 'NoneType'>.")
  89. test_invalid_input("invalid cutoff_rate parameter value", 44100, None, 0.707, TypeError,
  90. "Argument cutoff_freq with value None is not of type [<class 'float'>, <class 'int'>],"
  91. " but got <class 'NoneType'>.")
  92. test_invalid_input("invalid Q parameter value", 44100, 1000, 0, ValueError,
  93. "Input Q is not within the required interval of (0, 1].")
  94. if __name__ == "__main__":
  95. test_lowpass_biquad_eager()
  96. test_lowpass_biquad_pipeline()
  97. test_lowpass_biquad_invalid_input()