Spaces:
Runtime error
Runtime error
File size: 421 Bytes
0047e35 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 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 |