Unverified Commit 256458fc authored by Vincent QB's avatar Vincent QB Committed by GitHub
Browse files

fix python 2 flake8 error with character encoding. (#340)

parent 33bcdcc7
...@@ -703,7 +703,7 @@ def equalizer_biquad(waveform, sample_rate, center_freq, gain, Q=0.707): ...@@ -703,7 +703,7 @@ def equalizer_biquad(waveform, sample_rate, center_freq, gain, Q=0.707):
Args: Args:
waveform (torch.Tensor): audio waveform of dimension of `(channel, time)` waveform (torch.Tensor): audio waveform of dimension of `(channel, time)`
sample_rate (int): sampling rate of the waveform, e.g. 44100 (Hz) sample_rate (int): sampling rate of the waveform, e.g. 44100 (Hz)
center_freq (float): filters central frequency center_freq (float): filter's central frequency
gain (float): desired gain at the boost (or attenuation) in dB gain (float): desired gain at the boost (or attenuation) in dB
q_factor (float): https://en.wikipedia.org/wiki/Q_factor q_factor (float): https://en.wikipedia.org/wiki/Q_factor
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment