Format code (#384)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
github-actions[bot]
2023-05-30 15:22:53 +08:00
committed by GitHub
parent 5284e38c3d
commit 89afd017ba
7 changed files with 181 additions and 133 deletions

View File

@@ -1,16 +1,16 @@
class F0Predictor(object):
def compute_f0(self,wav,p_len):
'''
def compute_f0(self, wav, p_len):
"""
input: wav:[signal_length]
p_len:int
output: f0:[signal_length//hop_length]
'''
"""
pass
def compute_f0_uv(self,wav,p_len):
'''
def compute_f0_uv(self, wav, p_len):
"""
input: wav:[signal_length]
p_len:int
output: f0:[signal_length//hop_length],uv:[signal_length//hop_length]
'''
pass
"""
pass