so-vits-svc/vencoder/DPHubert.py

30 lines
1.0 KiB
Python
Raw Normal View History

2023-06-01 18:44:18 +00:00
import torch
2023-06-26 06:57:53 +00:00
2023-06-01 18:44:18 +00:00
from vencoder.dphubert.model import wav2vec2_model
2023-06-26 06:57:53 +00:00
from vencoder.encoder import SpeechEncoder
2023-06-01 18:44:18 +00:00
2023-06-21 18:04:03 +00:00
2023-06-01 18:44:18 +00:00
class DPHubert(SpeechEncoder):
2023-06-21 18:04:03 +00:00
def __init__(self, vec_path="pretrain/DPHuBERT-sp0.75.pth", device=None):
super().__init__()
2023-06-01 18:44:18 +00:00
print("load model(s) from {}".format(vec_path))
if device is None:
self.dev = torch.device("cuda" if torch.cuda.is_available() else "cpu")
else:
self.dev = torch.device(device)
ckpt = torch.load(vec_path)
self.hidden_dim = 768
self.model = wav2vec2_model(**ckpt["config"]).to(self.dev)
self.model.load_state_dict(ckpt["state_dict"], strict=False)
def encoder(self, wav):
feats = wav
if feats.dim() == 2: # double channels
2023-06-21 18:04:03 +00:00
feats = feats.mean(-1)
2023-06-01 18:44:18 +00:00
assert feats.dim() == 1, feats.dim()
2023-06-21 18:04:03 +00:00
feats = feats[None, :]
2023-06-01 18:44:18 +00:00
with torch.no_grad():
with torch.inference_mode():
2023-06-21 18:04:03 +00:00
units = self.model(feats)[0]
return units.transpose(1,2)