-
Notifications
You must be signed in to change notification settings - Fork 730
Closed
Description
Hi, thanks for your work, it's really nice.
I use the code below to run an alignment:
with wave.open(args.audio, "rb") as audio:
data = audio.getfp().read()
decoder = Decoder(samprate=audio.getframerate())
decoder.set_align_text(args.text)
decoder.start_utt()
decoder.process_raw(data, full_utt=True)
decoder.end_utt()
decoder.set_alignment()
decoder.start_utt()
decoder.process_raw(data, full_utt=True)
decoder.end_utt()
for word in decoder.get_alignment():
print(list(word))the result is an AlignmentEntry object, how can I find documents of this object? What are its attributions? Can't find it in your documents.

thanks a lot.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels