-
Notifications
You must be signed in to change notification settings - Fork 799
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
Environment crash during training #87
Comments
Hi @gyang1011, when creating GymEnv, set force_reset to True. |
Hi! After I made the change, the new error appears:
|
@gyang1011 can you update to latest rllab? |
jonashen
pushed a commit
to jonashen/rllab
that referenced
this issue
May 29, 2018
When the convenience imports were introduced, they accidentally created a circular dependency was between packages. To avoid future crashes, an analysis of the code imports was performed to find all the circular dependencies in rllab. We found no no circular dependencies in the TensorFlow tree, or between packages in the TensorFlow and Theano tree. There were circulater dependencies in the Theano tree. Circular dependencies in the Theano tree are the following: - The package misc with algos, baselines, core, and viskit. - The package algos with sampler Since misc shares so many circular dependencies, conflicting imports were removed from its file __init__.py. Regarding algos and sampler, the issue is generated by imports in sampler in its file __init__.py, so they were removed as well. Due to these removals, some imports had to be restored to its previous long package path.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello,
I am trying to use CEM algorithm to train Lunar Lander - V2. Here is my script:
And here is the error I have received:
The text was updated successfully, but these errors were encountered: