6 lines
100 B
Python
6 lines
100 B
Python
import torch
|
|
|
|
|
|
def get_bert_feature(norm_text, word2ph):
|
|
return torch.zeros(1024, sum(word2ph))
|