ai_voice / toolbox /utterance.py
il-hoon's picture
Upload 79 files
9dbd91b
raw
history blame contribute delete
No virus
222 Bytes
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)