-
Notifications
You must be signed in to change notification settings - Fork 5.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
【Hackathon 7th No.22】NO.22 在 paddle.audio.functional.get_window 中支持 bartlett 、 kaiser 和 nuttall 窗函数 -part #68268
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -257,6 +257,7 @@ def test_gaussian_window_and_exception(self, n_fft: int): | |
np.testing.assert_array_almost_equal( | ||
window_scipy_exp, window_paddle_exp.numpy(), decimal=5 | ||
) | ||
|
||
try: | ||
window_paddle = paddle.audio.functional.get_window("hann", -1) | ||
except ValueError: | ||
|
@@ -290,7 +291,14 @@ def dct(n_filters, n_input): | |
np.testing.assert_array_almost_equal(librosa_dct, paddle_dct, decimal=5) | ||
|
||
@parameterize( | ||
[128, 256, 512], ["hamming", "hann", "triang", "bohman"], [True, False] | ||
[128, 256, 512], | ||
[ | ||
"hamming", | ||
"hann", | ||
"triang", | ||
"bohman", | ||
], | ||
[True, False], | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
我看这里的修改和原来的一样呀。 目前单侧没有过。There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 已经可以了,请review @jeff41404 |
||
) | ||
def test_stft_and_spect( | ||
self, n_fft: int, window_str: str, center_flag: bool | ||
|
@@ -345,7 +353,14 @@ def test_stft_and_spect( | |
) | ||
|
||
@parameterize( | ||
[128, 256, 512], [64, 82], ["hamming", "hann", "triang", "bohman"] | ||
[128, 256, 512], | ||
[64, 82], | ||
[ | ||
"hamming", | ||
"hann", | ||
"triang", | ||
"bohman", | ||
], | ||
) | ||
def test_istft(self, n_fft: int, hop_length: int, window_str: str): | ||
if len(self.waveform.shape) == 2: # (C, T) | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,120 @@ | ||
# Copyright (c) 2024 PaddlePaddle Authors. 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 itertools | ||
import unittest | ||
|
||
from parameterized import parameterized | ||
from scipy import signal | ||
|
||
import paddle | ||
import paddle.audio | ||
from paddle.base import core | ||
|
||
|
||
def parameterize(*params): | ||
return parameterized.expand(list(itertools.product(*params))) | ||
|
||
|
||
class TestAudioFuncitons(unittest.TestCase): | ||
def setUp(self): | ||
paddle.disable_static( | ||
paddle.CUDAPlace(0) | ||
if core.is_compiled_with_cuda() | ||
else paddle.CPUPlace() | ||
) | ||
|
||
@parameterize( | ||
[ | ||
"hamming", | ||
"hann", | ||
"triang", | ||
"bohman", | ||
"blackman", | ||
"cosine", | ||
"tukey", | ||
"taylor", | ||
"bartlett", | ||
"nuttall", | ||
], | ||
[1, 512], | ||
) | ||
def test_window(self, window_type: str, n_fft: int): | ||
window_scipy = signal.get_window(window_type, n_fft) | ||
window_paddle = paddle.audio.functional.get_window(window_type, n_fft) | ||
window_scipy = paddle.to_tensor(window_scipy, dtype=window_paddle.dtype) | ||
paddle.allclose( | ||
window_scipy, | ||
window_paddle, | ||
atol=0.0001, | ||
rtol=0.0001, | ||
) | ||
|
||
@parameterize([1, 512]) | ||
def test_window_and_exception(self, n_fft: int): | ||
window_scipy_gaussain = signal.windows.gaussian(n_fft, std=7) | ||
window_paddle_gaussian = paddle.audio.functional.get_window( | ||
('gaussian', 7), n_fft, False | ||
) | ||
window_scipy_gaussain = paddle.to_tensor( | ||
window_scipy_gaussain, dtype=window_paddle_gaussian.dtype | ||
) | ||
paddle.allclose( | ||
window_scipy_gaussain, | ||
window_paddle_gaussian, | ||
atol=0.0001, | ||
rtol=0.0001, | ||
) | ||
|
||
window_scipy_general_gaussain = signal.windows.general_gaussian( | ||
n_fft, 1, 7 | ||
) | ||
window_paddle_general_gaussian = paddle.audio.functional.get_window( | ||
('general_gaussian', 1, 7), n_fft, False | ||
) | ||
window_scipy_general_gaussain = paddle.to_tensor( | ||
window_scipy_general_gaussain, | ||
dtype=window_paddle_general_gaussian.dtype, | ||
) | ||
paddle.allclose( | ||
window_scipy_gaussain, | ||
window_paddle_gaussian, | ||
atol=0.0001, | ||
rtol=0.0001, | ||
) | ||
|
||
window_scipy_exp = signal.windows.exponential(n_fft) | ||
window_paddle_exp = paddle.audio.functional.get_window( | ||
('exponential', None, 1), n_fft, False | ||
) | ||
window_scipy_exp = paddle.to_tensor( | ||
window_scipy_exp, dtype=window_paddle_exp.dtype | ||
) | ||
paddle.allclose( | ||
window_scipy_exp, window_paddle_exp, atol=0.0001, rtol=0.0001 | ||
) | ||
|
||
window_scipy_kaiser = signal.windows.kaiser(n_fft, beta=14.0) | ||
window_paddle_kaiser = paddle.audio.functional.get_window( | ||
('kaiser', 14.0), n_fft | ||
) | ||
window_scipy_kaiser = paddle.to_tensor( | ||
window_scipy_kaiser, dtype=window_paddle_kaiser.dtype | ||
) | ||
paddle.allclose( | ||
window_scipy_kaiser, window_paddle_kaiser, atol=0.0001, rtol=0.0001 | ||
) | ||
|
||
|
||
if __name__ == '__main__': | ||
unittest.main() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
because of adding types of window functions, we should synchronously expand the introduction documents of
window
member inSpectrogram
,MelSpectrogram
,LogMelSpectrogram
, andMFCC
classes below in this file.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
好的好的