Files
voice-cloning-collab/toolbox/utterance.py

6 lines
222 B
Python
Raw Normal View History

2022-08-18 09:43:33 +08:00
from collections import namedtuple
Utterance = namedtuple("Utterance", "name speaker_name wav spec embed partial_embeds synth")
Utterance.__eq__ = lambda x, y: x.name == y.name
Utterance.__hash__ = lambda x: hash(x.name)