Add files via upload (#379)

This commit is contained in:
Ναρουσέ·μ·γιουμεμί·Χινακάννα
2023-05-29 23:52:23 +08:00
committed by GitHub
parent 69071119a9
commit 24f2ad44ea
7 changed files with 404 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
class F0Predictor(object):
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):
'''
input: wav:[signal_length]
p_len:int
output: f0:[signal_length//hop_length],uv:[signal_length//hop_length]
'''
pass