chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 12:35:17 +08:00
commit 344816a5d8
136 changed files with 25044 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
class BaseVocoder:
def to_device(self, device):
"""
:param device: torch.device or str
"""
raise NotImplementedError()
def get_device(self):
"""
:return: device: torch.device or str
"""
raise NotImplementedError()
def spec2wav(self, mel, **kwargs):
"""
:param mel: [T, 80]
:return: wav: [T']
"""
raise NotImplementedError()