@ -1,5 +1,3 @@
# File under the MIT license, see https://github.com/adefossez/julius/LICENSE for details.
# Author: adefossez, 2020
"""
Implementation of a FFT based 1D convolution in PaddlePaddle.
While FFT is used in some cases for small kernel sizes, it is not the default for long ones, e.g. 512.
import random
import sys
import unittest
@ -353,6 +353,3 @@ def test_ensure_max_of_audio():
after = spk.deepcopy().ensure_max_of_audio()
assert paddle.allclose(after.audio_data, spk.audio_data)
test_normalize()
@ -1,4 +1,3 @@
# File under the MIT license, see https://github.com/your_repo/your_license for details.
import math