-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
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
Error reading from absolute Windows path #52
Comments
i see, thanks, I didn't care about windows, but it's better to support for usability. I'll think how to do. for workaround,
|
Thanks, that works, opening binary archives in binary read mode. |
kamo-naoyuki
added a commit
to kamo-naoyuki/kaldiio
that referenced
this issue
Dec 10, 2020
kamo-naoyuki
added a commit
to kamo-naoyuki/kaldiio
that referenced
this issue
Dec 10, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
thank you for your great tool! Unfortunately I have issues reading kaldi matrices / archives from absolute windows pathes, e.g.
The following error occurs:
That happens because the absolute path is splitted at ":", to separate the path and offset in kaldi archives. Of course, in this example, "\temp\my_mat" is no valid integer offset.
Changing path using
os.chdir
and using the filename works, but of course this is a bad solution.Is there any workaround for this (or maybe I use it wrong)?
The text was updated successfully, but these errors were encountered: