We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
read_ali_ark
I am trying to read the alignment file using read_ali_ark method. My code looks like this:
src_file = 's5/exp/tri2_ali/ali.1.gz' abc = kaldi_io.read_ali_ark(src_file)
But this crashes on assert. It goes like this:
open_or_fd
Simply removing this assert fixes the issue and makes it possible to read gzipped ark files.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am trying to read the alignment file using
read_ali_ark
method. My code looks like this:But this crashes on assert. It goes like this:
read_ali_ark
will callopen_or_fd
method.Simply removing this assert fixes the issue and makes it possible to read gzipped ark files.
The text was updated successfully, but these errors were encountered: