-
Notifications
You must be signed in to change notification settings - Fork 44
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
evaluation getting stuck when using --im_eval with num_envs>1 #17
Comments
Looks like a multi-processing error; those can be relatively finicky. It can either be the at the data loader part or the robot creation part. Try setting num_jobs = 1 in the motion_lib_base line? or here in humanoid |
Yes. I did the debugging and it's exactly as you say. It is getting stuck at data loading part. Any specific reason for this issue. Any pointers which I can refer to solve? |
Try setting num_jobs = 1 in the motion_lib_base line? or here in humanoid? Basically, disable multi-processing. How many cores machine do you use? |
It only works after setting I tried this on 2 systems:
Edit: Another thing I notice is that humanoid uses python native Could this issue be caused by combining these two? |
@kinalmehta Not very likely. In my experience, By replacing |
Hi @noahcao |
For the data loading part, try use at this line, bascially, uncomment:
which should fix the issue. Though using file_system has caused me problems before as well... |
Does |
yes!! This solved the issue. Thanks a lot. :D |
When evaluating on amass with the following command, the code gets stuck at the tqdm progress bar:
However, it works completely fine when running with
--num_envs 1
.Library versions in use
The text was updated successfully, but these errors were encountered: