Spaces:
Runtime error
Runtime error
File size: 222 Bytes
24829a1 |
1 2 3 4 5 6 |
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)
|