-
Notifications
You must be signed in to change notification settings - Fork 297
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
lhotse download librispeech command is error #20
Comments
What's the output of the following command?
If the first line of the output is |
Thanks for your reply, you are right,
Yes, I manually modified it. |
@pzelasko |
I occurs another error in the command
|
Likely a system problem, like full disk, OOM killer, something like that. |
Yes, rerun
will continue to download |
Thanks for your reply, I follow your suggestion, but it is still fail. the the below is as follows:
|
@pzelasko do you have any ideas? |
OK I will look into it. I am not sure what's the reason, maybe there is a timeout somewhere. Will check. I'll try to take care of the shebang issue first though. |
Was there some exception stack trace? It looks to me like it didn't even start downloading train-clean-360, otherwise there would have been a partial download message like this: @shanguanma could you try wrapping this whole loop: https://github.com/lhotse-speech/lhotse/blob/master/lhotse/recipes/librispeech.py#L55 with try/except like the following: try:
for ...
except Exception as e:
print(type(e))
print(e)
print(locals())
raise and see what comes out? I am also not 100% sure that it is a Lhotse error, your job might be getting killed etc., but we can try to debug it. |
@pzelasko ,I follow your suggestion, the errors is as follows:
|
You have a partially downloaded archive. If you remove train-clean-360.tar.gz and re-run it should work. I will change the code to handle this correctly. |
@pzelasko ,I follow your suggestion(
|
Perhaps it would be better to use another tool for downloading, that allows continuing? E.g. wget? |
I think it’s a server side timeout… for now please use wget for these two files like Dan suggested, I might not have enough time to improve the downloading in Lhotse right away, but I definitely want it to “just work” and will work on it. |
I install k2_fsa and lhotse via the below commands:
When I run ./prepared.sh --stage 0 --stop_stage 0, the error is as follows:
I found the https://github.com/lhotse-speech/lhotse/blob/2a1410bfd08bc5117d67d09f470fde14b8231521/lhotse/bin/lhotse#L1
The python interpreter is ok. I don't know where is it wrong?
The text was updated successfully, but these errors were encountered: